From 53d0322bdbc92ec05e1f8c0b07aa926ce9cb7154 Mon Sep 17 00:00:00 2001 From: Jawin-SF4519 <165898284+Jawin-SF4519@users.noreply.github.com> Date: Fri, 29 Aug 2025 18:21:58 +0530 Subject: [PATCH 1/7] 978718: Maximum Receiver Size --- KB-Samples/LargeDiagram/Components/App.razor | 26 + .../Components/Layout/CultureSwitcher.razor | 94 + .../Components/Layout/MainLayout.razor | 16 + .../Components/Layout/MainLayout.razor.css | 98 + .../Components/Layout/NavMenu.razor | 6 + .../Components/Layout/NavMenu.razor.css | 105 + .../Components/Layout/SyncfusionLocalizer.cs | 27 + .../Components/Pages/DiagramFeatures.razor | 358 + .../LargeDiagram/Components/Pages/Error.razor | 36 + .../LargeDiagram/Components/Pages/FileUtil.cs | 29 + .../LargeDiagram/Components/Pages/Index.razor | 77 + .../LargeDiagram/Components/Routes.razor | 6 + .../LargeDiagram/Components/_Imports.razor | 11 + .../Controllers/CultureController.cs | 23 + KB-Samples/LargeDiagram/LargeDiagram.csproj | 34 + .../LargeDiagram/LargeDiagram.csproj.user | 6 + KB-Samples/LargeDiagram/Program.cs | 49 + .../Properties/launchSettings.json | 38 + .../Resources/SfResources.Designer.cs | 14706 ++++++++++++++++ .../Resources/SfResources.ar.resx | 6798 +++++++ .../Resources/SfResources.de.resx | 6795 +++++++ .../Resources/SfResources.en-US.resx | 6794 +++++++ .../Resources/SfResources.fr.resx | 6794 +++++++ .../LargeDiagram/Resources/SfResources.resx | 5001 ++++++ .../Resources/SfResources.zh.resx | 6792 +++++++ .../LargeDiagram/appsettings.Development.json | 8 + KB-Samples/LargeDiagram/appsettings.json | 9 + .../LargeDiagram/wwwroot/FlowShape.json | 1 + KB-Samples/LargeDiagram/wwwroot/Interop.js | 27 + .../LargeDiagram/wwwroot/PathShape.json | 1 + KB-Samples/LargeDiagram/wwwroot/app.css | 60 + .../wwwroot/bootstrap/bootstrap.min.css | 7 + .../wwwroot/bootstrap/bootstrap.min.css.map | 1 + KB-Samples/LargeDiagram/wwwroot/favicon.png | Bin 0 -> 1148 bytes .../wwwroot/fonts/syncfusion/icons.eot | Bin 0 -> 45036 bytes .../wwwroot/fonts/syncfusion/icons.svg | 228 + .../wwwroot/fonts/syncfusion/icons.ttf | Bin 0 -> 44764 bytes .../wwwroot/fonts/syncfusion/icons.woff | Bin 0 -> 44764 bytes .../wwwroot/images/ToggleButton.png | Bin 0 -> 151 bytes .../wwwroot/open-iconic/FONT-LICENSE | 86 + .../wwwroot/open-iconic/ICON-LICENSE | 21 + .../wwwroot/open-iconic/README.md | 114 + .../font/css/open-iconic-bootstrap.min.css | 1 + .../open-iconic/font/fonts/open-iconic.eot | Bin 0 -> 28196 bytes .../open-iconic/font/fonts/open-iconic.otf | Bin 0 -> 20996 bytes .../open-iconic/font/fonts/open-iconic.svg | 543 + .../open-iconic/font/fonts/open-iconic.ttf | Bin 0 -> 28028 bytes .../open-iconic/font/fonts/open-iconic.woff | Bin 0 -> 14984 bytes .../wwwroot/syncfusion-blazor-icons.css | 423 + 49 files changed, 56249 insertions(+) create mode 100644 KB-Samples/LargeDiagram/Components/App.razor create mode 100644 KB-Samples/LargeDiagram/Components/Layout/CultureSwitcher.razor create mode 100644 KB-Samples/LargeDiagram/Components/Layout/MainLayout.razor create mode 100644 KB-Samples/LargeDiagram/Components/Layout/MainLayout.razor.css create mode 100644 KB-Samples/LargeDiagram/Components/Layout/NavMenu.razor create mode 100644 KB-Samples/LargeDiagram/Components/Layout/NavMenu.razor.css create mode 100644 KB-Samples/LargeDiagram/Components/Layout/SyncfusionLocalizer.cs create mode 100644 KB-Samples/LargeDiagram/Components/Pages/DiagramFeatures.razor create mode 100644 KB-Samples/LargeDiagram/Components/Pages/Error.razor create mode 100644 KB-Samples/LargeDiagram/Components/Pages/FileUtil.cs create mode 100644 KB-Samples/LargeDiagram/Components/Pages/Index.razor create mode 100644 KB-Samples/LargeDiagram/Components/Routes.razor create mode 100644 KB-Samples/LargeDiagram/Components/_Imports.razor create mode 100644 KB-Samples/LargeDiagram/Controllers/CultureController.cs create mode 100644 KB-Samples/LargeDiagram/LargeDiagram.csproj create mode 100644 KB-Samples/LargeDiagram/LargeDiagram.csproj.user create mode 100644 KB-Samples/LargeDiagram/Program.cs create mode 100644 KB-Samples/LargeDiagram/Properties/launchSettings.json create mode 100644 KB-Samples/LargeDiagram/Resources/SfResources.Designer.cs create mode 100644 KB-Samples/LargeDiagram/Resources/SfResources.ar.resx create mode 100644 KB-Samples/LargeDiagram/Resources/SfResources.de.resx create mode 100644 KB-Samples/LargeDiagram/Resources/SfResources.en-US.resx create mode 100644 KB-Samples/LargeDiagram/Resources/SfResources.fr.resx create mode 100644 KB-Samples/LargeDiagram/Resources/SfResources.resx create mode 100644 KB-Samples/LargeDiagram/Resources/SfResources.zh.resx create mode 100644 KB-Samples/LargeDiagram/appsettings.Development.json create mode 100644 KB-Samples/LargeDiagram/appsettings.json create mode 100644 KB-Samples/LargeDiagram/wwwroot/FlowShape.json create mode 100644 KB-Samples/LargeDiagram/wwwroot/Interop.js create mode 100644 KB-Samples/LargeDiagram/wwwroot/PathShape.json create mode 100644 KB-Samples/LargeDiagram/wwwroot/app.css create mode 100644 KB-Samples/LargeDiagram/wwwroot/bootstrap/bootstrap.min.css create mode 100644 KB-Samples/LargeDiagram/wwwroot/bootstrap/bootstrap.min.css.map create mode 100644 KB-Samples/LargeDiagram/wwwroot/favicon.png create mode 100644 KB-Samples/LargeDiagram/wwwroot/fonts/syncfusion/icons.eot create mode 100644 KB-Samples/LargeDiagram/wwwroot/fonts/syncfusion/icons.svg create mode 100644 KB-Samples/LargeDiagram/wwwroot/fonts/syncfusion/icons.ttf create mode 100644 KB-Samples/LargeDiagram/wwwroot/fonts/syncfusion/icons.woff create mode 100644 KB-Samples/LargeDiagram/wwwroot/images/ToggleButton.png create mode 100644 KB-Samples/LargeDiagram/wwwroot/open-iconic/FONT-LICENSE create mode 100644 KB-Samples/LargeDiagram/wwwroot/open-iconic/ICON-LICENSE create mode 100644 KB-Samples/LargeDiagram/wwwroot/open-iconic/README.md create mode 100644 KB-Samples/LargeDiagram/wwwroot/open-iconic/font/css/open-iconic-bootstrap.min.css create mode 100644 KB-Samples/LargeDiagram/wwwroot/open-iconic/font/fonts/open-iconic.eot create mode 100644 KB-Samples/LargeDiagram/wwwroot/open-iconic/font/fonts/open-iconic.otf create mode 100644 KB-Samples/LargeDiagram/wwwroot/open-iconic/font/fonts/open-iconic.svg create mode 100644 KB-Samples/LargeDiagram/wwwroot/open-iconic/font/fonts/open-iconic.ttf create mode 100644 KB-Samples/LargeDiagram/wwwroot/open-iconic/font/fonts/open-iconic.woff create mode 100644 KB-Samples/LargeDiagram/wwwroot/syncfusion-blazor-icons.css diff --git a/KB-Samples/LargeDiagram/Components/App.razor b/KB-Samples/LargeDiagram/Components/App.razor new file mode 100644 index 00000000..a0e740c2 --- /dev/null +++ b/KB-Samples/LargeDiagram/Components/App.razor @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/KB-Samples/LargeDiagram/Components/Layout/CultureSwitcher.razor b/KB-Samples/LargeDiagram/Components/Layout/CultureSwitcher.razor new file mode 100644 index 00000000..89e64d75 --- /dev/null +++ b/KB-Samples/LargeDiagram/Components/Layout/CultureSwitcher.razor @@ -0,0 +1,94 @@ +@inject NavigationManager NavigationManager +@inject HttpClient Http +@using Syncfusion.Blazor.DropDowns +@rendermode InteractiveServer + +
+ + + + +
+ + + +@code { + private int cultureIndex { get; set; } + + protected override async Task OnInitializedAsync() + { + await base.OnInitializedAsync(); + switch (System.Globalization.CultureInfo.CurrentCulture.Name) + { + case "en-US": + this.cultureIndex = 0; + break; + case "de": + this.cultureIndex = 1; + break; + case "fr": + this.cultureIndex = 2; + break; + case "ar": + this.cultureIndex = 3; + break; + case "zh": + this.cultureIndex = 4; + break; + } + + } + + private void OnSelected(Syncfusion.Blazor.DropDowns.ChangeEventArgs e) + { + var culture = (string)e.Value; + var uri = new Uri(NavigationManager.Uri) + .GetComponents(UriComponents.PathAndQuery, UriFormat.Unescaped); + var query = $"?culture={Uri.EscapeDataString(culture)}&" + + $"redirectUri={Uri.EscapeDataString(uri)}"; + switch (culture) + { + case "en-US": + this.cultureIndex = 0; + break; + case "de": + this.cultureIndex = 1; + break; + case "fr": + this.cultureIndex = 2; + break; + case "ar": + this.cultureIndex = 3; + break; + case "zh": + this.cultureIndex = 4; + break; + } + NavigationManager.NavigateTo("/Culture/SetCulture" + query, forceLoad: true); + } + public class Cultures + { + public string Text { get; set; } = string.Empty; + + public string Code { get; set; } = string.Empty; + } + + List CultureList = new List + { + new Cultures() { Text = "English (en-US)", Code = "en-US" }, + new Cultures() { Text = "German (de)", Code = "de" }, + new Cultures() { Text = "French (fr)", Code = "fr" }, + new Cultures() { Text = "Arabic (ar)", Code = "ar" }, + new Cultures() { Text = "Chinese (zh)", Code = "zh" }, + }; +} \ No newline at end of file diff --git a/KB-Samples/LargeDiagram/Components/Layout/MainLayout.razor b/KB-Samples/LargeDiagram/Components/Layout/MainLayout.razor new file mode 100644 index 00000000..8d633dd8 --- /dev/null +++ b/KB-Samples/LargeDiagram/Components/Layout/MainLayout.razor @@ -0,0 +1,16 @@ +@inherits LayoutComponentBase + +
+
+ @*
*@ + @* Blazor Components *@ + @* User Guide *@ + @* View Demos
|
*@ + @* *@ + @*
*@ + +
+ @Body +
+
+
diff --git a/KB-Samples/LargeDiagram/Components/Layout/MainLayout.razor.css b/KB-Samples/LargeDiagram/Components/Layout/MainLayout.razor.css new file mode 100644 index 00000000..38d1f259 --- /dev/null +++ b/KB-Samples/LargeDiagram/Components/Layout/MainLayout.razor.css @@ -0,0 +1,98 @@ +.page { + position: relative; + display: flex; + flex-direction: column; +} + +main { + flex: 1; +} + +.sidebar { + background-image: linear-gradient(180deg, rgb(5, 39, 103) 0%, #3a0647 70%); +} + +.top-row { + background-color: #f7f7f7; + border-bottom: 1px solid #d6d5d5; + justify-content: flex-end; + height: 3.5rem; + display: flex; + align-items: center; +} + + .top-row ::deep a, .top-row ::deep .btn-link { + white-space: nowrap; + margin-left: 1.5rem; + text-decoration: none; + } + + .top-row ::deep a:hover, .top-row ::deep .btn-link:hover { + text-decoration: underline; + } + + .top-row ::deep a:first-child { + overflow: hidden; + text-overflow: ellipsis; + } + +@media (max-width: 640.98px) { + .top-row { + justify-content: space-between; + } + + .top-row ::deep a, .top-row ::deep .btn-link { + margin-left: 0; + } +} + +@media (min-width: 641px) { + .page { + flex-direction: row; + } + + .sidebar { + width: 250px; + height: 100vh; + position: sticky; + top: 0; + } + + .top-row { + position: sticky; + top: 0; + z-index: 1; + } + + .top-row.auth ::deep a:first-child { + flex: 1; + text-align: right; + width: 0; + } + + .top-row, article { + padding-left: 2rem !important; + padding-right: 1.5rem !important; + } +} + +#blazor-error-ui { + color-scheme: light only; + background: lightyellow; + bottom: 0; + box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2); + box-sizing: border-box; + display: none; + left: 0; + padding: 0.6rem 1.25rem 0.7rem 1.25rem; + position: fixed; + width: 100%; + z-index: 1000; +} + + #blazor-error-ui .dismiss { + cursor: pointer; + position: absolute; + right: 0.75rem; + top: 0.5rem; + } diff --git a/KB-Samples/LargeDiagram/Components/Layout/NavMenu.razor b/KB-Samples/LargeDiagram/Components/Layout/NavMenu.razor new file mode 100644 index 00000000..35544200 --- /dev/null +++ b/KB-Samples/LargeDiagram/Components/Layout/NavMenu.razor @@ -0,0 +1,6 @@ + + diff --git a/KB-Samples/LargeDiagram/Components/Layout/NavMenu.razor.css b/KB-Samples/LargeDiagram/Components/Layout/NavMenu.razor.css new file mode 100644 index 00000000..a2aeace9 --- /dev/null +++ b/KB-Samples/LargeDiagram/Components/Layout/NavMenu.razor.css @@ -0,0 +1,105 @@ +.navbar-toggler { + appearance: none; + cursor: pointer; + width: 3.5rem; + height: 2.5rem; + color: white; + position: absolute; + top: 0.5rem; + right: 1rem; + border: 1px solid rgba(255, 255, 255, 0.1); + background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.55%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") no-repeat center/1.75rem rgba(255, 255, 255, 0.1); +} + +.navbar-toggler:checked { + background-color: rgba(255, 255, 255, 0.5); +} + +.top-row { + min-height: 3.5rem; + background-color: rgba(0,0,0,0.4); +} + +.navbar-brand { + font-size: 1.1rem; +} + +.bi { + display: inline-block; + position: relative; + width: 1.25rem; + height: 1.25rem; + margin-right: 0.75rem; + top: -1px; + background-size: cover; +} + +.bi-house-door-fill-nav-menu { + background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-house-door-fill' viewBox='0 0 16 16'%3E%3Cpath d='M6.5 14.5v-3.505c0-.245.25-.495.5-.495h2c.25 0 .5.25.5.5v3.5a.5.5 0 0 0 .5.5h4a.5.5 0 0 0 .5-.5v-7a.5.5 0 0 0-.146-.354L13 5.793V2.5a.5.5 0 0 0-.5-.5h-1a.5.5 0 0 0-.5.5v1.293L8.354 1.146a.5.5 0 0 0-.708 0l-6 6A.5.5 0 0 0 1.5 7.5v7a.5.5 0 0 0 .5.5h4a.5.5 0 0 0 .5-.5Z'/%3E%3C/svg%3E"); +} + +.bi-plus-square-fill-nav-menu { + background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-plus-square-fill' viewBox='0 0 16 16'%3E%3Cpath d='M2 0a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V2a2 2 0 0 0-2-2H2zm6.5 4.5v3h3a.5.5 0 0 1 0 1h-3v3a.5.5 0 0 1-1 0v-3h-3a.5.5 0 0 1 0-1h3v-3a.5.5 0 0 1 1 0z'/%3E%3C/svg%3E"); +} + +.bi-list-nested-nav-menu { + background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-list-nested' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M4.5 11.5A.5.5 0 0 1 5 11h10a.5.5 0 0 1 0 1H5a.5.5 0 0 1-.5-.5zm-2-4A.5.5 0 0 1 3 7h10a.5.5 0 0 1 0 1H3a.5.5 0 0 1-.5-.5zm-2-4A.5.5 0 0 1 1 3h10a.5.5 0 0 1 0 1H1a.5.5 0 0 1-.5-.5z'/%3E%3C/svg%3E"); +} + +.nav-item { + font-size: 0.9rem; + padding-bottom: 0.5rem; +} + + .nav-item:first-of-type { + padding-top: 1rem; + } + + .nav-item:last-of-type { + padding-bottom: 1rem; + } + + .nav-item ::deep .nav-link { + color: #d7d7d7; + background: none; + border: none; + border-radius: 4px; + height: 3rem; + display: flex; + align-items: center; + line-height: 3rem; + width: 100%; + } + +.nav-item ::deep a.active { + background-color: rgba(255,255,255,0.37); + color: white; +} + +.nav-item ::deep .nav-link:hover { + background-color: rgba(255,255,255,0.1); + color: white; +} + +.nav-scrollable { + display: none; +} + +.navbar-toggler:checked ~ .nav-scrollable { + display: block; +} + +@media (min-width: 641px) { + .navbar-toggler { + display: none; + } + + .nav-scrollable { + /* Never collapse the sidebar for wide screens */ + display: block; + + /* Allow sidebar to scroll for tall menus */ + height: calc(100vh - 3.5rem); + overflow-y: auto; + } +} diff --git a/KB-Samples/LargeDiagram/Components/Layout/SyncfusionLocalizer.cs b/KB-Samples/LargeDiagram/Components/Layout/SyncfusionLocalizer.cs new file mode 100644 index 00000000..7db0c021 --- /dev/null +++ b/KB-Samples/LargeDiagram/Components/Layout/SyncfusionLocalizer.cs @@ -0,0 +1,27 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Threading.Tasks; +using Syncfusion.Blazor; +namespace LargeDiagram.Components +{ + public class SyncfusionLocalizer : ISyncfusionStringLocalizer + { + // To get the locale key from mapped resources file + + public string? GetText(string key) + { + return this.ResourceManager.GetString(key); + } + + // To access the resource file and get the exact value for locale key + + public System.Resources.ResourceManager ResourceManager + { + get + { + return LargeDiagram.Resources.SfResources.ResourceManager; + } + } + } +} diff --git a/KB-Samples/LargeDiagram/Components/Pages/DiagramFeatures.razor b/KB-Samples/LargeDiagram/Components/Pages/DiagramFeatures.razor new file mode 100644 index 00000000..ce01a277 --- /dev/null +++ b/KB-Samples/LargeDiagram/Components/Pages/DiagramFeatures.razor @@ -0,0 +1,358 @@ +@page "/" + +@using Syncfusion.Blazor.Diagram +@using Syncfusion.Blazor.Diagram.SymbolPalette +@using Syncfusion.Blazor.Buttons +@using Microsoft.JSInterop +@using Syncfusion.Blazor.Navigations +@using Syncfusion.Blazor.Inputs +@rendermode InteractiveServer +@using LargeDiagram.Components.Pages +@inject IJSRuntime jsRuntime + + +
+
+ +
+ + +
+ + +
+ + + +
+
+ + +
+ Save + Load + + + + + +
+
+ + +@code { + //Reference to uploder + SfUploader uploadFiles; + SfDiagramComponent diagram; + private string fileName; + // Method to customize the tool + public InteractionControllerBase GetCustomTool(DiagramElementAction action, string id) + { + InteractionControllerBase tool = null; + if (id == "Draw") + { + tool = new DrawTool(diagram); + } + else + { + tool = new AddDeleteTool(diagram); + } + return tool; + } + // Custom tool to delete the node. + public class AddDeleteTool : InteractionControllerBase + { + SfDiagramComponent sfDiagram; + Node deleteObject = null; + public AddDeleteTool(SfDiagramComponent Diagram) : base(Diagram) + { + sfDiagram = Diagram; + } + public override void OnMouseDown(DiagramMouseEventArgs args) + { + if (sfDiagram.SelectionSettings.Nodes.Count > 0 && ((sfDiagram.SelectionSettings.Nodes[0]) is Node)) + { + deleteObject = (sfDiagram.SelectionSettings.Nodes[0]) as Node; + } + base.OnMouseDown(args); + } + public override void OnMouseUp(DiagramMouseEventArgs args) + { + if (deleteObject != null) + { + sfDiagram.StartGroupAction(); + sfDiagram.BeginUpdate(); + sfDiagram.Nodes.Remove(deleteObject); + _ = sfDiagram.EndUpdateAsync(); + sfDiagram.EndGroupAction(); + } + base.OnMouseUp(args); + this.InAction = true; + } + } + public class DrawTool : ConnectorDrawingController + { + SfDiagramComponent sfDiagram; + Connector newConnector = null; + public DrawTool(SfDiagramComponent Diagram) : base(Diagram, DiagramElementAction.ConnectorSourceEnd) + { + sfDiagram = Diagram; + newConnector = new Connector() + { + ID = "OrthogonalConnector", + SourceID = sfDiagram.SelectionSettings.Nodes[0].ID, + Type = ConnectorSegmentType.Orthogonal, + }; + Diagram.InteractionController = DiagramInteractions.DrawOnce; + Diagram.DrawingObject = newConnector; + } + public override void OnMouseDown(DiagramMouseEventArgs args) + { + base.OnMouseDown(args); + } + public override void OnMouseUp(DiagramMouseEventArgs args) + { + base.OnMouseUp(args); + } + } + DiagramObjectCollection nodes = new DiagramObjectCollection(); + DiagramObjectCollection connectors = new DiagramObjectCollection(); + private string ExtensionType = ".json"; + //Method to save the diagram + public async Task SaveDiagram() + { + fileName = await jsRuntime.InvokeAsync("getDiagramFileName", ""); + await DownloadDiagram(fileName); + } + + //Method to download the diagram + public async Task DownloadDiagram(string fileName) + { + string data = diagram.SaveDiagram(); + await FileUtil.SaveAs(jsRuntime, data, fileName); + } + + //Method to load the diagram + public async Task LoadDiagram() + { + diagram.BeginUpdate(); + ExtensionType = ".json"; + await FileUtil.Click(jsRuntime); + await diagram.EndUpdateAsync(); + } + string json; + public async Task OnUploadFileSelected(UploadingEventArgs args) + { + if (args.FileData.Type == "json") + { + json = await FileUtil.LoadFile(jsRuntime, args.FileData); + json = json.Replace(System.Environment.NewLine, string.Empty); + await diagram.LoadDiagramAsync(json.ToString()); + await uploadFiles.ClearAllAsync(); + } + } + protected override async Task OnAfterRenderAsync(bool firstRender) + { + SymbolPalette.Targets = new DiagramObjectCollection() { }; + SymbolPalette.Targets.Add(diagram); + } + + private async void Oncreate() + { + json = File.ReadAllText("wwwroot/PathShape.json"); + await diagram.LoadDiagramAsync(json); + } + SymbolMargin SymbolMargin = new SymbolMargin + { + Left = 15, + Right = 15, + Top = 15, + Bottom = 15 + }; + SfSymbolPaletteComponent SymbolPalette; + //Define palettes collection. + DiagramObjectCollection Palettes = new DiagramObjectCollection(); + // Defines palette's flow-shape collection. + DiagramObjectCollection PaletteNodes = new DiagramObjectCollection(); + DiagramObjectCollection PalettePathNodes = new DiagramObjectCollection(); + + protected override void OnInitialized() + { + InitPaletteModel(); + } + + private void InitPaletteModel() + { + CreatePalettPathNode("Decision"); + CreatePalettPathNode("Process"); + CreatePalettPathNode("Terminator"); + CreatePalettPathNode("Event"); + CreatePalettPathNode("Delay"); + CreatePalettPathNode("Manual-Operation"); + CreatePalettPathNode("Manual-Input"); + CreatePalettPathNode("Data"); + CreatePalettPathNode("Card"); + + // Add basic shapes that are visible in the left palette + CreatePaletteNode(NodeBasicShapes.Rectangle, "Rectangle"); + CreatePaletteNode(NodeBasicShapes.Ellipse, "Ellipse"); + CreatePaletteNode(NodeBasicShapes.Diamond, "Diamond"); + CreatePaletteNode(NodeBasicShapes.Rectangle, "Rectangle"); + CreatePaletteNode(NodeBasicShapes.Ellipse, "Ellipse"); + CreatePaletteNode(NodeBasicShapes.Star, "Star"); + Palettes = new DiagramObjectCollection() + { + new Palette(){Symbols = PaletteNodes,Title = "Basic Shapes", ID = "Basic Shapes" }, + new Palette(){Symbols = PalettePathNodes,Title = "Path Shapes", ID = "Path Shapes" }, + }; + } + + private void CreatePaletteNode(NodeBasicShapes basicShape, string id) + { + Node node = new Node() + { + ID = id, + Shape = new BasicShape() { Type = NodeShapes.Basic, Shape = basicShape }, + Style = new ShapeStyle() { Fill = "#6495ED", StrokeColor = "#6495ED" }, + }; + PaletteNodes.Add(node); + } + private void CreatePalettPathNode(string id, bool isShadow = false) + { + Node diagramNode = new Node() + { + ID = id, + Style = new ShapeStyle() + { + StrokeColor = "#2847e5", + StrokeWidth = 1, + Gradient = new LinearGradientBrush() + { + X1 = 0, + Y1 = 0, + X2 = 50, + Y2 = 50, + GradientStops = new DiagramObjectCollection() + { + new GradientStop(){ Color = "Black", Offset = 0}, + new GradientStop(){ Color = "#4b1a4d", Offset = 100} + }, + } + }, + Annotations = new DiagramObjectCollection() + { + new ShapeAnnotation() + { + Style = new TextStyle() + { + Color = "White", + FontSize = 16, + Bold = false, + TextOverflow = TextOverflow.Wrap, + TextWrapping = Syncfusion.Blazor.Diagram.TextWrap.WrapWithOverflow + } + } + } + }; + + if (id == "Decision") + { + diagramNode.Shape = new PathShape() { Type = Syncfusion.Blazor.Diagram.NodeShapes.Path, Data = "M 5 45 L 45, 5 Q 50 0 55 5 L 95 45 Q 100 50 95 55 L 55 95 Q 50 100 45 95 L 5 55 Q 0 50 5 45 Z" }; + diagramNode.Width = 100; + diagramNode.Height = 100; + diagramNode.Style.Fill = "#114e0f"; + diagramNode.Style.Gradient!.GradientStops[0].Color = "Black"; + diagramNode.Style.Gradient.GradientStops[1].Color = "#114e0f"; + } + else if (id == "Process") + { + diagramNode.Shape = new PathShape() { Type = Syncfusion.Blazor.Diagram.NodeShapes.Path, Data = "M 5 0 L135 0 Q 140 0 140 5 L 140 65 Q 140 70 135 70 L 5 70 Q 0 70 0 65 L 0 5 Q 0 0 5 0 Z" }; + diagramNode.Width = 140; + diagramNode.Height = 70; + diagramNode.Style.Fill = "#173987"; + diagramNode.Style.Gradient!.GradientStops[0].Color = "Black"; + diagramNode.Style.Gradient.GradientStops[1].Color = "#173987"; + } + else if (id == "Terminator") + { + diagramNode.Shape = new PathShape() { Type = Syncfusion.Blazor.Diagram.NodeShapes.Path, Data = "M 20 0 L 120 0 Q 140 0 140 20 Q 140 40 120 40 L 20 40 Q 0 40 0 20 Q 0 0 20 0 Z" }; + diagramNode.Width = 140; + diagramNode.Height = 40; + diagramNode.Style.Fill = "#405176"; + diagramNode.Style.Gradient!.GradientStops[0].Color = "Black"; + diagramNode.Style.Gradient.GradientStops[1].Color = "#405176"; + } + else if (id == "Event") + { + diagramNode.Shape = new PathShape() { Type = Syncfusion.Blazor.Diagram.NodeShapes.Path, Data = "M 20 0 L 120 0 Q 140 0 140 20 L 140 50 Q 140 70 120 70 L 20 70 Q 0 70 0 50 L 0 20 Q 0 0 20 0 Z" }; + diagramNode.Width = 140; + diagramNode.Height = 70; + diagramNode.Style.Fill = "#173987"; + diagramNode.Style.Gradient!.GradientStops[0].Color = "Black"; + diagramNode.Style.Gradient.GradientStops[1].Color = "#173987"; + } + else if (id == "Delay") + { + diagramNode.Shape = new PathShape() { Type = Syncfusion.Blazor.Diagram.NodeShapes.Path, Data = "M 0 0 L 105 0 Q 140 0 140 35 Q 140 70 105 70 L 0 70 L 0 0 Z" }; + diagramNode.Width = 140; + diagramNode.Height = 70; + diagramNode.Style.Fill = "#493e13"; + diagramNode.Style.Gradient!.GradientStops[0].Color = "Black"; + diagramNode.Style.Gradient.GradientStops[1].Color = "#493e13"; + } + else if (id == "Manual-Operation") + { + diagramNode.Shape = new PathShape() { Type = Syncfusion.Blazor.Diagram.NodeShapes.Path, Data = "M 0 0 L 140 0 L 115 70 L 25 70 L 0 0 Z" }; + diagramNode.Width = 140; + diagramNode.Height = 70; + diagramNode.Style.Fill = "#310031"; + diagramNode.Style.Gradient!.GradientStops[0].Color = "Black"; + diagramNode.Style.Gradient.GradientStops[1].Color = "#310031"; + } + else if (id == "Manual-Input") + { + diagramNode.Shape = new PathShape() { Type = Syncfusion.Blazor.Diagram.NodeShapes.Path, Data = "M 140 0 L 140 60 Q 140 70 120 70 L 10 70 Q 0 70 0 60 L 0 35 L 140 0 Z" }; + diagramNode.Width = 140; + diagramNode.Height = 70; + diagramNode.Style.Fill = "#4b1a4d"; + diagramNode.Style.Gradient!.GradientStops[0].Color = "Black"; + diagramNode.Style.Gradient.GradientStops[1].Color = "#4b1a4d"; + } + else if (id == "Data") + { + diagramNode.Shape = new PathShape() { Type = Syncfusion.Blazor.Diagram.NodeShapes.Path, Data = "M 20 0 L 140 0 L 120 70 L 0 70 L 2 0 Z" }; + diagramNode.Width = 140; + diagramNode.Height = 70; + diagramNode.Style.Fill = "#5a1414"; + diagramNode.Style.Gradient!.GradientStops[0].Color = "Black"; + diagramNode.Style.Gradient.GradientStops[1].Color = "#5a1414"; + } + else if (id == "Card") + { + diagramNode.Shape = new PathShape() { Type = Syncfusion.Blazor.Diagram.NodeShapes.Path, Data = "M 35 0 L 130 0 Q 140 0 140 10 L 140 60 Q 140 70 130 70 L 10 70 Q 0 70 0 60 L 0 35 L 35 0 Z" }; + diagramNode.Width = 140; + diagramNode.Height = 70; + diagramNode.Style.Fill = "#68682f"; + diagramNode.Style.Gradient!.GradientStops[0].Color = "Black"; + diagramNode.Style.Gradient.GradientStops[1].Color = "#68682f"; + } + + // Add shadow effect if requested + if (isShadow) + { + diagramNode.Shadow = new Shadow() + { + Angle = 45, + Color = "lightgrey", + Distance = 5, + Opacity = 0.7 + }; + } + PalettePathNodes.Add(diagramNode); + } + +} + diff --git a/KB-Samples/LargeDiagram/Components/Pages/Error.razor b/KB-Samples/LargeDiagram/Components/Pages/Error.razor new file mode 100644 index 00000000..576cc2d2 --- /dev/null +++ b/KB-Samples/LargeDiagram/Components/Pages/Error.razor @@ -0,0 +1,36 @@ +@page "/Error" +@using System.Diagnostics + +Error + +

Error.

+

An error occurred while processing your request.

+ +@if (ShowRequestId) +{ +

+ Request ID: @RequestId +

+} + +

Development Mode

+

+ Swapping to Development environment will display more detailed information about the error that occurred. +

+

+ The Development environment shouldn't be enabled for deployed applications. + It can result in displaying sensitive information from exceptions to end users. + For local debugging, enable the Development environment by setting the ASPNETCORE_ENVIRONMENT environment variable to Development + and restarting the app. +

+ +@code{ + [CascadingParameter] + private HttpContext? HttpContext { get; set; } + + private string? RequestId { get; set; } + private bool ShowRequestId => !string.IsNullOrEmpty(RequestId); + + protected override void OnInitialized() => + RequestId = Activity.Current?.Id ?? HttpContext?.TraceIdentifier; +} diff --git a/KB-Samples/LargeDiagram/Components/Pages/FileUtil.cs b/KB-Samples/LargeDiagram/Components/Pages/FileUtil.cs new file mode 100644 index 00000000..0007fe9c --- /dev/null +++ b/KB-Samples/LargeDiagram/Components/Pages/FileUtil.cs @@ -0,0 +1,29 @@ +using Microsoft.JSInterop; + +namespace LargeDiagram.Components.Pages +{ + +#pragma warning disable CA1052 // Static holder types should be Static or NotInheritable + public class FileUtil +#pragma warning restore CA1052 // Static holder types should be Static or NotInheritable + { + public async static Task SaveAs(IJSRuntime js, string data, string fileName) + { + await js.InvokeAsync( + "saveDiagram", +#pragma warning disable CA1305 // Specify IFormatProvider + Convert.ToString(data), fileName).ConfigureAwait(true); +#pragma warning restore CA1305 // Specify IFormatProvider + } + public async static Task Click(IJSRuntime js) + { + await js.InvokeAsync( + "click").ConfigureAwait(true); + } + public async static Task LoadFile(IJSRuntime js, object data) + { + return await js.InvokeAsync( + "loadFile", data).ConfigureAwait(true); + } + } +} diff --git a/KB-Samples/LargeDiagram/Components/Pages/Index.razor b/KB-Samples/LargeDiagram/Components/Pages/Index.razor new file mode 100644 index 00000000..b22cd451 --- /dev/null +++ b/KB-Samples/LargeDiagram/Components/Pages/Index.razor @@ -0,0 +1,77 @@ +@page "/diagram-features" + +Index + +Selected Controls +
+

The following Syncfusion Blazor components can be set up in an application for you with the Syncfusion Blazor Template Studio. A fast, easy start with Syncfusion Blazor components lets you concentrate on the important part: learning.

+
+ +
Data Visualization
+
    +
  • + + Diagram + +
  • + +
+ +
+ diff --git a/KB-Samples/LargeDiagram/Components/Routes.razor b/KB-Samples/LargeDiagram/Components/Routes.razor new file mode 100644 index 00000000..f756e19d --- /dev/null +++ b/KB-Samples/LargeDiagram/Components/Routes.razor @@ -0,0 +1,6 @@ + + + + + + diff --git a/KB-Samples/LargeDiagram/Components/_Imports.razor b/KB-Samples/LargeDiagram/Components/_Imports.razor new file mode 100644 index 00000000..3bc18618 --- /dev/null +++ b/KB-Samples/LargeDiagram/Components/_Imports.razor @@ -0,0 +1,11 @@ +@using System.Net.Http +@using System.Net.Http.Json +@using Microsoft.AspNetCore.Components.Forms +@using Microsoft.AspNetCore.Components.Routing +@using Microsoft.AspNetCore.Components.Web +@using static Microsoft.AspNetCore.Components.Web.RenderMode +@using Microsoft.AspNetCore.Components.Web.Virtualization +@using Microsoft.JSInterop +@using LargeDiagram +@using LargeDiagram.Components +@using Syncfusion.Blazor \ No newline at end of file diff --git a/KB-Samples/LargeDiagram/Controllers/CultureController.cs b/KB-Samples/LargeDiagram/Controllers/CultureController.cs new file mode 100644 index 00000000..0d65ca19 --- /dev/null +++ b/KB-Samples/LargeDiagram/Controllers/CultureController.cs @@ -0,0 +1,23 @@ +using Microsoft.AspNetCore.Mvc; +using Microsoft.AspNetCore.Http; +using Microsoft.AspNetCore.Localization; + +namespace LargeDiagram.Controllers +{ + [Route("[controller]/[action]")] + public class CultureController : Controller + { + public IActionResult SetCulture(string culture, string redirectUri) + { + if (culture != null) + { + HttpContext.Response.Cookies.Append( + CookieRequestCultureProvider.DefaultCookieName, + CookieRequestCultureProvider.MakeCookieValue( + new RequestCulture(culture))); + } + + return LocalRedirect(redirectUri); + } + } +} diff --git a/KB-Samples/LargeDiagram/LargeDiagram.csproj b/KB-Samples/LargeDiagram/LargeDiagram.csproj new file mode 100644 index 00000000..d29ae109 --- /dev/null +++ b/KB-Samples/LargeDiagram/LargeDiagram.csproj @@ -0,0 +1,34 @@ + + + + net9.0 + enable + enable + + + + + + + + + + + + + + + True + True + SfResources.resx + + + + + + PublicResXFileCodeGenerator + SfResources.Designer.cs + + + + diff --git a/KB-Samples/LargeDiagram/LargeDiagram.csproj.user b/KB-Samples/LargeDiagram/LargeDiagram.csproj.user new file mode 100644 index 00000000..9ff5820a --- /dev/null +++ b/KB-Samples/LargeDiagram/LargeDiagram.csproj.user @@ -0,0 +1,6 @@ + + + + https + + \ No newline at end of file diff --git a/KB-Samples/LargeDiagram/Program.cs b/KB-Samples/LargeDiagram/Program.cs new file mode 100644 index 00000000..1b24c287 --- /dev/null +++ b/KB-Samples/LargeDiagram/Program.cs @@ -0,0 +1,49 @@ +using LargeDiagram; +using LargeDiagram.Components; +using Syncfusion.Blazor; +using System.Globalization; +using Microsoft.JSInterop; + +var builder = WebApplication.CreateBuilder(args); + +// Add services to the container. +builder.Services.AddRazorComponents() + .AddInteractiveServerComponents(); +builder.Services.AddSyncfusionBlazor(); +builder.Services.AddControllers(); + builder.Services.AddSingleton(typeof(ISyncfusionStringLocalizer), typeof(SyncfusionLocalizer)); +var supportedCultures = new[] { "en-US", "de", "fr", "ar", "zh" }; +builder.Services.AddServerSideBlazor().AddHubOptions(o => +{ + o.MaximumReceiveMessageSize = 102400000; // Increased limit to handle large JSON data +}); +var localizationOptions = new RequestLocalizationOptions() + .SetDefaultCulture(supportedCultures[0]) + .AddSupportedCultures(supportedCultures) + .AddSupportedUICultures(supportedCultures); + +var app = builder.Build(); +//Register Syncfusion license https://help.syncfusion.com/common/essential-studio/licensing/how-to-generate +//Syncfusion.Licensing.SyncfusionLicenseProvider.RegisterLicense("YOUR LICENSE KEY"); + +// Configure the HTTP request pipeline. +app.UseRequestLocalization(localizationOptions); + +if (!app.Environment.IsDevelopment()) +{ + app.UseExceptionHandler("/Error", createScopeForErrors: true); + // The default HSTS value is 30 days. You may want to change this for production scenarios, see https://aka.ms/aspnetcore-hsts. + app.UseHsts(); +} + +app.UseHttpsRedirection(); + + +app.UseAntiforgery(); + +app.MapStaticAssets(); +app.MapRazorComponents() + .AddInteractiveServerRenderMode(); + +app.MapControllers(); + app.Run(); diff --git a/KB-Samples/LargeDiagram/Properties/launchSettings.json b/KB-Samples/LargeDiagram/Properties/launchSettings.json new file mode 100644 index 00000000..50d45b10 --- /dev/null +++ b/KB-Samples/LargeDiagram/Properties/launchSettings.json @@ -0,0 +1,38 @@ +{ + "profiles": { + "http": { + "commandName": "Project", + "launchBrowser": true, + "environmentVariables": { + "ASPNETCORE_ENVIRONMENT": "Development" + }, + "dotnetRunMessages": true, + "applicationUrl": "http://localhost:5221" + }, + "https": { + "commandName": "Project", + "launchBrowser": true, + "environmentVariables": { + "ASPNETCORE_ENVIRONMENT": "Development" + }, + "dotnetRunMessages": true, + "applicationUrl": "https://localhost:7253;http://localhost:5221" + }, + "IIS Express": { + "commandName": "IISExpress", + "launchBrowser": true, + "environmentVariables": { + "ASPNETCORE_ENVIRONMENT": "Development" + } + } + }, + "$schema": "https://json.schemastore.org/launchsettings.json", + "iisSettings": { + "windowsAuthentication": false, + "anonymousAuthentication": true, + "iisExpress": { + "applicationUrl": "http://localhost:62063/", + "sslPort": 44393 + } + } +} \ No newline at end of file diff --git a/KB-Samples/LargeDiagram/Resources/SfResources.Designer.cs b/KB-Samples/LargeDiagram/Resources/SfResources.Designer.cs new file mode 100644 index 00000000..67b22a5a --- /dev/null +++ b/KB-Samples/LargeDiagram/Resources/SfResources.Designer.cs @@ -0,0 +1,14706 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +namespace LargeDiagram.Resources { + using System; + + + /// + /// A strongly-typed resource class, for looking up localized strings, etc. + /// + // This class was auto-generated by the StronglyTypedResourceBuilder + // class via a tool like ResGen or Visual Studio. + // To add or remove a member, edit your .ResX file then rerun ResGen + // with the /str option, or rebuild your VS project. + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "17.0.0.0")] + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()] + public class SfResources { + + private static global::System.Resources.ResourceManager resourceMan; + + private static global::System.Globalization.CultureInfo resourceCulture; + + [global::System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")] + internal SfResources() { + } + + /// + /// Returns the cached ResourceManager instance used by this class. + /// + [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)] + public static global::System.Resources.ResourceManager ResourceManager { + get { + if (object.ReferenceEquals(resourceMan, null)) { + global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("LargeDiagram.Resources.SfResources", typeof(SfResources).Assembly); + resourceMan = temp; + } + return resourceMan; + } + } + + /// + /// Overrides the current thread's CurrentUICulture property for all + /// resource lookups using this strongly typed resource class. + /// + [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)] + public static global::System.Globalization.CultureInfo Culture { + get { + return resourceCulture; + } + set { + resourceCulture = value; + } + } + + /// + /// Looks up a localized string similar to Request failed. + /// + public static string AutoComplete_ActionFailureTemplate { + get { + return ResourceManager.GetString("AutoComplete_ActionFailureTemplate", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to No records found. + /// + public static string AutoComplete_NoRecordsTemplate { + get { + return ResourceManager.GetString("AutoComplete_NoRecordsTemplate", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Today. + /// + public static string Calendar_Today { + get { + return ResourceManager.GetString("Calendar_Today", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Pan. + /// + public static string Chart_Pan { + get { + return ResourceManager.GetString("Chart_Pan", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Reset. + /// + public static string Chart_Reset { + get { + return ResourceManager.GetString("Chart_Reset", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Reset Zoom. + /// + public static string Chart_ResetZoom { + get { + return ResourceManager.GetString("Chart_ResetZoom", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Zoom. + /// + public static string Chart_Zoom { + get { + return ResourceManager.GetString("Chart_Zoom", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Zoom in. + /// + public static string Chart_ZoomIn { + get { + return ResourceManager.GetString("Chart_ZoomIn", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Zoom out. + /// + public static string Chart_ZoomOut { + get { + return ResourceManager.GetString("Chart_ZoomOut", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Apply. + /// + public static string ColorPicker_Apply { + get { + return ResourceManager.GetString("ColorPicker_Apply", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Cancel. + /// + public static string ColorPicker_Cancel { + get { + return ResourceManager.GetString("ColorPicker_Cancel", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Switch Mode. + /// + public static string ColorPicker_ModeSwitcher { + get { + return ResourceManager.GetString("ColorPicker_ModeSwitcher", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Request failed. + /// + public static string ComboBox_ActionFailureTemplate { + get { + return ResourceManager.GetString("ComboBox_ActionFailureTemplate", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to No records found. + /// + public static string ComboBox_NoRecordsTemplate { + get { + return ResourceManager.GetString("ComboBox_NoRecordsTemplate", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Choose a date. + /// + public static string DatePicker_Placeholder { + get { + return ResourceManager.GetString("DatePicker_Placeholder", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Today. + /// + public static string DatePicker_Today { + get { + return ResourceManager.GetString("DatePicker_Today", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Apply. + /// + public static string DateRangePicker_ApplyText { + get { + return ResourceManager.GetString("DateRangePicker_ApplyText", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Cancel. + /// + public static string DateRangePicker_CancelText { + get { + return ResourceManager.GetString("DateRangePicker_CancelText", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Custom Range. + /// + public static string DateRangePicker_CustomRange { + get { + return ResourceManager.GetString("DateRangePicker_CustomRange", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Days. + /// + public static string DateRangePicker_Days { + get { + return ResourceManager.GetString("DateRangePicker_Days", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to End Date. + /// + public static string DateRangePicker_EndLabel { + get { + return ResourceManager.GetString("DateRangePicker_EndLabel", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Choose a date range. + /// + public static string DateRangePicker_Placeholder { + get { + return ResourceManager.GetString("DateRangePicker_Placeholder", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Selected Days. + /// + public static string DateRangePicker_SelectedDays { + get { + return ResourceManager.GetString("DateRangePicker_SelectedDays", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Start Date. + /// + public static string DateRangePicker_StartLabel { + get { + return ResourceManager.GetString("DateRangePicker_StartLabel", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Choose a date and time. + /// + public static string DateTimePicker_Placeholder { + get { + return ResourceManager.GetString("DateTimePicker_Placeholder", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Today. + /// + public static string DateTimePicker_Today { + get { + return ResourceManager.GetString("DateTimePicker_Today", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Bring To Front. + /// + public static string Diagram_BringToFront { + get { + return ResourceManager.GetString("Diagram_BringToFront", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Copy. + /// + public static string Diagram_Copy { + get { + return ResourceManager.GetString("Diagram_Copy", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Cut. + /// + public static string Diagram_Cut { + get { + return ResourceManager.GetString("Diagram_Cut", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Group. + /// + public static string Diagram_Group { + get { + return ResourceManager.GetString("Diagram_Group", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Grouping. + /// + public static string Diagram_Grouping { + get { + return ResourceManager.GetString("Diagram_Grouping", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Move Forward. + /// + public static string Diagram_MoveForward { + get { + return ResourceManager.GetString("Diagram_MoveForward", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Order. + /// + public static string Diagram_Order { + get { + return ResourceManager.GetString("Diagram_Order", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Paste. + /// + public static string Diagram_Paste { + get { + return ResourceManager.GetString("Diagram_Paste", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Redo. + /// + public static string Diagram_Redo { + get { + return ResourceManager.GetString("Diagram_Redo", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Select All. + /// + public static string Diagram_SelectAll { + get { + return ResourceManager.GetString("Diagram_SelectAll", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Send Backward. + /// + public static string Diagram_SendBackward { + get { + return ResourceManager.GetString("Diagram_SendBackward", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Send To Back. + /// + public static string Diagram_SendToBack { + get { + return ResourceManager.GetString("Diagram_SendToBack", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Undo. + /// + public static string Diagram_Undo { + get { + return ResourceManager.GetString("Diagram_Undo", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Ungroup. + /// + public static string Diagram_UnGroup { + get { + return ResourceManager.GetString("Diagram_UnGroup", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to H. + /// + public static string DiagramComponent_H { + get { + return ResourceManager.GetString("DiagramComponent_H", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to W. + /// + public static string DiagramComponent_W { + get { + return ResourceManager.GetString("DiagramComponent_W", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to X. + /// + public static string DiagramComponent_X { + get { + return ResourceManager.GetString("DiagramComponent_X", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Y. + /// + public static string DiagramComponent_Y { + get { + return ResourceManager.GetString("DiagramComponent_Y", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Close. + /// + public static string Dialog_Close { + get { + return ResourceManager.GetString("Dialog_Close", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to A3. + /// + public static string DocumentEditor_A3 { + get { + return ResourceManager.GetString("DocumentEditor_A3", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to A4. + /// + public static string DocumentEditor_A4 { + get { + return ResourceManager.GetString("DocumentEditor_A4", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to A5. + /// + public static string DocumentEditor_A5 { + get { + return ResourceManager.GetString("DocumentEditor_A5", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Accept. + /// + public static string DocumentEditor_Accept { + get { + return ResourceManager.GetString("DocumentEditor_Accept", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Accept all. + /// + public static string DocumentEditor_AcceptAll { + get { + return ResourceManager.GetString("DocumentEditor_AcceptAll", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Accept Changes. + /// + public static string DocumentEditor_AcceptChanges { + get { + return ResourceManager.GetString("DocumentEditor_AcceptChanges", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Add. + /// + public static string DocumentEditor_Add { + get { + return ResourceManager.GetString("DocumentEditor_Add", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to ADD. + /// + public static string DocumentEditor_ADDButton { + get { + return ResourceManager.GetString("DocumentEditor_ADDButton", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to This document has no headings. Please add headings and try again.. + /// + public static string DocumentEditor_AddHeadings { + get { + return ResourceManager.GetString("DocumentEditor_AddHeadings", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Address. + /// + public static string DocumentEditor_Address { + get { + return ResourceManager.GetString("DocumentEditor_Address", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Add to Dictionary. + /// + public static string DocumentEditor_AddToDictionary { + get { + return ResourceManager.GetString("DocumentEditor_AddToDictionary", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Add Users. + /// + public static string DocumentEditor_AddUsers { + get { + return ResourceManager.GetString("DocumentEditor_AddUsers", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to After. + /// + public static string DocumentEditor_After { + get { + return ResourceManager.GetString("DocumentEditor_After", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to After text. + /// + public static string DocumentEditor_AfterText { + get { + return ResourceManager.GetString("DocumentEditor_AfterText", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Aligned at. + /// + public static string DocumentEditor_AlignedAt { + get { + return ResourceManager.GetString("DocumentEditor_AlignedAt", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Alignment. + /// + public static string DocumentEditor_Alignment { + get { + return ResourceManager.GetString("DocumentEditor_Alignment", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to All. + /// + public static string DocumentEditor_All { + get { + return ResourceManager.GetString("DocumentEditor_All", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to All Done. + /// + public static string DocumentEditor_AllDone { + get { + return ResourceManager.GetString("DocumentEditor_AllDone", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Allow formatting. + /// + public static string DocumentEditor_AllowFormatting { + get { + return ResourceManager.GetString("DocumentEditor_AllowFormatting", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Allow row to break across pages. + /// + public static string DocumentEditor_AllowRowToBreakAcrossPages { + get { + return ResourceManager.GetString("DocumentEditor_AllowRowToBreakAcrossPages", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Allow spacing between cells. + /// + public static string DocumentEditor_AllowSpacingBetweenCells { + get { + return ResourceManager.GetString("DocumentEditor_AllowSpacingBetweenCells", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Apply to. + /// + public static string DocumentEditor_ApplyTo { + get { + return ResourceManager.GetString("DocumentEditor_ApplyTo", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Arabic. + /// + public static string DocumentEditor_Arabic { + get { + return ResourceManager.GetString("DocumentEditor_Arabic", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to At. + /// + public static string DocumentEditor_At { + get { + return ResourceManager.GetString("DocumentEditor_At", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to At least. + /// + public static string DocumentEditor_AtLeast { + get { + return ResourceManager.GetString("DocumentEditor_AtLeast", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Auto. + /// + public static string DocumentEditor_Auto { + get { + return ResourceManager.GetString("DocumentEditor_Auto", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to AutoFit. + /// + public static string DocumentEditor_AutoFit { + get { + return ResourceManager.GetString("DocumentEditor_AutoFit", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to AutoFit to Contents. + /// + public static string DocumentEditor_AutoFitToContents { + get { + return ResourceManager.GetString("DocumentEditor_AutoFitToContents", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to AutoFit to Window. + /// + public static string DocumentEditor_AutoFitToWindow { + get { + return ResourceManager.GetString("DocumentEditor_AutoFitToWindow", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Available styles. + /// + public static string DocumentEditor_AvailableStyles { + get { + return ResourceManager.GetString("DocumentEditor_AvailableStyles", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to B4. + /// + public static string DocumentEditor_B4 { + get { + return ResourceManager.GetString("DocumentEditor_B4", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to B5. + /// + public static string DocumentEditor_B5 { + get { + return ResourceManager.GetString("DocumentEditor_B5", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Before. + /// + public static string DocumentEditor_Before { + get { + return ResourceManager.GetString("DocumentEditor_Before", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Before text. + /// + public static string DocumentEditor_BeforeText { + get { + return ResourceManager.GetString("DocumentEditor_BeforeText", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Bold. + /// + public static string DocumentEditor_Bold { + get { + return ResourceManager.GetString("DocumentEditor_Bold", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Bookmark. + /// + public static string DocumentEditor_Bookmark { + get { + return ResourceManager.GetString("DocumentEditor_Bookmark", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Bookmark name. + /// + public static string DocumentEditor_BookmarkName { + get { + return ResourceManager.GetString("DocumentEditor_BookmarkName", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Borders. + /// + public static string DocumentEditor_Borders { + get { + return ResourceManager.GetString("DocumentEditor_Borders", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Borders and Shading. + /// + public static string DocumentEditor_BordersAndShading { + get { + return ResourceManager.GetString("DocumentEditor_BordersAndShading", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Bottom. + /// + public static string DocumentEditor_Bottom { + get { + return ResourceManager.GetString("DocumentEditor_Bottom", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Box. + /// + public static string DocumentEditor_Box { + get { + return ResourceManager.GetString("DocumentEditor_Box", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Build table of contents from. + /// + public static string DocumentEditor_BuildTableOfContentsFrom { + get { + return ResourceManager.GetString("DocumentEditor_BuildTableOfContentsFrom", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Bullet. + /// + public static string DocumentEditor_Bullet { + get { + return ResourceManager.GetString("DocumentEditor_Bullet", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Bullets. + /// + public static string DocumentEditor_Bullets { + get { + return ResourceManager.GetString("DocumentEditor_Bullets", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to By. + /// + public static string DocumentEditor_By { + get { + return ResourceManager.GetString("DocumentEditor_By", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Cancel. + /// + public static string DocumentEditor_Cancel { + get { + return ResourceManager.GetString("DocumentEditor_Cancel", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Cell. + /// + public static string DocumentEditor_Cell { + get { + return ResourceManager.GetString("DocumentEditor_Cell", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Cell margins. + /// + public static string DocumentEditor_CellMargins { + get { + return ResourceManager.GetString("DocumentEditor_CellMargins", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Cell Options. + /// + public static string DocumentEditor_CellOptions { + get { + return ResourceManager.GetString("DocumentEditor_CellOptions", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Center. + /// + public static string DocumentEditor_Center { + get { + return ResourceManager.GetString("DocumentEditor_Center", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Change. + /// + public static string DocumentEditor_Change { + get { + return ResourceManager.GetString("DocumentEditor_Change", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Change All. + /// + public static string DocumentEditor_ChangeAll { + get { + return ResourceManager.GetString("DocumentEditor_ChangeAll", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Changes. + /// + public static string DocumentEditor_Changes { + get { + return ResourceManager.GetString("DocumentEditor_Changes", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Character. + /// + public static string DocumentEditor_Character { + get { + return ResourceManager.GetString("DocumentEditor_Character", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Check box enabled. + /// + public static string DocumentEditor_CheckBoxEnabled { + get { + return ResourceManager.GetString("DocumentEditor_CheckBoxEnabled", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Check Box Form Field. + /// + public static string DocumentEditor_CheckBoxFormField { + get { + return ResourceManager.GetString("DocumentEditor_CheckBoxFormField", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Check box size. + /// + public static string DocumentEditor_CheckBoxSize { + get { + return ResourceManager.GetString("DocumentEditor_CheckBoxSize", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Checked. + /// + public static string DocumentEditor_Checked { + get { + return ResourceManager.GetString("DocumentEditor_Checked", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Choose level to modify. + /// + public static string DocumentEditor_ChooseLevelToModify { + get { + return ResourceManager.GetString("DocumentEditor_ChooseLevelToModify", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Click to follow link. + /// + public static string DocumentEditor_ClickToFollowLink { + get { + return ResourceManager.GetString("DocumentEditor_ClickToFollowLink", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Click to see this comment. + /// + public static string DocumentEditor_ClickToSeeThisComment { + get { + return ResourceManager.GetString("DocumentEditor_ClickToSeeThisComment", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Close. + /// + public static string DocumentEditor_Close { + get { + return ResourceManager.GetString("DocumentEditor_Close", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Color. + /// + public static string DocumentEditor_Color { + get { + return ResourceManager.GetString("DocumentEditor_Color", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Comments. + /// + public static string DocumentEditor_Comments { + get { + return ResourceManager.GetString("DocumentEditor_Comments", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Don't add space between the paragraphs of the same styles. + /// + public static string DocumentEditor_ContextualSpacing { + get { + return ResourceManager.GetString("DocumentEditor_ContextualSpacing", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Continue Numbering. + /// + public static string DocumentEditor_ContinueNumbering { + get { + return ResourceManager.GetString("DocumentEditor_ContinueNumbering", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Copy. + /// + public static string DocumentEditor_Copy { + get { + return ResourceManager.GetString("DocumentEditor_Copy", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Copy Hyperlink. + /// + public static string DocumentEditor_CopyHyperlink { + get { + return ResourceManager.GetString("DocumentEditor_CopyHyperlink", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Create New Style. + /// + public static string DocumentEditor_CreateNewStyle { + get { + return ResourceManager.GetString("DocumentEditor_CreateNewStyle", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Custom. + /// + public static string DocumentEditor_Custom { + get { + return ResourceManager.GetString("DocumentEditor_Custom", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Custom size. + /// + public static string DocumentEditor_CustomSize { + get { + return ResourceManager.GetString("DocumentEditor_CustomSize", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Cut. + /// + public static string DocumentEditor_Cut { + get { + return ResourceManager.GetString("DocumentEditor_Cut", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Date format. + /// + public static string DocumentEditor_DateFormat { + get { + return ResourceManager.GetString("DocumentEditor_DateFormat", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Default cell margins. + /// + public static string DocumentEditor_DefaultCellMargins { + get { + return ResourceManager.GetString("DocumentEditor_DefaultCellMargins", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Default cell spacing. + /// + public static string DocumentEditor_DefaultCellSpacing { + get { + return ResourceManager.GetString("DocumentEditor_DefaultCellSpacing", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Default date. + /// + public static string DocumentEditor_DefaultDate { + get { + return ResourceManager.GetString("DocumentEditor_DefaultDate", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Default number. + /// + public static string DocumentEditor_DefaultNumber { + get { + return ResourceManager.GetString("DocumentEditor_DefaultNumber", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Default text. + /// + public static string DocumentEditor_DefaultText { + get { + return ResourceManager.GetString("DocumentEditor_DefaultText", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Default value. + /// + public static string DocumentEditor_DefaultValue { + get { + return ResourceManager.GetString("DocumentEditor_DefaultValue", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Define new Multilevel list. + /// + public static string DocumentEditor_DefineNewMultilevelList { + get { + return ResourceManager.GetString("DocumentEditor_DefineNewMultilevelList", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Delete. + /// + public static string DocumentEditor_Delete { + get { + return ResourceManager.GetString("DocumentEditor_Delete", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Delete Column. + /// + public static string DocumentEditor_DeleteColumn { + get { + return ResourceManager.GetString("DocumentEditor_DeleteColumn", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Deleted. + /// + public static string DocumentEditor_Deleted { + get { + return ResourceManager.GetString("DocumentEditor_Deleted", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Delete Row. + /// + public static string DocumentEditor_DeleteRow { + get { + return ResourceManager.GetString("DocumentEditor_DeleteRow", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Delete Table. + /// + public static string DocumentEditor_DeleteTable { + get { + return ResourceManager.GetString("DocumentEditor_DeleteTable", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Different first page. + /// + public static string DocumentEditor_DifferentFirstPage { + get { + return ResourceManager.GetString("DocumentEditor_DifferentFirstPage", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Different odd and even. + /// + public static string DocumentEditor_DifferentOddAndEven { + get { + return ResourceManager.GetString("DocumentEditor_DifferentOddAndEven", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Direction. + /// + public static string DocumentEditor_Direction { + get { + return ResourceManager.GetString("DocumentEditor_Direction", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Added comments not posted. If you continue, that comment will be discarded.. + /// + public static string DocumentEditor_DiscardComment { + get { + return ResourceManager.GetString("DocumentEditor_DiscardComment", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Double strikethrough. + /// + public static string DocumentEditor_DoubleStrikethrough { + get { + return ResourceManager.GetString("DocumentEditor_DoubleStrikethrough", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Drop-down enabled. + /// + public static string DocumentEditor_DropDownEnabled { + get { + return ResourceManager.GetString("DocumentEditor_DropDownEnabled", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Drop Down Form Field. + /// + public static string DocumentEditor_DropDownFormField { + get { + return ResourceManager.GetString("DocumentEditor_DropDownFormField", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Drop-down items. + /// + public static string DocumentEditor_DropDownItems { + get { + return ResourceManager.GetString("DocumentEditor_DropDownItems", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Edit. + /// + public static string DocumentEditor_Edit { + get { + return ResourceManager.GetString("DocumentEditor_Edit", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Edit Field. + /// + public static string DocumentEditor_EditField { + get { + return ResourceManager.GetString("DocumentEditor_EditField", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Edit Hyperlink. + /// + public static string DocumentEditor_EditHyperlink { + get { + return ResourceManager.GetString("DocumentEditor_EditHyperlink", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Editing restrictions. + /// + public static string DocumentEditor_EditingRestrictions { + get { + return ResourceManager.GetString("DocumentEditor_EditingRestrictions", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Effects. + /// + public static string DocumentEditor_Effects { + get { + return ResourceManager.GetString("DocumentEditor_Effects", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Yes, Start Enforcing Protection. + /// + public static string DocumentEditor_EnforcingProtection { + get { + return ResourceManager.GetString("DocumentEditor_EnforcingProtection", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Enter formatting for number. + /// + public static string DocumentEditor_EnterFormattingForNumber { + get { + return ResourceManager.GetString("DocumentEditor_EnterFormattingForNumber", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Enter new password. + /// + public static string DocumentEditor_EnterNewPassword { + get { + return ResourceManager.GetString("DocumentEditor_EnterNewPassword", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Enter User. + /// + public static string DocumentEditor_EnterUser { + get { + return ResourceManager.GetString("DocumentEditor_EnterUser", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Error in establishing connection with web server. + /// + public static string DocumentEditor_ErrorInEstablishingConnectionWithWebServer { + get { + return ResourceManager.GetString("DocumentEditor_ErrorInEstablishingConnectionWithWebServer", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Everyone. + /// + public static string DocumentEditor_Everyone { + get { + return ResourceManager.GetString("DocumentEditor_Everyone", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Exactly. + /// + public static string DocumentEditor_Exactly { + get { + return ResourceManager.GetString("DocumentEditor_Exactly", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Exceptions (optional). + /// + public static string DocumentEditor_ExceptionsOptional { + get { + return ResourceManager.GetString("DocumentEditor_ExceptionsOptional", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Executive. + /// + public static string DocumentEditor_Executive { + get { + return ResourceManager.GetString("DocumentEditor_Executive", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Field settings. + /// + public static string DocumentEditor_FieldSettings { + get { + return ResourceManager.GetString("DocumentEditor_FieldSettings", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to File Name. + /// + public static string DocumentEditor_FileName { + get { + return ResourceManager.GetString("DocumentEditor_FileName", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Fill. + /// + public static string DocumentEditor_Fill { + get { + return ResourceManager.GetString("DocumentEditor_Fill", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Fill-in enabled. + /// + public static string DocumentEditor_FillInEnabled { + get { + return ResourceManager.GetString("DocumentEditor_FillInEnabled", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Find. + /// + public static string DocumentEditor_Find { + get { + return ResourceManager.GetString("DocumentEditor_Find", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Find Next Region I Can Edit. + /// + public static string DocumentEditor_FindNextRegionICanEdit { + get { + return ResourceManager.GetString("DocumentEditor_FindNextRegionICanEdit", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to First line. + /// + public static string DocumentEditor_FirstLine { + get { + return ResourceManager.GetString("DocumentEditor_FirstLine", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Fixed Column Width. + /// + public static string DocumentEditor_FixedColumnWidth { + get { + return ResourceManager.GetString("DocumentEditor_FixedColumnWidth", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Follow number with. + /// + public static string DocumentEditor_FollowNumberWith { + get { + return ResourceManager.GetString("DocumentEditor_FollowNumberWith", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Font. + /// + public static string DocumentEditor_Font { + get { + return ResourceManager.GetString("DocumentEditor_Font", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Font color. + /// + public static string DocumentEditor_FontColor { + get { + return ResourceManager.GetString("DocumentEditor_FontColor", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Font style. + /// + public static string DocumentEditor_FontStyle { + get { + return ResourceManager.GetString("DocumentEditor_FontStyle", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Footer. + /// + public static string DocumentEditor_Footer { + get { + return ResourceManager.GetString("DocumentEditor_Footer", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to For East. + /// + public static string DocumentEditor_ForEast { + get { + return ResourceManager.GetString("DocumentEditor_ForEast", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Format. + /// + public static string DocumentEditor_Format { + get { + return ResourceManager.GetString("DocumentEditor_Format", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Formatting. + /// + public static string DocumentEditor_Formatting { + get { + return ResourceManager.GetString("DocumentEditor_Formatting", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Formatting restrictions. + /// + public static string DocumentEditor_FormattingRestrictions { + get { + return ResourceManager.GetString("DocumentEditor_FormattingRestrictions", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Format Type. + /// + public static string DocumentEditor_FormatType { + get { + return ResourceManager.GetString("DocumentEditor_FormatType", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to This document is protected from unintentional editing. You may only fill in forms in this region.. + /// + public static string DocumentEditor_FormFieldsOnly { + get { + return ResourceManager.GetString("DocumentEditor_FormFieldsOnly", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to From edge. + /// + public static string DocumentEditor_FromEdge { + get { + return ResourceManager.GetString("DocumentEditor_FromEdge", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to General. + /// + public static string DocumentEditor_General { + get { + return ResourceManager.GetString("DocumentEditor_General", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Go To. + /// + public static string DocumentEditor_GoTo { + get { + return ResourceManager.GetString("DocumentEditor_GoTo", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Hanging. + /// + public static string DocumentEditor_Hanging { + get { + return ResourceManager.GetString("DocumentEditor_Hanging", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Header. + /// + public static string DocumentEditor_Header { + get { + return ResourceManager.GetString("DocumentEditor_Header", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Heading. + /// + public static string DocumentEditor_Heading { + get { + return ResourceManager.GetString("DocumentEditor_Heading", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Heading 1. + /// + public static string DocumentEditor_Heading1 { + get { + return ResourceManager.GetString("DocumentEditor_Heading1", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Heading 2. + /// + public static string DocumentEditor_Heading2 { + get { + return ResourceManager.GetString("DocumentEditor_Heading2", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Heading 3. + /// + public static string DocumentEditor_Heading3 { + get { + return ResourceManager.GetString("DocumentEditor_Heading3", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Heading 4. + /// + public static string DocumentEditor_Heading4 { + get { + return ResourceManager.GetString("DocumentEditor_Heading4", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Heading 5. + /// + public static string DocumentEditor_Heading5 { + get { + return ResourceManager.GetString("DocumentEditor_Heading5", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Heading 6. + /// + public static string DocumentEditor_Heading6 { + get { + return ResourceManager.GetString("DocumentEditor_Heading6", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Height. + /// + public static string DocumentEditor_Height { + get { + return ResourceManager.GetString("DocumentEditor_Height", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Highlight the regions I can edit. + /// + public static string DocumentEditor_HighlightTheRegionsICanEdit { + get { + return ResourceManager.GetString("DocumentEditor_HighlightTheRegionsICanEdit", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Hyperlink. + /// + public static string DocumentEditor_Hyperlink { + get { + return ResourceManager.GetString("DocumentEditor_Hyperlink", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Ignore. + /// + public static string DocumentEditor_Ignore { + get { + return ResourceManager.GetString("DocumentEditor_Ignore", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Ignore All. + /// + public static string DocumentEditor_IgnoreAll { + get { + return ResourceManager.GetString("DocumentEditor_IgnoreAll", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Indentation. + /// + public static string DocumentEditor_Indentation { + get { + return ResourceManager.GetString("DocumentEditor_Indentation", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Indent from left. + /// + public static string DocumentEditor_IndentFromLeft { + get { + return ResourceManager.GetString("DocumentEditor_IndentFromLeft", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Indent from right. + /// + public static string DocumentEditor_IndentFromRight { + get { + return ResourceManager.GetString("DocumentEditor_IndentFromRight", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Indents and Spacing. + /// + public static string DocumentEditor_IndentsAndSpacing { + get { + return ResourceManager.GetString("DocumentEditor_IndentsAndSpacing", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Insert. + /// + public static string DocumentEditor_Insert { + get { + return ResourceManager.GetString("DocumentEditor_Insert", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Insert Above. + /// + public static string DocumentEditor_InsertAbove { + get { + return ResourceManager.GetString("DocumentEditor_InsertAbove", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Insert Below. + /// + public static string DocumentEditor_InsertBelow { + get { + return ResourceManager.GetString("DocumentEditor_InsertBelow", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Inserted. + /// + public static string DocumentEditor_Inserted { + get { + return ResourceManager.GetString("DocumentEditor_Inserted", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Insert Hyperlink. + /// + public static string DocumentEditor_InsertHyperlink { + get { + return ResourceManager.GetString("DocumentEditor_InsertHyperlink", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Insert Left. + /// + public static string DocumentEditor_InsertLeft { + get { + return ResourceManager.GetString("DocumentEditor_InsertLeft", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Insert Right. + /// + public static string DocumentEditor_InsertRight { + get { + return ResourceManager.GetString("DocumentEditor_InsertRight", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Insert Table. + /// + public static string DocumentEditor_InsertTable { + get { + return ResourceManager.GetString("DocumentEditor_InsertTable", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to instances. + /// + public static string DocumentEditor_Instances { + get { + return ResourceManager.GetString("DocumentEditor_Instances", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Italic. + /// + public static string DocumentEditor_Italic { + get { + return ResourceManager.GetString("DocumentEditor_Italic", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Items in drop-down list. + /// + public static string DocumentEditor_ItemsInDropDownList { + get { + return ResourceManager.GetString("DocumentEditor_ItemsInDropDownList", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Justify. + /// + public static string DocumentEditor_Justify { + get { + return ResourceManager.GetString("DocumentEditor_Justify", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Keep lines together. + /// + public static string DocumentEditor_KeepLinesTogether { + get { + return ResourceManager.GetString("DocumentEditor_KeepLinesTogether", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Keep source formatting. + /// + public static string DocumentEditor_KeepSourceFormatting { + get { + return ResourceManager.GetString("DocumentEditor_KeepSourceFormatting", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Keep with next. + /// + public static string DocumentEditor_KeepWithNext { + get { + return ResourceManager.GetString("DocumentEditor_KeepWithNext", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Landscape. + /// + public static string DocumentEditor_Landscape { + get { + return ResourceManager.GetString("DocumentEditor_Landscape", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Layout. + /// + public static string DocumentEditor_Layout { + get { + return ResourceManager.GetString("DocumentEditor_Layout", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Leading zero. + /// + public static string DocumentEditor_LeadingZero { + get { + return ResourceManager.GetString("DocumentEditor_LeadingZero", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Left. + /// + public static string DocumentEditor_Left { + get { + return ResourceManager.GetString("DocumentEditor_Left", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Left-to-right. + /// + public static string DocumentEditor_LeftToRight { + get { + return ResourceManager.GetString("DocumentEditor_LeftToRight", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Legal. + /// + public static string DocumentEditor_Legal { + get { + return ResourceManager.GetString("DocumentEditor_Legal", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Letter. + /// + public static string DocumentEditor_Letter { + get { + return ResourceManager.GetString("DocumentEditor_Letter", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Level. + /// + public static string DocumentEditor_Level { + get { + return ResourceManager.GetString("DocumentEditor_Level", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Line and Page Breaks. + /// + public static string DocumentEditor_LineAndBreakPage { + get { + return ResourceManager.GetString("DocumentEditor_LineAndBreakPage", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Line spacing. + /// + public static string DocumentEditor_LineSpacing { + get { + return ResourceManager.GetString("DocumentEditor_LineSpacing", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Linked(Paragraph and Character). + /// + public static string DocumentEditor_LinkedStyle { + get { + return ResourceManager.GetString("DocumentEditor_LinkedStyle", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to List level. + /// + public static string DocumentEditor_ListLevel { + get { + return ResourceManager.GetString("DocumentEditor_ListLevel", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to List Paragraph. + /// + public static string DocumentEditor_ListParagraph { + get { + return ResourceManager.GetString("DocumentEditor_ListParagraph", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to LowLetter. + /// + public static string DocumentEditor_LowLetter { + get { + return ResourceManager.GetString("DocumentEditor_LowLetter", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to LowRoman. + /// + public static string DocumentEditor_LowRoman { + get { + return ResourceManager.GetString("DocumentEditor_LowRoman", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Margins. + /// + public static string DocumentEditor_Margin { + get { + return ResourceManager.GetString("DocumentEditor_Margin", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Match case. + /// + public static string DocumentEditor_MatchCase { + get { + return ResourceManager.GetString("DocumentEditor_MatchCase", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Match destination formatting. + /// + public static string DocumentEditor_MatchDestinationFormatting { + get { + return ResourceManager.GetString("DocumentEditor_MatchDestinationFormatting", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Maximum length. + /// + public static string DocumentEditor_MaximumLength { + get { + return ResourceManager.GetString("DocumentEditor_MaximumLength", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Measure in. + /// + public static string DocumentEditor_MeasureIn { + get { + return ResourceManager.GetString("DocumentEditor_MeasureIn", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Merge Cells. + /// + public static string DocumentEditor_MergeCells { + get { + return ResourceManager.GetString("DocumentEditor_MergeCells", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to This action wont be marked as change. Do you want to continue?. + /// + public static string DocumentEditor_MergeTrack { + get { + return ResourceManager.GetString("DocumentEditor_MergeTrack", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Modify. + /// + public static string DocumentEditor_Modify { + get { + return ResourceManager.GetString("DocumentEditor_Modify", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Modify Style. + /// + public static string DocumentEditor_ModifyStyle { + get { + return ResourceManager.GetString("DocumentEditor_ModifyStyle", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to more. + /// + public static string DocumentEditor_More { + get { + return ResourceManager.GetString("DocumentEditor_More", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to More Options. + /// + public static string DocumentEditor_MoreOptions { + get { + return ResourceManager.GetString("DocumentEditor_MoreOptions", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to More users. + /// + public static string DocumentEditor_MoreUsers { + get { + return ResourceManager.GetString("DocumentEditor_MoreUsers", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Multiple. + /// + public static string DocumentEditor_Multiple { + get { + return ResourceManager.GetString("DocumentEditor_Multiple", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Name. + /// + public static string DocumentEditor_Name { + get { + return ResourceManager.GetString("DocumentEditor_Name", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Navigation. + /// + public static string DocumentEditor_Navigation { + get { + return ResourceManager.GetString("DocumentEditor_Navigation", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to New. + /// + public static string DocumentEditor_New { + get { + return ResourceManager.GetString("DocumentEditor_New", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to New Comment. + /// + public static string DocumentEditor_NewComment { + get { + return ResourceManager.GetString("DocumentEditor_NewComment", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Next Changes. + /// + public static string DocumentEditor_NextChanges { + get { + return ResourceManager.GetString("DocumentEditor_NextChanges", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Next Comment. + /// + public static string DocumentEditor_NextComment { + get { + return ResourceManager.GetString("DocumentEditor_NextComment", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to No bookmarks found. + /// + public static string DocumentEditor_NoBookmarksFound { + get { + return ResourceManager.GetString("DocumentEditor_NoBookmarksFound", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to No Changes. + /// + public static string DocumentEditor_NoChanges { + get { + return ResourceManager.GetString("DocumentEditor_NoChanges", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to No comments in this document. + /// + public static string DocumentEditor_NoCommentsInThisDocument { + get { + return ResourceManager.GetString("DocumentEditor_NoCommentsInThisDocument", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to No Heading Found!. + /// + public static string DocumentEditor_NoHeadings { + get { + return ResourceManager.GetString("DocumentEditor_NoHeadings", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to No matches. + /// + public static string DocumentEditor_NoMatches { + get { + return ResourceManager.GetString("DocumentEditor_NoMatches", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to None. + /// + public static string DocumentEditor_None { + get { + return ResourceManager.GetString("DocumentEditor_None", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to No Restart. + /// + public static string DocumentEditor_NoRestart { + get { + return ResourceManager.GetString("DocumentEditor_NoRestart", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Normal. + /// + public static string DocumentEditor_Normal { + get { + return ResourceManager.GetString("DocumentEditor_Normal", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Not checked. + /// + public static string DocumentEditor_NotChecked { + get { + return ResourceManager.GetString("DocumentEditor_NotChecked", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Nothing. + /// + public static string DocumentEditor_Nothing { + get { + return ResourceManager.GetString("DocumentEditor_Nothing", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Number. + /// + public static string DocumentEditor_Number { + get { + return ResourceManager.GetString("DocumentEditor_Number", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Number format. + /// + public static string DocumentEditor_NumberFormat { + get { + return ResourceManager.GetString("DocumentEditor_NumberFormat", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Numbering. + /// + public static string DocumentEditor_Numbering { + get { + return ResourceManager.GetString("DocumentEditor_Numbering", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Numbering and Bullets. + /// + public static string DocumentEditor_NumberingAndBullets { + get { + return ResourceManager.GetString("DocumentEditor_NumberingAndBullets", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Number of columns. + /// + public static string DocumentEditor_NumberOfColumns { + get { + return ResourceManager.GetString("DocumentEditor_NumberOfColumns", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Number of rows. + /// + public static string DocumentEditor_NumberOfRows { + get { + return ResourceManager.GetString("DocumentEditor_NumberOfRows", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Number style for this level. + /// + public static string DocumentEditor_NumberStyleForThisLevel { + get { + return ResourceManager.GetString("DocumentEditor_NumberStyleForThisLevel", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to of. + /// + public static string DocumentEditor_Of { + get { + return ResourceManager.GetString("DocumentEditor_Of", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to OK. + /// + public static string DocumentEditor_Ok { + get { + return ResourceManager.GetString("DocumentEditor_Ok", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Open Hyperlink. + /// + public static string DocumentEditor_OpenHyperlink { + get { + return ResourceManager.GetString("DocumentEditor_OpenHyperlink", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Options. + /// + public static string DocumentEditor_Options { + get { + return ResourceManager.GetString("DocumentEditor_Options", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Ordinal. + /// + public static string DocumentEditor_Ordinal { + get { + return ResourceManager.GetString("DocumentEditor_Ordinal", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Ordinal Text. + /// + public static string DocumentEditor_OrdinalText { + get { + return ResourceManager.GetString("DocumentEditor_OrdinalText", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Orientation. + /// + public static string DocumentEditor_Orientation { + get { + return ResourceManager.GetString("DocumentEditor_Orientation", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Outline levels. + /// + public static string DocumentEditor_OutlineLevels { + get { + return ResourceManager.GetString("DocumentEditor_OutlineLevels", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Page Setup. + /// + public static string DocumentEditor_PageSetup { + get { + return ResourceManager.GetString("DocumentEditor_PageSetup", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Pagination. + /// + public static string DocumentEditor_Pagination { + get { + return ResourceManager.GetString("DocumentEditor_Pagination", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Paper. + /// + public static string DocumentEditor_Paper { + get { + return ResourceManager.GetString("DocumentEditor_Paper", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Paragraph. + /// + public static string DocumentEditor_Paragraph { + get { + return ResourceManager.GetString("DocumentEditor_Paragraph", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Password. + /// + public static string DocumentEditor_Password { + get { + return ResourceManager.GetString("DocumentEditor_Password", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to The password don't match. + /// + public static string DocumentEditor_PasswordMismatch { + get { + return ResourceManager.GetString("DocumentEditor_PasswordMismatch", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Paste. + /// + public static string DocumentEditor_Paste { + get { + return ResourceManager.GetString("DocumentEditor_Paste", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Percent. + /// + public static string DocumentEditor_Percent { + get { + return ResourceManager.GetString("DocumentEditor_Percent", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Points. + /// + public static string DocumentEditor_Points { + get { + return ResourceManager.GetString("DocumentEditor_Points", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Portrait. + /// + public static string DocumentEditor_Portrait { + get { + return ResourceManager.GetString("DocumentEditor_Portrait", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Position. + /// + public static string DocumentEditor_Position { + get { + return ResourceManager.GetString("DocumentEditor_Position", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Post. + /// + public static string DocumentEditor_Post { + get { + return ResourceManager.GetString("DocumentEditor_Post", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Preferred width. + /// + public static string DocumentEditor_PreferredWidth { + get { + return ResourceManager.GetString("DocumentEditor_PreferredWidth", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Preview. + /// + public static string DocumentEditor_Preview { + get { + return ResourceManager.GetString("DocumentEditor_Preview", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Previous Changes. + /// + public static string DocumentEditor_PreviousChanges { + get { + return ResourceManager.GetString("DocumentEditor_PreviousChanges", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Previous Comment. + /// + public static string DocumentEditor_PreviousComment { + get { + return ResourceManager.GetString("DocumentEditor_PreviousComment", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Properties. + /// + public static string DocumentEditor_Properties { + get { + return ResourceManager.GetString("DocumentEditor_Properties", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to This document is protected from unintentional editing.You may edit in this region.. + /// + public static string DocumentEditor_ProtectedDocument { + get { + return ResourceManager.GetString("DocumentEditor_ProtectedDocument", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Read only. + /// + public static string DocumentEditor_ReadOnly { + get { + return ResourceManager.GetString("DocumentEditor_ReadOnly", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Reenter new password to confirm. + /// + public static string DocumentEditor_ReenterNewPasswordToConfirm { + get { + return ResourceManager.GetString("DocumentEditor_ReenterNewPasswordToConfirm", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Regular. + /// + public static string DocumentEditor_Regular { + get { + return ResourceManager.GetString("DocumentEditor_Regular", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Reject. + /// + public static string DocumentEditor_Reject { + get { + return ResourceManager.GetString("DocumentEditor_Reject", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Reject all. + /// + public static string DocumentEditor_RejectAll { + get { + return ResourceManager.GetString("DocumentEditor_RejectAll", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Reject Changes. + /// + public static string DocumentEditor_RejectChanges { + get { + return ResourceManager.GetString("DocumentEditor_RejectChanges", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to REMOVE. + /// + public static string DocumentEditor_REMOVE { + get { + return ResourceManager.GetString("DocumentEditor_REMOVE", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Remove Hyperlink. + /// + public static string DocumentEditor_RemoveHyperlink { + get { + return ResourceManager.GetString("DocumentEditor_RemoveHyperlink", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Reopen. + /// + public static string DocumentEditor_Reopen { + get { + return ResourceManager.GetString("DocumentEditor_Reopen", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Repeat as header row at the top of each page. + /// + public static string DocumentEditor_RepeatAsHeaderRowAtTheTopOfEachPage { + get { + return ResourceManager.GetString("DocumentEditor_RepeatAsHeaderRowAtTheTopOfEachPage", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Replace. + /// + public static string DocumentEditor_Replace { + get { + return ResourceManager.GetString("DocumentEditor_Replace", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Replace All. + /// + public static string DocumentEditor_ReplaceAll { + get { + return ResourceManager.GetString("DocumentEditor_ReplaceAll", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Replace with. + /// + public static string DocumentEditor_ReplaceWith { + get { + return ResourceManager.GetString("DocumentEditor_ReplaceWith", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Reply. + /// + public static string DocumentEditor_Reply { + get { + return ResourceManager.GetString("DocumentEditor_Reply", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Reset. + /// + public static string DocumentEditor_Reset { + get { + return ResourceManager.GetString("DocumentEditor_Reset", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Resolve. + /// + public static string DocumentEditor_Resolve { + get { + return ResourceManager.GetString("DocumentEditor_Resolve", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Restart At. + /// + public static string DocumentEditor_RestartAt { + get { + return ResourceManager.GetString("DocumentEditor_RestartAt", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Restart list after. + /// + public static string DocumentEditor_RestartListAfter { + get { + return ResourceManager.GetString("DocumentEditor_RestartListAfter", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Restrict Editing. + /// + public static string DocumentEditor_RestrictEditing { + get { + return ResourceManager.GetString("DocumentEditor_RestrictEditing", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Result. + /// + public static string DocumentEditor_Result { + get { + return ResourceManager.GetString("DocumentEditor_Result", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Results. + /// + public static string DocumentEditor_Results { + get { + return ResourceManager.GetString("DocumentEditor_Results", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Right. + /// + public static string DocumentEditor_Right { + get { + return ResourceManager.GetString("DocumentEditor_Right", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Right align page numbers. + /// + public static string DocumentEditor_RightAlignPageNumbers { + get { + return ResourceManager.GetString("DocumentEditor_RightAlignPageNumbers", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Right-to-left. + /// + public static string DocumentEditor_RightToLeft { + get { + return ResourceManager.GetString("DocumentEditor_RightToLeft", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Row. + /// + public static string DocumentEditor_Row { + get { + return ResourceManager.GetString("DocumentEditor_Row", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Row height is. + /// + public static string DocumentEditor_RowHeightIs { + get { + return ResourceManager.GetString("DocumentEditor_RowHeightIs", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Same as the whole table. + /// + public static string DocumentEditor_SameAsTheWholeTable { + get { + return ResourceManager.GetString("DocumentEditor_SameAsTheWholeTable", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Save. + /// + public static string DocumentEditor_Save { + get { + return ResourceManager.GetString("DocumentEditor_Save", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Search for. + /// + public static string DocumentEditor_SearchFor { + get { + return ResourceManager.GetString("DocumentEditor_SearchFor", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Select parts of the document and choose users who are allowed to freely edit them.. + /// + public static string DocumentEditor_SelectPartOfDocumentAndUser { + get { + return ResourceManager.GetString("DocumentEditor_SelectPartOfDocumentAndUser", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Setting. + /// + public static string DocumentEditor_Setting { + get { + return ResourceManager.GetString("DocumentEditor_Setting", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Shading. + /// + public static string DocumentEditor_Shading { + get { + return ResourceManager.GetString("DocumentEditor_Shading", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Show All Regions I Can Edit. + /// + public static string DocumentEditor_ShowAllRegionsICanEdit { + get { + return ResourceManager.GetString("DocumentEditor_ShowAllRegionsICanEdit", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Show levels. + /// + public static string DocumentEditor_ShowLevels { + get { + return ResourceManager.GetString("DocumentEditor_ShowLevels", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Show page numbers. + /// + public static string DocumentEditor_ShowPageNumbers { + get { + return ResourceManager.GetString("DocumentEditor_ShowPageNumbers", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Size. + /// + public static string DocumentEditor_Size { + get { + return ResourceManager.GetString("DocumentEditor_Size", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Space. + /// + public static string DocumentEditor_Space { + get { + return ResourceManager.GetString("DocumentEditor_Space", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Spacing. + /// + public static string DocumentEditor_Spacing { + get { + return ResourceManager.GetString("DocumentEditor_Spacing", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Special. + /// + public static string DocumentEditor_Special { + get { + return ResourceManager.GetString("DocumentEditor_Special", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Specify height. + /// + public static string DocumentEditor_SpecifyHeight { + get { + return ResourceManager.GetString("DocumentEditor_SpecifyHeight", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Spell Check. + /// + public static string DocumentEditor_SpellCheck { + get { + return ResourceManager.GetString("DocumentEditor_SpellCheck", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Spelling. + /// + public static string DocumentEditor_Spelling { + get { + return ResourceManager.GetString("DocumentEditor_Spelling", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Spelling Editor. + /// + public static string DocumentEditor_SpellingEditor { + get { + return ResourceManager.GetString("DocumentEditor_SpellingEditor", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Start at. + /// + public static string DocumentEditor_StartAt { + get { + return ResourceManager.GetString("DocumentEditor_StartAt", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Start Enforcing Protection. + /// + public static string DocumentEditor_StartEnforcingProtection { + get { + return ResourceManager.GetString("DocumentEditor_StartEnforcingProtection", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Statement. + /// + public static string DocumentEditor_Statement { + get { + return ResourceManager.GetString("DocumentEditor_Statement", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Stop Protection. + /// + public static string DocumentEditor_StopProtection { + get { + return ResourceManager.GetString("DocumentEditor_StopProtection", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Strikethrough. + /// + public static string DocumentEditor_Strikethrough { + get { + return ResourceManager.GetString("DocumentEditor_Strikethrough", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Style. + /// + public static string DocumentEditor_Style { + get { + return ResourceManager.GetString("DocumentEditor_Style", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Style based on. + /// + public static string DocumentEditor_StyleBasedOn { + get { + return ResourceManager.GetString("DocumentEditor_StyleBasedOn", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Style for following paragraph. + /// + public static string DocumentEditor_StyleForFollowingParagraph { + get { + return ResourceManager.GetString("DocumentEditor_StyleForFollowingParagraph", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Styles. + /// + public static string DocumentEditor_Styles { + get { + return ResourceManager.GetString("DocumentEditor_Styles", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Style type. + /// + public static string DocumentEditor_StyleType { + get { + return ResourceManager.GetString("DocumentEditor_StyleType", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Subscript. + /// + public static string DocumentEditor_Subscript { + get { + return ResourceManager.GetString("DocumentEditor_Subscript", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Suggestions. + /// + public static string DocumentEditor_Suggestions { + get { + return ResourceManager.GetString("DocumentEditor_Suggestions", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Superscript. + /// + public static string DocumentEditor_Superscript { + get { + return ResourceManager.GetString("DocumentEditor_Superscript", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Tab character. + /// + public static string DocumentEditor_TabCharacter { + get { + return ResourceManager.GetString("DocumentEditor_TabCharacter", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Table. + /// + public static string DocumentEditor_Table { + get { + return ResourceManager.GetString("DocumentEditor_Table", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Tab leader. + /// + public static string DocumentEditor_TabLeader { + get { + return ResourceManager.GetString("DocumentEditor_TabLeader", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Table direction. + /// + public static string DocumentEditor_TableDirection { + get { + return ResourceManager.GetString("DocumentEditor_TableDirection", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Table entry fields. + /// + public static string DocumentEditor_TableEntryFields { + get { + return ResourceManager.GetString("DocumentEditor_TableEntryFields", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Table of Contents. + /// + public static string DocumentEditor_TableOfContents { + get { + return ResourceManager.GetString("DocumentEditor_TableOfContents", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Table Options. + /// + public static string DocumentEditor_TableOptions { + get { + return ResourceManager.GetString("DocumentEditor_TableOptions", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Table Properties. + /// + public static string DocumentEditor_TableProperties { + get { + return ResourceManager.GetString("DocumentEditor_TableProperties", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Tabloid. + /// + public static string DocumentEditor_Tabloid { + get { + return ResourceManager.GetString("DocumentEditor_Tabloid", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Text format. + /// + public static string DocumentEditor_TextFormat { + get { + return ResourceManager.GetString("DocumentEditor_TextFormat", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Text Form Field. + /// + public static string DocumentEditor_TextFormField { + get { + return ResourceManager.GetString("DocumentEditor_TextFormField", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Text indent at. + /// + public static string DocumentEditor_TextIndentAt { + get { + return ResourceManager.GetString("DocumentEditor_TextIndentAt", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Text only. + /// + public static string DocumentEditor_TextOnly { + get { + return ResourceManager.GetString("DocumentEditor_TextOnly", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Text to display. + /// + public static string DocumentEditor_TextToDisplay { + get { + return ResourceManager.GetString("DocumentEditor_TextToDisplay", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to The password is incorrect. + /// + public static string DocumentEditor_ThePasswordIsIncorrect { + get { + return ResourceManager.GetString("DocumentEditor_ThePasswordIsIncorrect", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to TOC 1. + /// + public static string DocumentEditor_TOC1 { + get { + return ResourceManager.GetString("DocumentEditor_TOC1", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to TOC 2. + /// + public static string DocumentEditor_TOC2 { + get { + return ResourceManager.GetString("DocumentEditor_TOC2", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to TOC 3. + /// + public static string DocumentEditor_TOC3 { + get { + return ResourceManager.GetString("DocumentEditor_TOC3", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to TOC 4. + /// + public static string DocumentEditor_TOC4 { + get { + return ResourceManager.GetString("DocumentEditor_TOC4", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to TOC 5. + /// + public static string DocumentEditor_TOC5 { + get { + return ResourceManager.GetString("DocumentEditor_TOC5", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to TOC 6. + /// + public static string DocumentEditor_TOC6 { + get { + return ResourceManager.GetString("DocumentEditor_TOC6", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to TOC 7. + /// + public static string DocumentEditor_TOC7 { + get { + return ResourceManager.GetString("DocumentEditor_TOC7", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to TOC 8. + /// + public static string DocumentEditor_TOC8 { + get { + return ResourceManager.GetString("DocumentEditor_TOC8", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to TOC 9. + /// + public static string DocumentEditor_TOC9 { + get { + return ResourceManager.GetString("DocumentEditor_TOC9", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to TOC level. + /// + public static string DocumentEditor_TOCLevel { + get { + return ResourceManager.GetString("DocumentEditor_TOCLevel", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Tooltip. + /// + public static string DocumentEditor_Tooltip { + get { + return ResourceManager.GetString("DocumentEditor_Tooltip", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Top. + /// + public static string DocumentEditor_Top { + get { + return ResourceManager.GetString("DocumentEditor_Top", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Type. + /// + public static string DocumentEditor_Type { + get { + return ResourceManager.GetString("DocumentEditor_Type", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Type your comment. + /// + public static string DocumentEditor_TypeYourComment { + get { + return ResourceManager.GetString("DocumentEditor_TypeYourComment", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Type your comment here. + /// + public static string DocumentEditor_TypeYourCommentHere { + get { + return ResourceManager.GetString("DocumentEditor_TypeYourCommentHere", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Underline errors. + /// + public static string DocumentEditor_UnderlineErrors { + get { + return ResourceManager.GetString("DocumentEditor_UnderlineErrors", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Underline style. + /// + public static string DocumentEditor_UnderlineStyle { + get { + return ResourceManager.GetString("DocumentEditor_UnderlineStyle", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Un-posted comments. + /// + public static string DocumentEditor_UnPostedComments { + get { + return ResourceManager.GetString("DocumentEditor_UnPostedComments", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Unprotect Document. + /// + public static string DocumentEditor_UnprotectDocument { + get { + return ResourceManager.GetString("DocumentEditor_UnprotectDocument", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Cannot be tracked. + /// + public static string DocumentEditor_UnTrack { + get { + return ResourceManager.GetString("DocumentEditor_UnTrack", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Update Field. + /// + public static string DocumentEditor_UpdateField { + get { + return ResourceManager.GetString("DocumentEditor_UpdateField", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to UpLetter. + /// + public static string DocumentEditor_UpLetter { + get { + return ResourceManager.GetString("DocumentEditor_UpLetter", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to UpRoman. + /// + public static string DocumentEditor_UpRoman { + get { + return ResourceManager.GetString("DocumentEditor_UpRoman", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Use bookmarks. + /// + public static string DocumentEditor_UseBookmarks { + get { + return ResourceManager.GetString("DocumentEditor_UseBookmarks", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Use hyperlinks instead of page numbers. + /// + public static string DocumentEditor_UseHyperlinksInsteadOfPageNumbers { + get { + return ResourceManager.GetString("DocumentEditor_UseHyperlinksInsteadOfPageNumbers", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to User. + /// + public static string DocumentEditor_User { + get { + return ResourceManager.GetString("DocumentEditor_User", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Users. + /// + public static string DocumentEditor_Users { + get { + return ResourceManager.GetString("DocumentEditor_Users", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Vertical alignment. + /// + public static string DocumentEditor_VerticalAlignment { + get { + return ResourceManager.GetString("DocumentEditor_VerticalAlignment", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to View. + /// + public static string DocumentEditor_View { + get { + return ResourceManager.GetString("DocumentEditor_View", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to We replaced all. + /// + public static string DocumentEditor_WeReplacedAll { + get { + return ResourceManager.GetString("DocumentEditor_WeReplacedAll", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Whole words. + /// + public static string DocumentEditor_WholeWords { + get { + return ResourceManager.GetString("DocumentEditor_WholeWords", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Widow/Orphan control. + /// + public static string DocumentEditor_WidowControl { + get { + return ResourceManager.GetString("DocumentEditor_WidowControl", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Width. + /// + public static string DocumentEditor_Width { + get { + return ResourceManager.GetString("DocumentEditor_Width", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to with. + /// + public static string DocumentEditor_With { + get { + return ResourceManager.GetString("DocumentEditor_With", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to You may format text only with certain styles.. + /// + public static string DocumentEditor_YouMayFormatTextOnlyWithCertainStyles { + get { + return ResourceManager.GetString("DocumentEditor_YouMayFormatTextOnlyWithCertainStyles", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Your permissions. + /// + public static string DocumentEditor_YourPermissions { + get { + return ResourceManager.GetString("DocumentEditor_YourPermissions", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Add or edit the footer.. + /// + public static string DocumentEditorContainer_AddOrEditTheFooter { + get { + return ResourceManager.GetString("DocumentEditorContainer_AddOrEditTheFooter", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Add or edit the header.. + /// + public static string DocumentEditorContainer_AddOrEditTheHeader { + get { + return ResourceManager.GetString("DocumentEditorContainer_AddOrEditTheHeader", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Add page numbers.. + /// + public static string DocumentEditorContainer_AddPageNumbers { + get { + return ResourceManager.GetString("DocumentEditorContainer_AddPageNumbers", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Align bottom. + /// + public static string DocumentEditorContainer_AlignBottom { + get { + return ResourceManager.GetString("DocumentEditorContainer_AlignBottom", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Align center. + /// + public static string DocumentEditorContainer_AlignCenter { + get { + return ResourceManager.GetString("DocumentEditorContainer_AlignCenter", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Align left (Ctrl+L). + /// + public static string DocumentEditorContainer_AlignLeftTooltip { + get { + return ResourceManager.GetString("DocumentEditorContainer_AlignLeftTooltip", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Align right (Ctrl+R). + /// + public static string DocumentEditorContainer_AlignRightTooltip { + get { + return ResourceManager.GetString("DocumentEditorContainer_AlignRightTooltip", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Align Text. + /// + public static string DocumentEditorContainer_AlignText { + get { + return ResourceManager.GetString("DocumentEditorContainer_AlignText", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Align top. + /// + public static string DocumentEditorContainer_Aligntop { + get { + return ResourceManager.GetString("DocumentEditorContainer_Aligntop", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to All borders. + /// + public static string DocumentEditorContainer_AllBorders { + get { + return ResourceManager.GetString("DocumentEditorContainer_AllBorders", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to AllCaps. + /// + public static string DocumentEditorContainer_AllCaps { + get { + return ResourceManager.GetString("DocumentEditorContainer_AllCaps", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Aspect ratio. + /// + public static string DocumentEditorContainer_AspectRatio { + get { + return ResourceManager.GetString("DocumentEditorContainer_AspectRatio", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Bold (Ctrl+B). + /// + public static string DocumentEditorContainer_BoldTooltip { + get { + return ResourceManager.GetString("DocumentEditorContainer_BoldTooltip", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Bookmark. + /// + public static string DocumentEditorContainer_Bookmark { + get { + return ResourceManager.GetString("DocumentEditorContainer_Bookmark", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Border color. + /// + public static string DocumentEditorContainer_BorderColor { + get { + return ResourceManager.GetString("DocumentEditorContainer_BorderColor", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Border Style. + /// + public static string DocumentEditorContainer_BorderStyle { + get { + return ResourceManager.GetString("DocumentEditorContainer_BorderStyle", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Border width. + /// + public static string DocumentEditorContainer_BorderWidth { + get { + return ResourceManager.GetString("DocumentEditorContainer_BorderWidth", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Bottom. + /// + public static string DocumentEditorContainer_Bottom { + get { + return ResourceManager.GetString("DocumentEditorContainer_Bottom", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Bottom border. + /// + public static string DocumentEditorContainer_BottomBorder { + get { + return ResourceManager.GetString("DocumentEditorContainer_BottomBorder", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Break. + /// + public static string DocumentEditorContainer_Break { + get { + return ResourceManager.GetString("DocumentEditorContainer_Break", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Bullets. + /// + public static string DocumentEditorContainer_Bullets { + get { + return ResourceManager.GetString("DocumentEditorContainer_Bullets", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to By URL. + /// + public static string DocumentEditorContainer_ByURL { + get { + return ResourceManager.GetString("DocumentEditorContainer_ByURL", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Cancel. + /// + public static string DocumentEditorContainer_Cancel { + get { + return ResourceManager.GetString("DocumentEditorContainer_Cancel", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Cell. + /// + public static string DocumentEditorContainer_Cell { + get { + return ResourceManager.GetString("DocumentEditorContainer_Cell", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Cell Margin. + /// + public static string DocumentEditorContainer_CellMargin { + get { + return ResourceManager.GetString("DocumentEditorContainer_CellMargin", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Center (Ctrl+E). + /// + public static string DocumentEditorContainer_CenterTooltip { + get { + return ResourceManager.GetString("DocumentEditorContainer_CenterTooltip", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Check Box. + /// + public static string DocumentEditorContainer_CheckBox { + get { + return ResourceManager.GetString("DocumentEditorContainer_CheckBox", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Clear all formatting. + /// + public static string DocumentEditorContainer_ClearAllFormatting { + get { + return ResourceManager.GetString("DocumentEditorContainer_ClearAllFormatting", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Comments. + /// + public static string DocumentEditorContainer_Comments { + get { + return ResourceManager.GetString("DocumentEditorContainer_Comments", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Create a new document.. + /// + public static string DocumentEditorContainer_CreateANewDocument { + get { + return ResourceManager.GetString("DocumentEditorContainer_CreateANewDocument", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Create a link in your document for quick access to web pages and files (Ctrl+K).. + /// + public static string DocumentEditorContainer_CreateHyperlink { + get { + return ResourceManager.GetString("DocumentEditorContainer_CreateHyperlink", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to The current page number in the document. Click or tap to navigate specific page.. + /// + public static string DocumentEditorContainer_CurrentPageNumber { + get { + return ResourceManager.GetString("DocumentEditorContainer_CurrentPageNumber", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Decrease indent. + /// + public static string DocumentEditorContainer_DecreaseIndent { + get { + return ResourceManager.GetString("DocumentEditorContainer_DecreaseIndent", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Delete columns. + /// + public static string DocumentEditorContainer_DeleteColumns { + get { + return ResourceManager.GetString("DocumentEditorContainer_DeleteColumns", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Delete rows. + /// + public static string DocumentEditorContainer_DeleteRows { + get { + return ResourceManager.GetString("DocumentEditorContainer_DeleteRows", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Different First Page. + /// + public static string DocumentEditorContainer_DifferentFirstPage { + get { + return ResourceManager.GetString("DocumentEditorContainer_DifferentFirstPage", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Different header and footer for first page.. + /// + public static string DocumentEditorContainer_DifferentHeaderAndFooterForFirstPage { + get { + return ResourceManager.GetString("DocumentEditorContainer_DifferentHeaderAndFooterForFirstPage", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Different header and footer for odd and even pages.. + /// + public static string DocumentEditorContainer_DifferentHeaderAndFooterForOddAndEvenPages { + get { + return ResourceManager.GetString("DocumentEditorContainer_DifferentHeaderAndFooterForOddAndEvenPages", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Different Odd and Even Pages. + /// + public static string DocumentEditorContainer_DifferentOddAndEvenPages { + get { + return ResourceManager.GetString("DocumentEditorContainer_DifferentOddAndEvenPages", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Distance from bottom of the page to bottom of the footer.. + /// + public static string DocumentEditorContainer_DistanceFromBottomOfThePageToBottomOfTheFooter { + get { + return ResourceManager.GetString("DocumentEditorContainer_DistanceFromBottomOfThePageToBottomOfTheFooter", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Distance from top of the page to top of the header.. + /// + public static string DocumentEditorContainer_DistanceFromTopOfThePageToTopOfTheHeader { + get { + return ResourceManager.GetString("DocumentEditorContainer_DistanceFromTopOfThePageToTopOfTheHeader", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Double. + /// + public static string DocumentEditorContainer_Double { + get { + return ResourceManager.GetString("DocumentEditorContainer_Double", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Drop-Down. + /// + public static string DocumentEditorContainer_DropDown { + get { + return ResourceManager.GetString("DocumentEditorContainer_DropDown", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Insert Endnote (Alt+Ctrl+D).. + /// + public static string DocumentEditorContainer_Endnote_Tooltip { + get { + return ResourceManager.GetString("DocumentEditorContainer_Endnote_Tooltip", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Error in establishing connection with web server. + /// + public static string DocumentEditorContainer_ErrorInEstablishingConnectionWithWebServer { + get { + return ResourceManager.GetString("DocumentEditorContainer_ErrorInEstablishingConnectionWithWebServer", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Fill. + /// + public static string DocumentEditorContainer_Fill { + get { + return ResourceManager.GetString("DocumentEditorContainer_Fill", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Fill color. + /// + public static string DocumentEditorContainer_FillColor { + get { + return ResourceManager.GetString("DocumentEditorContainer_FillColor", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Find. + /// + public static string DocumentEditorContainer_Find { + get { + return ResourceManager.GetString("DocumentEditorContainer_Find", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Find text in the document (Ctrl+F).. + /// + public static string DocumentEditorContainer_FindText { + get { + return ResourceManager.GetString("DocumentEditorContainer_FindText", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Fit one page. + /// + public static string DocumentEditorContainer_FitOnePage { + get { + return ResourceManager.GetString("DocumentEditorContainer_FitOnePage", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Fit page width. + /// + public static string DocumentEditorContainer_FitPageWidth { + get { + return ResourceManager.GetString("DocumentEditorContainer_FitPageWidth", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Font. + /// + public static string DocumentEditorContainer_Font { + get { + return ResourceManager.GetString("DocumentEditorContainer_Font", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Font color. + /// + public static string DocumentEditorContainer_FontColor { + get { + return ResourceManager.GetString("DocumentEditorContainer_FontColor", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Font Size. + /// + public static string DocumentEditorContainer_FontSize { + get { + return ResourceManager.GetString("DocumentEditorContainer_FontSize", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Footer. + /// + public static string DocumentEditorContainer_Footer { + get { + return ResourceManager.GetString("DocumentEditorContainer_Footer", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Footer from Bottom. + /// + public static string DocumentEditorContainer_FooterFromBottom { + get { + return ResourceManager.GetString("DocumentEditorContainer_FooterFromBottom", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Insert Footnote (Alt+Ctrl+F).. + /// + public static string DocumentEditorContainer_Footnote_Tooltip { + get { + return ResourceManager.GetString("DocumentEditorContainer_Footnote_Tooltip", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Form Fields. + /// + public static string DocumentEditorContainer_FormFields { + get { + return ResourceManager.GetString("DocumentEditorContainer_FormFields", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to H. + /// + public static string DocumentEditorContainer_H { + get { + return ResourceManager.GetString("DocumentEditorContainer_H", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Header. + /// + public static string DocumentEditorContainer_Header { + get { + return ResourceManager.GetString("DocumentEditorContainer_Header", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Header and Footer. + /// + public static string DocumentEditorContainer_HeaderAndFooter { + get { + return ResourceManager.GetString("DocumentEditorContainer_HeaderAndFooter", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Header from Top. + /// + public static string DocumentEditorContainer_HeaderFromTop { + get { + return ResourceManager.GetString("DocumentEditorContainer_HeaderFromTop", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to HEADING - - - - 1. + /// + public static string DocumentEditorContainer_HEADING1 { + get { + return ResourceManager.GetString("DocumentEditorContainer_HEADING1", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to HEADING - - - - 2. + /// + public static string DocumentEditorContainer_HEADING2 { + get { + return ResourceManager.GetString("DocumentEditorContainer_HEADING2", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to HEADING - - - - 3. + /// + public static string DocumentEditorContainer_HEADING3 { + get { + return ResourceManager.GetString("DocumentEditorContainer_HEADING3", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Height. + /// + public static string DocumentEditorContainer_Height { + get { + return ResourceManager.GetString("DocumentEditorContainer_Height", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Image. + /// + public static string DocumentEditorContainer_Image { + get { + return ResourceManager.GetString("DocumentEditorContainer_Image", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Increase indent. + /// + public static string DocumentEditorContainer_IncreaseIndent { + get { + return ResourceManager.GetString("DocumentEditorContainer_IncreaseIndent", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Information. + /// + public static string DocumentEditorContainer_Information { + get { + return ResourceManager.GetString("DocumentEditorContainer_Information", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Insert. + /// + public static string DocumentEditorContainer_Insert { + get { + return ResourceManager.GetString("DocumentEditorContainer_Insert", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Insert Endnote. + /// + public static string DocumentEditorContainer_Insert_Endnote { + get { + return ResourceManager.GetString("DocumentEditorContainer_Insert_Endnote", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Insert Footnote. + /// + public static string DocumentEditorContainer_Insert_Footnote { + get { + return ResourceManager.GetString("DocumentEditorContainer_Insert_Footnote", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Insert a bookmark in a specific place in this document.. + /// + public static string DocumentEditorContainer_InsertABookmarkInASpecificPlaceInThisDocument { + get { + return ResourceManager.GetString("DocumentEditorContainer_InsertABookmarkInASpecificPlaceInThisDocument", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Insert a table into the document. + /// + public static string DocumentEditorContainer_InsertATableIntoTheDocument { + get { + return ResourceManager.GetString("DocumentEditorContainer_InsertATableIntoTheDocument", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Insert columns to the left. + /// + public static string DocumentEditorContainer_InsertColumnsToTheLeft { + get { + return ResourceManager.GetString("DocumentEditorContainer_InsertColumnsToTheLeft", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Insert columns to the right. + /// + public static string DocumentEditorContainer_InsertColumnsToTheRight { + get { + return ResourceManager.GetString("DocumentEditorContainer_InsertColumnsToTheRight", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Insert inline picture from a file.. + /// + public static string DocumentEditorContainer_InsertInlinePictureFromAFile { + get { + return ResourceManager.GetString("DocumentEditorContainer_InsertInlinePictureFromAFile", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Insert / Delete. + /// + public static string DocumentEditorContainer_InsertOrDelete { + get { + return ResourceManager.GetString("DocumentEditorContainer_InsertOrDelete", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Insert rows above. + /// + public static string DocumentEditorContainer_InsertRowsAbove { + get { + return ResourceManager.GetString("DocumentEditorContainer_InsertRowsAbove", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Insert rows below. + /// + public static string DocumentEditorContainer_InsertRowsBelow { + get { + return ResourceManager.GetString("DocumentEditorContainer_InsertRowsBelow", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Inside borders. + /// + public static string DocumentEditorContainer_InsideBorders { + get { + return ResourceManager.GetString("DocumentEditorContainer_InsideBorders", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Inside horizontal border. + /// + public static string DocumentEditorContainer_InsideHorizontalBorder { + get { + return ResourceManager.GetString("DocumentEditorContainer_InsideHorizontalBorder", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Inside vertical border. + /// + public static string DocumentEditorContainer_InsideVerticalBorder { + get { + return ResourceManager.GetString("DocumentEditorContainer_InsideVerticalBorder", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Italic (Ctrl+I). + /// + public static string DocumentEditorContainer_ItalicTooltip { + get { + return ResourceManager.GetString("DocumentEditorContainer_ItalicTooltip", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Justify (Ctrl+J). + /// + public static string DocumentEditorContainer_JustifyTooltip { + get { + return ResourceManager.GetString("DocumentEditorContainer_JustifyTooltip", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Left. + /// + public static string DocumentEditorContainer_Left { + get { + return ResourceManager.GetString("DocumentEditorContainer_Left", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Left border. + /// + public static string DocumentEditorContainer_LeftBorder { + get { + return ResourceManager.GetString("DocumentEditorContainer_LeftBorder", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Levels. + /// + public static string DocumentEditorContainer_Levels { + get { + return ResourceManager.GetString("DocumentEditorContainer_Levels", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Line spacing. + /// + public static string DocumentEditorContainer_LineSpacing { + get { + return ResourceManager.GetString("DocumentEditorContainer_LineSpacing", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Link. + /// + public static string DocumentEditorContainer_Link { + get { + return ResourceManager.GetString("DocumentEditorContainer_Link", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Local Clipboard. + /// + public static string DocumentEditorContainer_LocalClipboard { + get { + return ResourceManager.GetString("DocumentEditorContainer_LocalClipboard", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Manage Styles. + /// + public static string DocumentEditorContainer_ManageStyles { + get { + return ResourceManager.GetString("DocumentEditorContainer_ManageStyles", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Merge cells. + /// + public static string DocumentEditorContainer_MergeCells { + get { + return ResourceManager.GetString("DocumentEditorContainer_MergeCells", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to New. + /// + public static string DocumentEditorContainer_New { + get { + return ResourceManager.GetString("DocumentEditorContainer_New", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to New comment. + /// + public static string DocumentEditorContainer_NewComment { + get { + return ResourceManager.GetString("DocumentEditorContainer_NewComment", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to No Border. + /// + public static string DocumentEditorContainer_NoBorder { + get { + return ResourceManager.GetString("DocumentEditorContainer_NoBorder", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Numbering. + /// + public static string DocumentEditorContainer_Numbering { + get { + return ResourceManager.GetString("DocumentEditorContainer_Numbering", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Number of heading or outline levels to be shown in table of contents.. + /// + public static string DocumentEditorContainer_NumberOfHeadingOrOutlineLevelsToBeShownInTableOfContents { + get { + return ResourceManager.GetString("DocumentEditorContainer_NumberOfHeadingOrOutlineLevelsToBeShownInTableOfContents", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to of. + /// + public static string DocumentEditorContainer_Of { + get { + return ResourceManager.GetString("DocumentEditorContainer_Of", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Open. + /// + public static string DocumentEditorContainer_Open { + get { + return ResourceManager.GetString("DocumentEditorContainer_Open", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Open a document.. + /// + public static string DocumentEditorContainer_OpenADocument { + get { + return ResourceManager.GetString("DocumentEditorContainer_OpenADocument", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Open the page setup dialog.. + /// + public static string DocumentEditorContainer_OpenThePageSetupDialog { + get { + return ResourceManager.GetString("DocumentEditorContainer_OpenThePageSetupDialog", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Options. + /// + public static string DocumentEditorContainer_Options { + get { + return ResourceManager.GetString("DocumentEditorContainer_Options", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Outside borders. + /// + public static string DocumentEditorContainer_OutsideBorders { + get { + return ResourceManager.GetString("DocumentEditorContainer_OutsideBorders", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Page. + /// + public static string DocumentEditorContainer_Page { + get { + return ResourceManager.GetString("DocumentEditorContainer_Page", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Page Break. + /// + public static string DocumentEditorContainer_PageBreak { + get { + return ResourceManager.GetString("DocumentEditorContainer_PageBreak", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Page Number. + /// + public static string DocumentEditorContainer_PageNumber { + get { + return ResourceManager.GetString("DocumentEditorContainer_PageNumber", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Page Setup. + /// + public static string DocumentEditorContainer_PageSetup { + get { + return ResourceManager.GetString("DocumentEditorContainer_PageSetup", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Paragraph. + /// + public static string DocumentEditorContainer_Paragraph { + get { + return ResourceManager.GetString("DocumentEditorContainer_Paragraph", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Position. + /// + public static string DocumentEditorContainer_Position { + get { + return ResourceManager.GetString("DocumentEditorContainer_Position", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Print layout. + /// + public static string DocumentEditorContainer_PrintLayout { + get { + return ResourceManager.GetString("DocumentEditorContainer_PrintLayout", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Protections. + /// + public static string DocumentEditorContainer_Protections { + get { + return ResourceManager.GetString("DocumentEditorContainer_Protections", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Provide an overview of your document by adding a table of contents.. + /// + public static string DocumentEditorContainer_ProvideAnOverviewOfYourDocumentByAddingATableOfContents { + get { + return ResourceManager.GetString("DocumentEditorContainer_ProvideAnOverviewOfYourDocumentByAddingATableOfContents", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Read only. + /// + public static string DocumentEditorContainer_ReadOnly { + get { + return ResourceManager.GetString("DocumentEditorContainer_ReadOnly", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Redo. + /// + public static string DocumentEditorContainer_Redo { + get { + return ResourceManager.GetString("DocumentEditorContainer_Redo", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Redo the last operation (Ctrl+Y).. + /// + public static string DocumentEditorContainer_RedoTooltip { + get { + return ResourceManager.GetString("DocumentEditorContainer_RedoTooltip", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Restrict Editing. + /// + public static string DocumentEditorContainer_RestrictEditing { + get { + return ResourceManager.GetString("DocumentEditorContainer_RestrictEditing", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Right. + /// + public static string DocumentEditorContainer_Right { + get { + return ResourceManager.GetString("DocumentEditorContainer_Right", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Right align page numbers. + /// + public static string DocumentEditorContainer_RightAlignPageNumbers { + get { + return ResourceManager.GetString("DocumentEditorContainer_RightAlignPageNumbers", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Right align page numbers in table of contents.. + /// + public static string DocumentEditorContainer_RightAlignPageNumbersInTableOfContents { + get { + return ResourceManager.GetString("DocumentEditorContainer_RightAlignPageNumbersInTableOfContents", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Right border. + /// + public static string DocumentEditorContainer_RightBorder { + get { + return ResourceManager.GetString("DocumentEditorContainer_RightBorder", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Section Break. + /// + public static string DocumentEditorContainer_SectionBreak { + get { + return ResourceManager.GetString("DocumentEditorContainer_SectionBreak", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Insert Comments. + /// + public static string DocumentEditorContainer_ShowComments { + get { + return ResourceManager.GetString("DocumentEditorContainer_ShowComments", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Show page numbers. + /// + public static string DocumentEditorContainer_ShowPageNumbers { + get { + return ResourceManager.GetString("DocumentEditorContainer_ShowPageNumbers", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Show page numbers in table of contents.. + /// + public static string DocumentEditorContainer_ShowPageNumbersInTableOfContents { + get { + return ResourceManager.GetString("DocumentEditorContainer_ShowPageNumbersInTableOfContents", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Single. + /// + public static string DocumentEditorContainer_Single { + get { + return ResourceManager.GetString("DocumentEditorContainer_Single", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Spell Check. + /// + public static string DocumentEditorContainer_SpellCheck { + get { + return ResourceManager.GetString("DocumentEditorContainer_SpellCheck", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Strikethrough. + /// + public static string DocumentEditorContainer_Strikethrough { + get { + return ResourceManager.GetString("DocumentEditorContainer_Strikethrough", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Styles. + /// + public static string DocumentEditorContainer_Styles { + get { + return ResourceManager.GetString("DocumentEditorContainer_Styles", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Subscript (Ctrl+=). + /// + public static string DocumentEditorContainer_SubscriptTooltip { + get { + return ResourceManager.GetString("DocumentEditorContainer_SubscriptTooltip", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Superscript (Ctrl+Shift++). + /// + public static string DocumentEditorContainer_SuperscriptTooltip { + get { + return ResourceManager.GetString("DocumentEditorContainer_SuperscriptTooltip", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Table. + /// + public static string DocumentEditorContainer_Table { + get { + return ResourceManager.GetString("DocumentEditorContainer_Table", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Table of Contents. + /// + public static string DocumentEditorContainer_TableOfContents { + get { + return ResourceManager.GetString("DocumentEditorContainer_TableOfContents", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Text. + /// + public static string DocumentEditorContainer_Text { + get { + return ResourceManager.GetString("DocumentEditorContainer_Text", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Text Form. + /// + public static string DocumentEditorContainer_TextForm { + get { + return ResourceManager.GetString("DocumentEditorContainer_TextForm", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Text highlight color. + /// + public static string DocumentEditorContainer_TextHighlightColor { + get { + return ResourceManager.GetString("DocumentEditorContainer_TextHighlightColor", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Toggle between the internal clipboard and system clipboard. Access to system clipboard through script is denied due to browsers security policy. Instead, ///1. You can enable internal clipboard to cut, copy and paste within the component. ///2. You can use the keyboard shortcuts (Ctrl+X, Ctrl+C and Ctrl+V) to cut, copy and paste with system clipboard.. + /// + public static string DocumentEditorContainer_ToggleBetweenTheInternalClipboardAndSystemClipboard { + get { + return ResourceManager.GetString("DocumentEditorContainer_ToggleBetweenTheInternalClipboardAndSystemClipboard", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Top. + /// + public static string DocumentEditorContainer_Top { + get { + return ResourceManager.GetString("DocumentEditorContainer_Top", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Top border. + /// + public static string DocumentEditorContainer_TopBorder { + get { + return ResourceManager.GetString("DocumentEditorContainer_TopBorder", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Keep track of the changes made in the document. + /// + public static string DocumentEditorContainer_Track_changes { + get { + return ResourceManager.GetString("DocumentEditorContainer_Track_changes", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Track Changes. + /// + public static string DocumentEditorContainer_TrackChanges { + get { + return ResourceManager.GetString("DocumentEditorContainer_TrackChanges", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Underline errors. + /// + public static string DocumentEditorContainer_UnderlineErrors { + get { + return ResourceManager.GetString("DocumentEditorContainer_UnderlineErrors", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Underline (Ctrl+U). + /// + public static string DocumentEditorContainer_UnderlineTooltip { + get { + return ResourceManager.GetString("DocumentEditorContainer_UnderlineTooltip", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Undo. + /// + public static string DocumentEditorContainer_Undo { + get { + return ResourceManager.GetString("DocumentEditorContainer_Undo", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Undo the last operation (Ctrl+Z).. + /// + public static string DocumentEditorContainer_UndoTooltip { + get { + return ResourceManager.GetString("DocumentEditorContainer_UndoTooltip", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Update. + /// + public static string DocumentEditorContainer_Update { + get { + return ResourceManager.GetString("DocumentEditorContainer_Update", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Update cross reference fields. + /// + public static string DocumentEditorContainer_UpdateCrossReferenceFields { + get { + return ResourceManager.GetString("DocumentEditorContainer_UpdateCrossReferenceFields", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Update Fields. + /// + public static string DocumentEditorContainer_UpdateFields { + get { + return ResourceManager.GetString("DocumentEditorContainer_UpdateFields", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Upload from computer. + /// + public static string DocumentEditorContainer_UploadFromComputer { + get { + return ResourceManager.GetString("DocumentEditorContainer_UploadFromComputer", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Use hyperlinks. + /// + public static string DocumentEditorContainer_UseHyperlinks { + get { + return ResourceManager.GetString("DocumentEditorContainer_UseHyperlinks", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Use hyperlinks instead of page numbers.. + /// + public static string DocumentEditorContainer_UseHyperlinksInsteadOfPageNumbers { + get { + return ResourceManager.GetString("DocumentEditorContainer_UseHyperlinksInsteadOfPageNumbers", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to W. + /// + public static string DocumentEditorContainer_W { + get { + return ResourceManager.GetString("DocumentEditorContainer_W", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Web layout. + /// + public static string DocumentEditorContainer_WebLayout { + get { + return ResourceManager.GetString("DocumentEditorContainer_WebLayout", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Width. + /// + public static string DocumentEditorContainer_Width { + get { + return ResourceManager.GetString("DocumentEditorContainer_Width", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Zoom Level. + /// + public static string DocumentEditorContainer_ZoomLevel { + get { + return ResourceManager.GetString("DocumentEditorContainer_ZoomLevel", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Request failed. + /// + public static string DropDownList_ActionFailureTemplate { + get { + return ResourceManager.GetString("DropDownList_ActionFailureTemplate", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to No records found. + /// + public static string DropDownList_NoRecordsTemplate { + get { + return ResourceManager.GetString("DropDownList_NoRecordsTemplate", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Access Denied. + /// + public static string FileManager_AccessDenied { + get { + return ResourceManager.GetString("FileManager_AccessDenied", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to You don't have permission to access this folder.. + /// + public static string FileManager_AccessDetails { + get { + return ResourceManager.GetString("FileManager_AccessDetails", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to {0} is not accessible. you need permission to perform the {1} action.. + /// + public static string FileManager_AccessMessage { + get { + return ResourceManager.GetString("FileManager_AccessMessage", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Do this for all current items. + /// + public static string FileManager_ApplyAllLabel { + get { + return ResourceManager.GetString("FileManager_ApplyAllLabel", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Ascending. + /// + public static string FileManager_Ascending { + get { + return ResourceManager.GetString("FileManager_Ascending", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Cancel. + /// + public static string FileManager_ButtonCancel { + get { + return ResourceManager.GetString("FileManager_ButtonCancel", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Create. + /// + public static string FileManager_ButtonCreate { + get { + return ResourceManager.GetString("FileManager_ButtonCreate", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Keep both. + /// + public static string FileManager_ButtonKeepBoth { + get { + return ResourceManager.GetString("FileManager_ButtonKeepBoth", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to No. + /// + public static string FileManager_ButtonNo { + get { + return ResourceManager.GetString("FileManager_ButtonNo", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to OK. + /// + public static string FileManager_ButtonOk { + get { + return ResourceManager.GetString("FileManager_ButtonOk", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Replace. + /// + public static string FileManager_ButtonReplace { + get { + return ResourceManager.GetString("FileManager_ButtonReplace", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Save. + /// + public static string FileManager_ButtonSave { + get { + return ResourceManager.GetString("FileManager_ButtonSave", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Skip. + /// + public static string FileManager_ButtonSkip { + get { + return ResourceManager.GetString("FileManager_ButtonSkip", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Yes. + /// + public static string FileManager_ButtonYes { + get { + return ResourceManager.GetString("FileManager_ButtonYes", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Are you sure you want to delete this file?. + /// + public static string FileManager_ContentDelete { + get { + return ResourceManager.GetString("FileManager_ContentDelete", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to {0} already exists. Do you want to rename and paste?. + /// + public static string FileManager_ContentDuplicate { + get { + return ResourceManager.GetString("FileManager_ContentDuplicate", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Are you sure you want to delete this folder?. + /// + public static string FileManager_ContentFolderDelete { + get { + return ResourceManager.GetString("FileManager_ContentFolderDelete", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Are you sure you want to delete these {0} items?. + /// + public static string FileManager_ContentMultipleDelete { + get { + return ResourceManager.GetString("FileManager_ContentMultipleDelete", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Enter your folder name. + /// + public static string FileManager_ContentNewFolder { + get { + return ResourceManager.GetString("FileManager_ContentNewFolder", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Enter your new name. + /// + public static string FileManager_ContentRename { + get { + return ResourceManager.GetString("FileManager_ContentRename", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to If you change a file name extension, the file might become unstable. Are you sure you want to change it?. + /// + public static string FileManager_ContentRenameConfirmation { + get { + return ResourceManager.GetString("FileManager_ContentRenameConfirmation", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to A file with this name already exists in this folder. What would you like to do?. + /// + public static string FileManager_ContentRetry { + get { + return ResourceManager.GetString("FileManager_ContentRetry", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Copy. + /// + public static string FileManager_Copy { + get { + return ResourceManager.GetString("FileManager_Copy", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Created. + /// + public static string FileManager_Created { + get { + return ResourceManager.GetString("FileManager_Created", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Cut. + /// + public static string FileManager_Cut { + get { + return ResourceManager.GetString("FileManager_Cut", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Date created. + /// + public static string FileManager_DateCreated { + get { + return ResourceManager.GetString("FileManager_DateCreated", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Modified. + /// + public static string FileManager_DateModified { + get { + return ResourceManager.GetString("FileManager_DateModified", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Delete. + /// + public static string FileManager_Delete { + get { + return ResourceManager.GetString("FileManager_Delete", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Descending. + /// + public static string FileManager_Descending { + get { + return ResourceManager.GetString("FileManager_Descending", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Details. + /// + public static string FileManager_Details { + get { + return ResourceManager.GetString("FileManager_Details", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Download. + /// + public static string FileManager_Download { + get { + return ResourceManager.GetString("FileManager_Download", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Error. + /// + public static string FileManager_Error { + get { + return ResourceManager.GetString("FileManager_Error", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Drag files here to upload. + /// + public static string FileManager_FileUpload { + get { + return ResourceManager.GetString("FileManager_FileUpload", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to No results found. + /// + public static string FileManager_FilterEmpty { + get { + return ResourceManager.GetString("FileManager_FilterEmpty", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Try with different filter. + /// + public static string FileManager_FilterKey { + get { + return ResourceManager.GetString("FileManager_FilterKey", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to This folder is empty. + /// + public static string FileManager_FolderEmpty { + get { + return ResourceManager.GetString("FileManager_FolderEmpty", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Delete File. + /// + public static string FileManager_HeaderDelete { + get { + return ResourceManager.GetString("FileManager_HeaderDelete", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to File/Folder exists. + /// + public static string FileManager_HeaderDuplicate { + get { + return ResourceManager.GetString("FileManager_HeaderDuplicate", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Delete Folder. + /// + public static string FileManager_HeaderFolderDelete { + get { + return ResourceManager.GetString("FileManager_HeaderFolderDelete", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Delete Multiple Items. + /// + public static string FileManager_HeaderMultipleDelete { + get { + return ResourceManager.GetString("FileManager_HeaderMultipleDelete", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Folder. + /// + public static string FileManager_HeaderNewFolder { + get { + return ResourceManager.GetString("FileManager_HeaderNewFolder", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Rename. + /// + public static string FileManager_HeaderRename { + get { + return ResourceManager.GetString("FileManager_HeaderRename", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Rename Confirmation. + /// + public static string FileManager_HeaderRenameConfirmation { + get { + return ResourceManager.GetString("FileManager_HeaderRenameConfirmation", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to File Already Exists. + /// + public static string FileManager_HeaderRetry { + get { + return ResourceManager.GetString("FileManager_HeaderRetry", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Upload Files. + /// + public static string FileManager_HeaderUpload { + get { + return ResourceManager.GetString("FileManager_HeaderUpload", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to item selected. + /// + public static string FileManager_ItemSelection { + get { + return ResourceManager.GetString("FileManager_ItemSelection", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to items selected. + /// + public static string FileManager_ItemsSelection { + get { + return ResourceManager.GetString("FileManager_ItemsSelection", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to KB. + /// + public static string FileManager_KB { + get { + return ResourceManager.GetString("FileManager_KB", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Location. + /// + public static string FileManager_Location { + get { + return ResourceManager.GetString("FileManager_Location", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Modified. + /// + public static string FileManager_Modified { + get { + return ResourceManager.GetString("FileManager_Modified", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Name. + /// + public static string FileManager_Name { + get { + return ResourceManager.GetString("FileManager_Name", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to NetworkError: Failed to send on XMLHTTPRequest: Failed to load. + /// + public static string FileManager_NetworkError { + get { + return ResourceManager.GetString("FileManager_NetworkError", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to New folder. + /// + public static string FileManager_NewFolder { + get { + return ResourceManager.GetString("FileManager_NewFolder", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to None. + /// + public static string FileManager_None { + get { + return ResourceManager.GetString("FileManager_None", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Open. + /// + public static string FileManager_Open { + get { + return ResourceManager.GetString("FileManager_Open", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Paste. + /// + public static string FileManager_Paste { + get { + return ResourceManager.GetString("FileManager_Paste", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Path. + /// + public static string FileManager_Path { + get { + return ResourceManager.GetString("FileManager_Path", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Permission. + /// + public static string FileManager_Permission { + get { + return ResourceManager.GetString("FileManager_Permission", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Refresh. + /// + public static string FileManager_Refresh { + get { + return ResourceManager.GetString("FileManager_Refresh", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Rename. + /// + public static string FileManager_Rename { + get { + return ResourceManager.GetString("FileManager_Rename", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Search. + /// + public static string FileManager_Search { + get { + return ResourceManager.GetString("FileManager_Search", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to No results found. + /// + public static string FileManager_SearchEmpty { + get { + return ResourceManager.GetString("FileManager_SearchEmpty", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Try with different keywords. + /// + public static string FileManager_SearchKey { + get { + return ResourceManager.GetString("FileManager_SearchKey", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Select all. + /// + public static string FileManager_SelectAll { + get { + return ResourceManager.GetString("FileManager_SelectAll", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to ServerError: Invalid response from. + /// + public static string FileManager_ServerError { + get { + return ResourceManager.GetString("FileManager_ServerError", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Size. + /// + public static string FileManager_Size { + get { + return ResourceManager.GetString("FileManager_Size", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Sort by. + /// + public static string FileManager_SortBy { + get { + return ResourceManager.GetString("FileManager_SortBy", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to The destination folder is the subfolder of the source folder.. + /// + public static string FileManager_SubFolderError { + get { + return ResourceManager.GetString("FileManager_SubFolderError", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Copy. + /// + public static string FileManager_TooltipCopy { + get { + return ResourceManager.GetString("FileManager_TooltipCopy", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Cut. + /// + public static string FileManager_TooltipCut { + get { + return ResourceManager.GetString("FileManager_TooltipCut", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Delete. + /// + public static string FileManager_TooltipDelete { + get { + return ResourceManager.GetString("FileManager_TooltipDelete", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Details. + /// + public static string FileManager_TooltipDetails { + get { + return ResourceManager.GetString("FileManager_TooltipDetails", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Download. + /// + public static string FileManager_TooltipDownload { + get { + return ResourceManager.GetString("FileManager_TooltipDownload", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to New folder. + /// + public static string FileManager_TooltipNewFolder { + get { + return ResourceManager.GetString("FileManager_TooltipNewFolder", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Paste. + /// + public static string FileManager_TooltipPaste { + get { + return ResourceManager.GetString("FileManager_TooltipPaste", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Refresh. + /// + public static string FileManager_TooltipRefresh { + get { + return ResourceManager.GetString("FileManager_TooltipRefresh", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Rename. + /// + public static string FileManager_TooltipRename { + get { + return ResourceManager.GetString("FileManager_TooltipRename", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Select all. + /// + public static string FileManager_TooltipSelectAll { + get { + return ResourceManager.GetString("FileManager_TooltipSelectAll", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Clear selection. + /// + public static string FileManager_TooltipSelection { + get { + return ResourceManager.GetString("FileManager_TooltipSelection", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Sort by. + /// + public static string FileManager_TooltipSortBy { + get { + return ResourceManager.GetString("FileManager_TooltipSortBy", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Upload. + /// + public static string FileManager_TooltipUpload { + get { + return ResourceManager.GetString("FileManager_TooltipUpload", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to View. + /// + public static string FileManager_TooltipView { + get { + return ResourceManager.GetString("FileManager_TooltipView", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Type. + /// + public static string FileManager_Type { + get { + return ResourceManager.GetString("FileManager_Type", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Upload. + /// + public static string FileManager_Upload { + get { + return ResourceManager.GetString("FileManager_Upload", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to The file or folder name cannot be empty.. + /// + public static string FileManager_ValidationEmpty { + get { + return ResourceManager.GetString("FileManager_ValidationEmpty", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to The file or folder name {0} contains invalid characters. Please use a different name. Valid file or folder names cannot end with a dot or space.. + /// + public static string FileManager_ValidationInvalid { + get { + return ResourceManager.GetString("FileManager_ValidationInvalid", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to A file or folder with the name {0} already exists.. + /// + public static string FileManager_ValidationNewFolderExists { + get { + return ResourceManager.GetString("FileManager_ValidationNewFolderExists", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Cannot rename {0} to {1}: destination already exists.. + /// + public static string FileManager_ValidationRenameExists { + get { + return ResourceManager.GetString("FileManager_ValidationRenameExists", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to View. + /// + public static string FileManager_View { + get { + return ResourceManager.GetString("FileManager_View", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Details. + /// + public static string FileManager_ViewDetails { + get { + return ResourceManager.GetString("FileManager_ViewDetails", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Large icons. + /// + public static string FileManager_ViewLargeIcons { + get { + return ResourceManager.GetString("FileManager_ViewLargeIcons", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Above. + /// + public static string Gantt_Above { + get { + return ResourceManager.GetString("Gantt_Above", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Add. + /// + public static string Gantt_Add { + get { + return ResourceManager.GetString("Gantt_Add", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to New Task. + /// + public static string Gantt_AddDialogTitle { + get { + return ResourceManager.GetString("Gantt_AddDialogTitle", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Baseline End Date. + /// + public static string Gantt_BaselineEndDate { + get { + return ResourceManager.GetString("Gantt_BaselineEndDate", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Baseline Start Date. + /// + public static string Gantt_BaselineStartDate { + get { + return ResourceManager.GetString("Gantt_BaselineStartDate", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Below. + /// + public static string Gantt_Below { + get { + return ResourceManager.GetString("Gantt_Below", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Cancel. + /// + public static string Gantt_Cancel { + get { + return ResourceManager.GetString("Gantt_Cancel", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Child. + /// + public static string Gantt_Child { + get { + return ResourceManager.GetString("Gantt_Child", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Collapse All. + /// + public static string Gantt_CollapseAll { + get { + return ResourceManager.GetString("Gantt_CollapseAll", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Are you sure you want to Delete Record?. + /// + public static string Gantt_ConfirmDelete { + get { + return ResourceManager.GetString("Gantt_ConfirmDelete", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Are you sure you want to remove dependency link?. + /// + public static string Gantt_ConfirmPredecessorDelete { + get { + return ResourceManager.GetString("Gantt_ConfirmPredecessorDelete", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Convert. + /// + public static string Gantt_Convert { + get { + return ResourceManager.GetString("Gantt_Convert", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to CSV Export. + /// + public static string Gantt_CsvExport { + get { + return ResourceManager.GetString("Gantt_CsvExport", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Custom Columns. + /// + public static string Gantt_CustomTab { + get { + return ResourceManager.GetString("Gantt_CustomTab", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to day. + /// + public static string Gantt_Day { + get { + return ResourceManager.GetString("Gantt_Day", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to days. + /// + public static string Gantt_Days { + get { + return ResourceManager.GetString("Gantt_Days", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Delete. + /// + public static string Gantt_Delete { + get { + return ResourceManager.GetString("Gantt_Delete", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Delete Dependency. + /// + public static string Gantt_DeleteDependency { + get { + return ResourceManager.GetString("Gantt_DeleteDependency", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Delete Task. + /// + public static string Gantt_DeleteTask { + get { + return ResourceManager.GetString("Gantt_DeleteTask", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Dependency. + /// + public static string Gantt_Dependency { + get { + return ResourceManager.GetString("Gantt_Dependency", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Duration. + /// + public static string Gantt_Duration { + get { + return ResourceManager.GetString("Gantt_Duration", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Edit. + /// + public static string Gantt_Edit { + get { + return ResourceManager.GetString("Gantt_Edit", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Task Information. + /// + public static string Gantt_EditDialogTitle { + get { + return ResourceManager.GetString("Gantt_EditDialogTitle", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to No records to display. + /// + public static string Gantt_EmptyRecord { + get { + return ResourceManager.GetString("Gantt_EmptyRecord", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to End Date. + /// + public static string Gantt_EndDate { + get { + return ResourceManager.GetString("Gantt_EndDate", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Enter the value. + /// + public static string Gantt_EnterValue { + get { + return ResourceManager.GetString("Gantt_EnterValue", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Event markers. + /// + public static string Gantt_EventMarkers { + get { + return ResourceManager.GetString("Gantt_EventMarkers", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Excel Export. + /// + public static string Gantt_ExcelExport { + get { + return ResourceManager.GetString("Gantt_ExcelExport", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Expand All. + /// + public static string Gantt_ExpandAll { + get { + return ResourceManager.GetString("Gantt_ExpandAll", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Finish. + /// + public static string Gantt_Finish { + get { + return ResourceManager.GetString("Gantt_Finish", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to From. + /// + public static string Gantt_From { + get { + return ResourceManager.GetString("Gantt_From", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to General. + /// + public static string Gantt_GeneralTab { + get { + return ResourceManager.GetString("Gantt_GeneralTab", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to hour. + /// + public static string Gantt_Hour { + get { + return ResourceManager.GetString("Gantt_Hour", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to hours. + /// + public static string Gantt_Hours { + get { + return ResourceManager.GetString("Gantt_Hours", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to ID. + /// + public static string Gantt_Id { + get { + return ResourceManager.GetString("Gantt_Id", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Indent. + /// + public static string Gantt_Indent { + get { + return ResourceManager.GetString("Gantt_Indent", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Lag. + /// + public static string Gantt_Lag { + get { + return ResourceManager.GetString("Gantt_Lag", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Left task label. + /// + public static string Gantt_LeftTaskLabel { + get { + return ResourceManager.GetString("Gantt_LeftTaskLabel", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Milestone. + /// + public static string Gantt_Milestone { + get { + return ResourceManager.GetString("Gantt_Milestone", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to minute. + /// + public static string Gantt_Minute { + get { + return ResourceManager.GetString("Gantt_Minute", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to minutes. + /// + public static string Gantt_Minutes { + get { + return ResourceManager.GetString("Gantt_Minutes", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Name. + /// + public static string Gantt_Name { + get { + return ResourceManager.GetString("Gantt_Name", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Next Timespan. + /// + public static string Gantt_NextTimeSpan { + get { + return ResourceManager.GetString("Gantt_NextTimeSpan", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Notes. + /// + public static string Gantt_Notes { + get { + return ResourceManager.GetString("Gantt_Notes", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Offset. + /// + public static string Gantt_Offset { + get { + return ResourceManager.GetString("Gantt_Offset", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Ok. + /// + public static string Gantt_OkText { + get { + return ResourceManager.GetString("Gantt_OkText", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Outdent. + /// + public static string Gantt_Outdent { + get { + return ResourceManager.GetString("Gantt_Outdent", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Previous Timespan. + /// + public static string Gantt_PrevTimeSpan { + get { + return ResourceManager.GetString("Gantt_PrevTimeSpan", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Progress. + /// + public static string Gantt_Progress { + get { + return ResourceManager.GetString("Gantt_Progress", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Resource ID. + /// + public static string Gantt_ResourceID { + get { + return ResourceManager.GetString("Gantt_ResourceID", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Resources. + /// + public static string Gantt_ResourceName { + get { + return ResourceManager.GetString("Gantt_ResourceName", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Right task label. + /// + public static string Gantt_RightTaskLabel { + get { + return ResourceManager.GetString("Gantt_RightTaskLabel", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Save. + /// + public static string Gantt_Save { + get { + return ResourceManager.GetString("Gantt_Save", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Save. + /// + public static string Gantt_SaveButton { + get { + return ResourceManager.GetString("Gantt_SaveButton", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Search. + /// + public static string Gantt_Search { + get { + return ResourceManager.GetString("Gantt_Search", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Start. + /// + public static string Gantt_Start { + get { + return ResourceManager.GetString("Gantt_Start", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Start Date. + /// + public static string Gantt_StartDate { + get { + return ResourceManager.GetString("Gantt_StartDate", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to task. + /// + public static string Gantt_Task { + get { + return ResourceManager.GetString("Gantt_Task", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to You moved '{0}' to finish after '{1}' finishes and the two tasks are linked. As the result, the links cannot be honored. Select one action below to perform. + /// + public static string Gantt_TaskAfterPredecessor_FF { + get { + return ResourceManager.GetString("Gantt_TaskAfterPredecessor_FF", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to You moved '{0}' away from '{1}' and the two tasks are linked. As the result, the links cannot be honored. Select one action below to perform. + /// + public static string Gantt_TaskAfterPredecessor_FS { + get { + return ResourceManager.GetString("Gantt_TaskAfterPredecessor_FS", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to You moved '{0}' to finish after '{1}'starts and the two tasks are linked. As the result, the links cannot be honored. Select one action below to perform. + /// + public static string Gantt_TaskAfterPredecessor_SF { + get { + return ResourceManager.GetString("Gantt_TaskAfterPredecessor_SF", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to You moved '{0}' to start after '{1}' starts and the two tasks are linked. As the result, the links cannot be honored. Select one action below to perform. + /// + public static string Gantt_TaskAfterPredecessor_SS { + get { + return ResourceManager.GetString("Gantt_TaskAfterPredecessor_SS", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to You moved '{0}' to finish before '{1}' finishes and the two tasks are linked. As the result, the links cannot be honored. Select one action below to perform. + /// + public static string Gantt_TaskBeforePredecessor_FF { + get { + return ResourceManager.GetString("Gantt_TaskBeforePredecessor_FF", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to You moved '{0}' to start before '{1}' finishes and the two tasks are linked. As the result, the links cannot be honored. Select one action below to perform. + /// + public static string Gantt_TaskBeforePredecessor_FS { + get { + return ResourceManager.GetString("Gantt_TaskBeforePredecessor_FS", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to You moved '{0}' away from '{1}' to starts and the two tasks are linked. As the result, the links cannot be honored. Select one action below to perform. + /// + public static string Gantt_TaskBeforePredecessor_SF { + get { + return ResourceManager.GetString("Gantt_TaskBeforePredecessor_SF", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to You moved '{0}' to start before '{1}' starts and the two tasks are linked. As the result, the links cannot be honored. Select one action below to perform. + /// + public static string Gantt_TaskBeforePredecessor_SS { + get { + return ResourceManager.GetString("Gantt_TaskBeforePredecessor_SS", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Task Information. + /// + public static string Gantt_TaskInformation { + get { + return ResourceManager.GetString("Gantt_TaskInformation", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Task Link. + /// + public static string Gantt_TaskLink { + get { + return ResourceManager.GetString("Gantt_TaskLink", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to tasks. + /// + public static string Gantt_Tasks { + get { + return ResourceManager.GetString("Gantt_Tasks", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Timeline cell. + /// + public static string Gantt_TimelineCell { + get { + return ResourceManager.GetString("Gantt_TimelineCell", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to To. + /// + public static string Gantt_To { + get { + return ResourceManager.GetString("Gantt_To", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to To Milestone. + /// + public static string Gantt_ToMilestone { + get { + return ResourceManager.GetString("Gantt_ToMilestone", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to To Task. + /// + public static string Gantt_ToTask { + get { + return ResourceManager.GetString("Gantt_ToTask", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Type. + /// + public static string Gantt_Type { + get { + return ResourceManager.GetString("Gantt_Type", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Update. + /// + public static string Gantt_Update { + get { + return ResourceManager.GetString("Gantt_Update", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Write Notes. + /// + public static string Gantt_WriteNotes { + get { + return ResourceManager.GetString("Gantt_WriteNotes", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Zoom In. + /// + public static string Gantt_ZoomIn { + get { + return ResourceManager.GetString("Gantt_ZoomIn", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Zoom Out. + /// + public static string Gantt_ZoomOut { + get { + return ResourceManager.GetString("Gantt_ZoomOut", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Zoom To Fit. + /// + public static string Gantt_ZoomToFit { + get { + return ResourceManager.GetString("Gantt_ZoomToFit", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Add. + /// + public static string Grid_Add { + get { + return ResourceManager.GetString("Grid_Add", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Add New Record. + /// + public static string Grid_AddFormTitle { + get { + return ResourceManager.GetString("Grid_AddFormTitle", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to AND. + /// + public static string Grid_AND { + get { + return ResourceManager.GetString("Grid_AND", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Autofit this column. + /// + public static string Grid_AutoFit { + get { + return ResourceManager.GetString("Grid_AutoFit", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Autofit all columns. + /// + public static string Grid_AutoFitAll { + get { + return ResourceManager.GetString("Grid_AutoFitAll", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Are you sure you want to save changes?. + /// + public static string Grid_BatchSaveConfirm { + get { + return ResourceManager.GetString("Grid_BatchSaveConfirm", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Unsaved changes will be lost. Are you sure you want to continue?. + /// + public static string Grid_BatchSaveLostChanges { + get { + return ResourceManager.GetString("Grid_BatchSaveLostChanges", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Between. + /// + public static string Grid_Between { + get { + return ResourceManager.GetString("Grid_Between", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Blanks. + /// + public static string Grid_Blanks { + get { + return ResourceManager.GetString("Grid_Blanks", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Cancel. + /// + public static string Grid_Cancel { + get { + return ResourceManager.GetString("Grid_Cancel", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Cancel. + /// + public static string Grid_CancelButton { + get { + return ResourceManager.GetString("Grid_CancelButton", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Are you sure you want to Cancel the changes?. + /// + public static string Grid_CancelEdit { + get { + return ResourceManager.GetString("Grid_CancelEdit", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Choose Column. + /// + public static string Grid_ChooseColumns { + get { + return ResourceManager.GetString("Grid_ChooseColumns", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Choose a Date. + /// + public static string Grid_ChooseDate { + get { + return ResourceManager.GetString("Grid_ChooseDate", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Clear. + /// + public static string Grid_ClearButton { + get { + return ResourceManager.GetString("Grid_ClearButton", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Clear Filter. + /// + public static string Grid_ClearFilter { + get { + return ResourceManager.GetString("Grid_ClearFilter", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Columns. + /// + public static string Grid_Columnchooser { + get { + return ResourceManager.GetString("Grid_Columnchooser", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Column chooser dialog. + /// + public static string Grid_ColumnChooserDialogARIA { + get { + return ResourceManager.GetString("Grid_ColumnChooserDialogARIA", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Column menu dialog. + /// + public static string Grid_ColumnMenuDialogARIA { + get { + return ResourceManager.GetString("Grid_ColumnMenuDialogARIA", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Are you sure you want to Delete Record?. + /// + public static string Grid_ConfirmDelete { + get { + return ResourceManager.GetString("Grid_ConfirmDelete", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Contains. + /// + public static string Grid_Contains { + get { + return ResourceManager.GetString("Grid_Contains", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Copy. + /// + public static string Grid_Copy { + get { + return ResourceManager.GetString("Grid_Copy", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to CSV Export. + /// + public static string Grid_Csvexport { + get { + return ResourceManager.GetString("Grid_Csvexport", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Custom Filter. + /// + public static string Grid_CustomFilter { + get { + return ResourceManager.GetString("Grid_CustomFilter", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Choose a date. + /// + public static string Grid_CustomFilterDatePlaceHolder { + get { + return ResourceManager.GetString("Grid_CustomFilterDatePlaceHolder", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Customer filter dialog. + /// + public static string Grid_CustomFilterDialogARIA { + get { + return ResourceManager.GetString("Grid_CustomFilterDialogARIA", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Enter the value. + /// + public static string Grid_CustomFilterPlaceHolder { + get { + return ResourceManager.GetString("Grid_CustomFilterPlaceHolder", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Date Filters. + /// + public static string Grid_DateFilter { + get { + return ResourceManager.GetString("Grid_DateFilter", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to DateTime Filters. + /// + public static string Grid_DateTimeFilter { + get { + return ResourceManager.GetString("Grid_DateTimeFilter", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Delete. + /// + public static string Grid_Delete { + get { + return ResourceManager.GetString("Grid_Delete", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to No records selected for delete operation. + /// + public static string Grid_DeleteOperationAlert { + get { + return ResourceManager.GetString("Grid_DeleteOperationAlert", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Delete Record. + /// + public static string Grid_DeleteRecord { + get { + return ResourceManager.GetString("Grid_DeleteRecord", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Edit dialog. + /// + public static string Grid_DialogEditARIA { + get { + return ResourceManager.GetString("Grid_DialogEditARIA", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Edit. + /// + public static string Grid_Edit { + get { + return ResourceManager.GetString("Grid_Edit", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Details of . + /// + public static string Grid_EditFormTitle { + get { + return ResourceManager.GetString("Grid_EditFormTitle", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to No records selected for edit operation. + /// + public static string Grid_EditOperationAlert { + get { + return ResourceManager.GetString("Grid_EditOperationAlert", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Edit Record. + /// + public static string Grid_EditRecord { + get { + return ResourceManager.GetString("Grid_EditRecord", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to DataSource must not be empty at initial load since columns are generated from dataSource in AutoGenerate Column Grid. + /// + public static string Grid_EmptyDataSourceError { + get { + return ResourceManager.GetString("Grid_EmptyDataSourceError", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to No records to display. + /// + public static string Grid_EmptyRecord { + get { + return ResourceManager.GetString("Grid_EmptyRecord", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Ends With. + /// + public static string Grid_EndsWith { + get { + return ResourceManager.GetString("Grid_EndsWith", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Enter the value. + /// + public static string Grid_EnterValue { + get { + return ResourceManager.GetString("Grid_EnterValue", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Equal. + /// + public static string Grid_Equal { + get { + return ResourceManager.GetString("Grid_Equal", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Excel Export. + /// + public static string Grid_Excelexport { + get { + return ResourceManager.GetString("Grid_Excelexport", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Excel filter dialog. + /// + public static string Grid_ExcelFilterDialogARIA { + get { + return ResourceManager.GetString("Grid_ExcelFilterDialogARIA", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Export. + /// + public static string Grid_Export { + get { + return ResourceManager.GetString("Grid_Export", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to false. + /// + public static string Grid_False { + get { + return ResourceManager.GetString("Grid_False", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to \'s filter bar cell. + /// + public static string Grid_FilterbarTitle { + get { + return ResourceManager.GetString("Grid_FilterbarTitle", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Filter. + /// + public static string Grid_FilterButton { + get { + return ResourceManager.GetString("Grid_FilterButton", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to False. + /// + public static string Grid_FilterFalse { + get { + return ResourceManager.GetString("Grid_FilterFalse", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Filter. + /// + public static string Grid_FilterMenu { + get { + return ResourceManager.GetString("Grid_FilterMenu", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Filter menu dialog. + /// + public static string Grid_FilterMenuDialogARIA { + get { + return ResourceManager.GetString("Grid_FilterMenuDialogARIA", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to True. + /// + public static string Grid_FilterTrue { + get { + return ResourceManager.GetString("Grid_FilterTrue", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to First Page. + /// + public static string Grid_FirstPage { + get { + return ResourceManager.GetString("Grid_FirstPage", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Greater Than. + /// + public static string Grid_GreaterThan { + get { + return ResourceManager.GetString("Grid_GreaterThan", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Greater Than Or Equal. + /// + public static string Grid_GreaterThanOrEqual { + get { + return ResourceManager.GetString("Grid_GreaterThanOrEqual", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Group by this column. + /// + public static string Grid_Group { + get { + return ResourceManager.GetString("Grid_Group", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Grouping is disabled for this column. + /// + public static string Grid_GroupDisable { + get { + return ResourceManager.GetString("Grid_GroupDisable", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Drag a column header here to group its column. + /// + public static string Grid_GroupDropArea { + get { + return ResourceManager.GetString("Grid_GroupDropArea", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Invalid Filter Data. + /// + public static string Grid_InvalidFilterMessage { + get { + return ResourceManager.GetString("Grid_InvalidFilterMessage", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to item. + /// + public static string Grid_Item { + get { + return ResourceManager.GetString("Grid_Item", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to items. + /// + public static string Grid_Items { + get { + return ResourceManager.GetString("Grid_Items", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Last Page. + /// + public static string Grid_LastPage { + get { + return ResourceManager.GetString("Grid_LastPage", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Less Than. + /// + public static string Grid_LessThan { + get { + return ResourceManager.GetString("Grid_LessThan", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Less Than Or Equal. + /// + public static string Grid_LessThanOrEqual { + get { + return ResourceManager.GetString("Grid_LessThanOrEqual", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Match Case. + /// + public static string Grid_MatchCase { + get { + return ResourceManager.GetString("Grid_MatchCase", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to No Matches Found. + /// + public static string Grid_Matchs { + get { + return ResourceManager.GetString("Grid_Matchs", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Next Page. + /// + public static string Grid_NextPage { + get { + return ResourceManager.GetString("Grid_NextPage", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to No Matches Found. + /// + public static string Grid_NoResult { + get { + return ResourceManager.GetString("Grid_NoResult", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Not Equal. + /// + public static string Grid_NotEqual { + get { + return ResourceManager.GetString("Grid_NotEqual", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Number Filters. + /// + public static string Grid_NumberFilter { + get { + return ResourceManager.GetString("Grid_NumberFilter", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to OK. + /// + public static string Grid_OKButton { + get { + return ResourceManager.GetString("Grid_OKButton", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to OR. + /// + public static string Grid_OR { + get { + return ResourceManager.GetString("Grid_OR", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to PDF Export. + /// + public static string Grid_Pdfexport { + get { + return ResourceManager.GetString("Grid_Pdfexport", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Previous Page. + /// + public static string Grid_PreviousPage { + get { + return ResourceManager.GetString("Grid_PreviousPage", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Print. + /// + public static string Grid_Print { + get { + return ResourceManager.GetString("Grid_Print", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Save. + /// + public static string Grid_Save { + get { + return ResourceManager.GetString("Grid_Save", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Save. + /// + public static string Grid_SaveButton { + get { + return ResourceManager.GetString("Grid_SaveButton", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Search. + /// + public static string Grid_Search { + get { + return ResourceManager.GetString("Grid_Search", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to search columns. + /// + public static string Grid_SearchColumns { + get { + return ResourceManager.GetString("Grid_SearchColumns", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Select All. + /// + public static string Grid_SelectAll { + get { + return ResourceManager.GetString("Grid_SelectAll", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Show rows where:. + /// + public static string Grid_ShowRowsWhere { + get { + return ResourceManager.GetString("Grid_ShowRowsWhere", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Sort Ascending. + /// + public static string Grid_SortAscending { + get { + return ResourceManager.GetString("Grid_SortAscending", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Sort Descending. + /// + public static string Grid_SortDescending { + get { + return ResourceManager.GetString("Grid_SortDescending", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Starts With. + /// + public static string Grid_StartsWith { + get { + return ResourceManager.GetString("Grid_StartsWith", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Text Filters. + /// + public static string Grid_TextFilter { + get { + return ResourceManager.GetString("Grid_TextFilter", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to true. + /// + public static string Grid_True { + get { + return ResourceManager.GetString("Grid_True", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Ungroup by this column. + /// + public static string Grid_Ungroup { + get { + return ResourceManager.GetString("Grid_Ungroup", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Click here to ungroup. + /// + public static string Grid_UnGroupButton { + get { + return ResourceManager.GetString("Grid_UnGroupButton", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Update. + /// + public static string Grid_Update { + get { + return ResourceManager.GetString("Grid_Update", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Word Export. + /// + public static string Grid_Wordexport { + get { + return ResourceManager.GetString("Grid_Wordexport", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Cancel. + /// + public static string InPlaceEditor_Cancel { + get { + return ResourceManager.GetString("InPlaceEditor_Cancel", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Click to edit. + /// + public static string InPlaceEditor_EditAreaClick { + get { + return ResourceManager.GetString("InPlaceEditor_EditAreaClick", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Double click to edit. + /// + public static string InPlaceEditor_EditAreaDoubleClick { + get { + return ResourceManager.GetString("InPlaceEditor_EditAreaDoubleClick", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Click to edit. + /// + public static string InPlaceEditor_EditIcon { + get { + return ResourceManager.GetString("InPlaceEditor_EditIcon", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Loading.... + /// + public static string InPlaceEditor_LoadingText { + get { + return ResourceManager.GetString("InPlaceEditor_LoadingText", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Save. + /// + public static string InPlaceEditor_Save { + get { + return ResourceManager.GetString("InPlaceEditor_Save", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Add New Card. + /// + public static string Kanban_AddTitle { + get { + return ResourceManager.GetString("Kanban_AddTitle", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Cancel. + /// + public static string Kanban_Cancel { + get { + return ResourceManager.GetString("Kanban_Cancel", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Cards Selected. + /// + public static string Kanban_CardsSelected { + get { + return ResourceManager.GetString("Kanban_CardsSelected", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Delete. + /// + public static string Kanban_Delete { + get { + return ResourceManager.GetString("Kanban_Delete", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Are you sure you want to delete this card?. + /// + public static string Kanban_DeleteContent { + get { + return ResourceManager.GetString("Kanban_DeleteContent", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Delete Card. + /// + public static string Kanban_DeleteTitle { + get { + return ResourceManager.GetString("Kanban_DeleteTitle", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Edit Card Details. + /// + public static string Kanban_EditTitle { + get { + return ResourceManager.GetString("Kanban_EditTitle", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to item. + /// + public static string Kanban_Item { + get { + return ResourceManager.GetString("Kanban_Item", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to items. + /// + public static string Kanban_Items { + get { + return ResourceManager.GetString("Kanban_Items", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Max. + /// + public static string Kanban_Max { + get { + return ResourceManager.GetString("Kanban_Max", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Min. + /// + public static string Kanban_Min { + get { + return ResourceManager.GetString("Kanban_Min", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to No. + /// + public static string Kanban_No { + get { + return ResourceManager.GetString("Kanban_No", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to No cards to display. + /// + public static string Kanban_No_Cards { + get { + return ResourceManager.GetString("Kanban_No_Cards", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Save. + /// + public static string Kanban_Save { + get { + return ResourceManager.GetString("Kanban_Save", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Yes. + /// + public static string Kanban_Yes { + get { + return ResourceManager.GetString("Kanban_Yes", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Request failed. + /// + public static string ListBox_ActionFailureTemplate { + get { + return ResourceManager.GetString("ListBox_ActionFailureTemplate", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Move All From. + /// + public static string ListBox_MoveAllFrom { + get { + return ResourceManager.GetString("ListBox_MoveAllFrom", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Move All To. + /// + public static string ListBox_MoveAllTo { + get { + return ResourceManager.GetString("ListBox_MoveAllTo", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Move Down. + /// + public static string ListBox_MoveDown { + get { + return ResourceManager.GetString("ListBox_MoveDown", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Move From. + /// + public static string ListBox_MoveFrom { + get { + return ResourceManager.GetString("ListBox_MoveFrom", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Move To. + /// + public static string ListBox_MoveTo { + get { + return ResourceManager.GetString("ListBox_MoveTo", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Move Up. + /// + public static string ListBox_MoveUp { + get { + return ResourceManager.GetString("ListBox_MoveUp", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to No records found. + /// + public static string ListBox_NoRecordsTemplate { + get { + return ResourceManager.GetString("ListBox_NoRecordsTemplate", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Select All. + /// + public static string ListBox_SelectAllText { + get { + return ResourceManager.GetString("ListBox_SelectAllText", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Unselect All. + /// + public static string ListBox_UnSelectAllText { + get { + return ResourceManager.GetString("ListBox_UnSelectAllText", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Pan. + /// + public static string Maps_Pan { + get { + return ResourceManager.GetString("Maps_Pan", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Reset. + /// + public static string Maps_Reset { + get { + return ResourceManager.GetString("Maps_Reset", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Zoom. + /// + public static string Maps_Zoom { + get { + return ResourceManager.GetString("Maps_Zoom", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Zoom in. + /// + public static string Maps_ZoomIn { + get { + return ResourceManager.GetString("Maps_ZoomIn", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Zoom out. + /// + public static string Maps_ZoomOut { + get { + return ResourceManager.GetString("Maps_ZoomOut", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Request failed. + /// + public static string MultiSelect_ActionFailureTemplate { + get { + return ResourceManager.GetString("MultiSelect_ActionFailureTemplate", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to No records found. + /// + public static string MultiSelect_NoRecordsTemplate { + get { + return ResourceManager.GetString("MultiSelect_NoRecordsTemplate", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to +${count} more... + /// + public static string MultiSelect_OverflowCountTemplate { + get { + return ResourceManager.GetString("MultiSelect_OverflowCountTemplate", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Select All. + /// + public static string MultiSelect_SelectAllText { + get { + return ResourceManager.GetString("MultiSelect_SelectAllText", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to ${count} selected. + /// + public static string MultiSelect_TotalCountTemplate { + get { + return ResourceManager.GetString("MultiSelect_TotalCountTemplate", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Unselect All. + /// + public static string MultiSelect_UnSelectAllText { + get { + return ResourceManager.GetString("MultiSelect_UnSelectAllText", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Decrement value. + /// + public static string NumericTextBox_DecrementTitle { + get { + return ResourceManager.GetString("NumericTextBox_DecrementTitle", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Increment value. + /// + public static string NumericTextBox_IncrementTitle { + get { + return ResourceManager.GetString("NumericTextBox_IncrementTitle", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to All. + /// + public static string Pager_All { + get { + return ResourceManager.GetString("Pager_All", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to {0} of {1} pages. + /// + public static string Pager_CurrentPageInfo { + get { + return ResourceManager.GetString("Pager_CurrentPageInfo", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Go to first page. + /// + public static string Pager_FirstPageTooltip { + get { + return ResourceManager.GetString("Pager_FirstPageTooltip", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Go to last page. + /// + public static string Pager_LastPageTooltip { + get { + return ResourceManager.GetString("Pager_LastPageTooltip", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Go to next pager. + /// + public static string Pager_NextPagerTooltip { + get { + return ResourceManager.GetString("Pager_NextPagerTooltip", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Go to next page. + /// + public static string Pager_NextPageTooltip { + get { + return ResourceManager.GetString("Pager_NextPageTooltip", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Items. + /// + public static string Pager_PagerAllDropDown { + get { + return ResourceManager.GetString("Pager_PagerAllDropDown", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Items per page. + /// + public static string Pager_PagerDropDown { + get { + return ResourceManager.GetString("Pager_PagerDropDown", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Go to previous pager. + /// + public static string Pager_PreviousPagerTooltip { + get { + return ResourceManager.GetString("Pager_PreviousPagerTooltip", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Go to previous page. + /// + public static string Pager_PreviousPageTooltip { + get { + return ResourceManager.GetString("Pager_PreviousPageTooltip", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to ({0} items). + /// + public static string Pager_TotalItemsInfo { + get { + return ResourceManager.GetString("Pager_TotalItemsInfo", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to PDF Viewer. + /// + public static string PdfViewer { + get { + return ResourceManager.GetString("PdfViewer", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Accepted. + /// + public static string PdfViewer_Accepted { + get { + return ResourceManager.GetString("PdfViewer_Accepted", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Add. + /// + public static string PdfViewer_Add { + get { + return ResourceManager.GetString("PdfViewer_Add", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Add Arrow. + /// + public static string PdfViewer_AddArrow { + get { + return ResourceManager.GetString("PdfViewer_AddArrow", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Add Circle. + /// + public static string PdfViewer_AddCircle { + get { + return ResourceManager.GetString("PdfViewer_AddCircle", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Add a Comment. + /// + public static string PdfViewer_AddComment { + get { + return ResourceManager.GetString("PdfViewer_AddComment", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Add Comments. + /// + public static string PdfViewer_AddComments { + get { + return ResourceManager.GetString("PdfViewer_AddComments", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Add Line. + /// + public static string PdfViewer_Addline { + get { + return ResourceManager.GetString("PdfViewer_Addline", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Add Polygon. + /// + public static string PdfViewer_AddPolygon { + get { + return ResourceManager.GetString("PdfViewer_AddPolygon", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Add Rectangle. + /// + public static string PdfViewer_AddRectangle { + get { + return ResourceManager.GetString("PdfViewer_AddRectangle", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Add a Reply. + /// + public static string PdfViewer_AddReply { + get { + return ResourceManager.GetString("PdfViewer_AddReply", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Add Shapes. + /// + public static string PdfViewer_AddShapes { + get { + return ResourceManager.GetString("PdfViewer_AddShapes", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Add Stamp. + /// + public static string PdfViewer_AddStamp { + get { + return ResourceManager.GetString("PdfViewer_AddStamp", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Align Left. + /// + public static string PdfViewer_AlignLeft { + get { + return ResourceManager.GetString("PdfViewer_AlignLeft", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Align Right. + /// + public static string PdfViewer_AlignRight { + get { + return ResourceManager.GetString("PdfViewer_AlignRight", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Add or Edit annotations. + /// + public static string PdfViewer_Annotation { + get { + return ResourceManager.GetString("PdfViewer_Annotation", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Edit Annotation. + /// + public static string PdfViewer_AnnotationEditText { + get { + return ResourceManager.GetString("PdfViewer_AnnotationEditText", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Apply. + /// + public static string PdfViewer_Apply { + get { + return ResourceManager.GetString("PdfViewer_Apply", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Approved. + /// + public static string PdfViewer_Approved { + get { + return ResourceManager.GetString("PdfViewer_Approved", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Automatic. + /// + public static string PdfViewer_Automatic { + get { + return ResourceManager.GetString("PdfViewer_Automatic", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Bold. + /// + public static string PdfViewer_Bold { + get { + return ResourceManager.GetString("PdfViewer_Bold", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Bookmarks. + /// + public static string PdfViewer_Bookmarks { + get { + return ResourceManager.GetString("PdfViewer_Bookmarks", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to BROWSE. + /// + public static string PdfViewer_Browse_Signature_Image { + get { + return ResourceManager.GetString("PdfViewer_Browse_Signature_Image", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Calibrate. + /// + public static string PdfViewer_Calibrate { + get { + return ResourceManager.GetString("PdfViewer_Calibrate", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Calibrate Area. + /// + public static string PdfViewer_CalibrateArea { + get { + return ResourceManager.GetString("PdfViewer_CalibrateArea", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Calibrate Distance. + /// + public static string PdfViewer_CalibrateDistance { + get { + return ResourceManager.GetString("PdfViewer_CalibrateDistance", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Calibrate Perimeter. + /// + public static string PdfViewer_CalibratePerimeter { + get { + return ResourceManager.GetString("PdfViewer_CalibratePerimeter", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Calibrate Radius. + /// + public static string PdfViewer_CalibrateRadius { + get { + return ResourceManager.GetString("PdfViewer_CalibrateRadius", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Calibrate Volume. + /// + public static string PdfViewer_CalibrateVolume { + get { + return ResourceManager.GetString("PdfViewer_CalibrateVolume", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Cancel. + /// + public static string PdfViewer_Cancel { + get { + return ResourceManager.GetString("PdfViewer_Cancel", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Cancelled. + /// + public static string PdfViewer_Cancelled { + get { + return ResourceManager.GetString("PdfViewer_Cancelled", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Center. + /// + public static string PdfViewer_Center { + get { + return ResourceManager.GetString("PdfViewer_Center", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Change Border Thickness. + /// + public static string PdfViewer_ChangeThickness { + get { + return ResourceManager.GetString("PdfViewer_ChangeThickness", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Clear. + /// + public static string PdfViewer_Clear { + get { + return ResourceManager.GetString("PdfViewer_Clear", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Client-side error is found. Please check the custom headers provided in the AjaxRequestSettings property and web action methods in the ServerActionSettings property.. + /// + public static string PdfViewer_Clienterror { + get { + return ResourceManager.GetString("PdfViewer_Clienterror", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Closed. + /// + public static string PdfViewer_Closed { + get { + return ResourceManager.GetString("PdfViewer_Closed", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Closed Arrow. + /// + public static string PdfViewer_ClosedArrow { + get { + return ResourceManager.GetString("PdfViewer_ClosedArrow", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Change Color. + /// + public static string PdfViewer_ColorEdit { + get { + return ResourceManager.GetString("PdfViewer_ColorEdit", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Comment. + /// + public static string PdfViewer_Comment { + get { + return ResourceManager.GetString("PdfViewer_Comment", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Comment Panel. + /// + public static string PdfViewer_CommentPanel { + get { + return ResourceManager.GetString("PdfViewer_CommentPanel", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Comments. + /// + public static string PdfViewer_Comments { + get { + return ResourceManager.GetString("PdfViewer_Comments", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Completed. + /// + public static string PdfViewer_Completed { + get { + return ResourceManager.GetString("PdfViewer_Completed", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Confidential. + /// + public static string PdfViewer_Confidential { + get { + return ResourceManager.GetString("PdfViewer_Confidential", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Copy. + /// + public static string PdfViewer_Copy { + get { + return ResourceManager.GetString("PdfViewer_Copy", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Create. + /// + public static string PdfViewer_Create { + get { + return ResourceManager.GetString("PdfViewer_Create", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Custom Stamp. + /// + public static string PdfViewer_CustomStamp { + get { + return ResourceManager.GetString("PdfViewer_CustomStamp", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Cut. + /// + public static string PdfViewer_Cut { + get { + return ResourceManager.GetString("PdfViewer_Cut", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Delete annotation. + /// + public static string PdfViewer_Delete { + get { + return ResourceManager.GetString("PdfViewer_Delete", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Delete. + /// + public static string PdfViewer_DeleteContext { + get { + return ResourceManager.GetString("PdfViewer_DeleteContext", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Depth. + /// + public static string PdfViewer_Depth { + get { + return ResourceManager.GetString("PdfViewer_Depth", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Diamond. + /// + public static string PdfViewer_Diamond { + get { + return ResourceManager.GetString("PdfViewer_Diamond", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Diamond Arrow. + /// + public static string PdfViewer_DiamondArrow { + get { + return ResourceManager.GetString("PdfViewer_DiamondArrow", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Download. + /// + public static string PdfViewer_Download { + get { + return ResourceManager.GetString("PdfViewer_Download", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Download File. + /// + public static string PdfViewer_DownloadFile { + get { + return ResourceManager.GetString("PdfViewer_DownloadFile", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Draft. + /// + public static string PdfViewer_Draft { + get { + return ResourceManager.GetString("PdfViewer_Draft", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to DRAW. + /// + public static string PdfViewer_Draw_hand_Signature { + get { + return ResourceManager.GetString("PdfViewer_Draw_hand_Signature", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Draw Signature. + /// + public static string PdfViewer_DrawSignature { + get { + return ResourceManager.GetString("PdfViewer_DrawSignature", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Dynamic. + /// + public static string PdfViewer_Dynamic { + get { + return ResourceManager.GetString("PdfViewer_Dynamic", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Edit. + /// + public static string PdfViewer_Edit { + get { + return ResourceManager.GetString("PdfViewer_Edit", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to End Arrow. + /// + public static string PdfViewer_EndArrow { + get { + return ResourceManager.GetString("PdfViewer_EndArrow", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Enter your name. + /// + public static string PdfViewer_Enter_Signature_as_Name { + get { + return ResourceManager.GetString("PdfViewer_Enter_Signature_as_Name", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to This document is password protected. Please enter a password.. + /// + public static string PdfViewer_EnterPassword { + get { + return ResourceManager.GetString("PdfViewer_EnterPassword", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Export Annotations. + /// + public static string PdfViewer_ExportAnnotations { + get { + return ResourceManager.GetString("PdfViewer_ExportAnnotations", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Export annotations action has failed; please ensure annotations are added properly. + /// + public static string PdfViewer_ExportFailed { + get { + return ResourceManager.GetString("PdfViewer_ExportFailed", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to File Corrupted. + /// + public static string PdfViewer_FileCorrupted { + get { + return ResourceManager.GetString("PdfViewer_FileCorrupted", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to The file is corrupted and cannot be opened.. + /// + public static string PdfViewer_FileCorruptedContent { + get { + return ResourceManager.GetString("PdfViewer_FileCorruptedContent", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Imported JSON file is not found in the desired location. + /// + public static string PdfViewer_FileNotFound { + get { + return ResourceManager.GetString("PdfViewer_FileNotFound", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Fill Color. + /// + public static string PdfViewer_FillColor { + get { + return ResourceManager.GetString("PdfViewer_FillColor", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Final. + /// + public static string PdfViewer_Final { + get { + return ResourceManager.GetString("PdfViewer_Final", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Find in document. + /// + public static string PdfViewer_Findindocument { + get { + return ResourceManager.GetString("PdfViewer_Findindocument", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to First Page. + /// + public static string PdfViewer_FirstText { + get { + return ResourceManager.GetString("PdfViewer_FirstText", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Fit Page. + /// + public static string PdfViewer_FitPage { + get { + return ResourceManager.GetString("PdfViewer_FitPage", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Fit Width. + /// + public static string PdfViewer_FitWidth { + get { + return ResourceManager.GetString("PdfViewer_FitWidth", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Font Color. + /// + public static string PdfViewer_FontColor { + get { + return ResourceManager.GetString("PdfViewer_FontColor", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Font Family. + /// + public static string PdfViewer_FontFamily { + get { + return ResourceManager.GetString("PdfViewer_FontFamily", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Font Size. + /// + public static string PdfViewer_FontSize { + get { + return ResourceManager.GetString("PdfViewer_FontSize", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to For Comment. + /// + public static string PdfViewer_ForComment { + get { + return ResourceManager.GetString("PdfViewer_ForComment", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to For Public Release. + /// + public static string PdfViewer_ForPublicRelease { + get { + return ResourceManager.GetString("PdfViewer_ForPublicRelease", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Free Text. + /// + public static string PdfViewer_FreeText { + get { + return ResourceManager.GetString("PdfViewer_FreeText", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Show first page. + /// + public static string PdfViewer_GoToFirstPage { + get { + return ResourceManager.GetString("PdfViewer_GoToFirstPage", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Show last page. + /// + public static string PdfViewer_GoToLastPage { + get { + return ResourceManager.GetString("PdfViewer_GoToLastPage", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Go To Page. + /// + public static string PdfViewer_GoToPage { + get { + return ResourceManager.GetString("PdfViewer_GoToPage", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Highlight Text. + /// + public static string PdfViewer_Highlight { + get { + return ResourceManager.GetString("PdfViewer_Highlight", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Highlight. + /// + public static string PdfViewer_HighlightContext { + get { + return ResourceManager.GetString("PdfViewer_HighlightContext", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Import Annotations. + /// + public static string PdfViewer_ImportAnnotations { + get { + return ResourceManager.GetString("PdfViewer_ImportAnnotations", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Invalid JSON file type or file name; please select a valid JSON file. + /// + public static string PdfViewer_ImportFailed { + get { + return ResourceManager.GetString("PdfViewer_ImportFailed", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Information Only. + /// + public static string PdfViewer_InformationOnly { + get { + return ResourceManager.GetString("PdfViewer_InformationOnly", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Initial Here. + /// + public static string PdfViewer_InitialHere { + get { + return ResourceManager.GetString("PdfViewer_InitialHere", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Incorrect Password. Please try again.. + /// + public static string PdfViewer_InvalidPassword { + get { + return ResourceManager.GetString("PdfViewer_InvalidPassword", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Italic. + /// + public static string PdfViewer_Italic { + get { + return ResourceManager.GetString("PdfViewer_Italic", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Justify. + /// + public static string PdfViewer_Justify { + get { + return ResourceManager.GetString("PdfViewer_Justify", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Last Page. + /// + public static string PdfViewer_LastText { + get { + return ResourceManager.GetString("PdfViewer_LastText", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Leader Length. + /// + public static string PdfViewer_LeaderLength { + get { + return ResourceManager.GetString("PdfViewer_LeaderLength", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Line Color. + /// + public static string PdfViewer_LineColor { + get { + return ResourceManager.GetString("PdfViewer_LineColor", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Line Properties. + /// + public static string PdfViewer_LineProperties { + get { + return ResourceManager.GetString("PdfViewer_LineProperties", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Line Style. + /// + public static string PdfViewer_LineStyle { + get { + return ResourceManager.GetString("PdfViewer_LineStyle", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Line Thickness. + /// + public static string PdfViewer_LineThickness { + get { + return ResourceManager.GetString("PdfViewer_LineThickness", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Match case. + /// + public static string PdfViewer_Matchcase { + get { + return ResourceManager.GetString("PdfViewer_Matchcase", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Show next page. + /// + public static string PdfViewer_NextPage { + get { + return ResourceManager.GetString("PdfViewer_NextPage", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Next Page. + /// + public static string PdfViewer_NextText { + get { + return ResourceManager.GetString("PdfViewer_NextText", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to No Comments Yet. + /// + public static string PdfViewer_NoCommentsYet { + get { + return ResourceManager.GetString("PdfViewer_NoCommentsYet", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Viewer has finished searching the document. No more matches were found. + /// + public static string PdfViewer_Nomatches { + get { + return ResourceManager.GetString("PdfViewer_Nomatches", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to None. + /// + public static string PdfViewer_None { + get { + return ResourceManager.GetString("PdfViewer_None", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Not Approved. + /// + public static string PdfViewer_NotApproved { + get { + return ResourceManager.GetString("PdfViewer_NotApproved", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to No Text Found. + /// + public static string PdfViewer_NoTextFound { + get { + return ResourceManager.GetString("PdfViewer_NoTextFound", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Not For Public Release. + /// + public static string PdfViewer_NotForPublicRelease { + get { + return ResourceManager.GetString("PdfViewer_NotForPublicRelease", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to OK. + /// + public static string PdfViewer_OK { + get { + return ResourceManager.GetString("PdfViewer_OK", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Opacity. + /// + public static string PdfViewer_Opacity { + get { + return ResourceManager.GetString("PdfViewer_Opacity", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Change Opacity. + /// + public static string PdfViewer_OpacityEdit { + get { + return ResourceManager.GetString("PdfViewer_OpacityEdit", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Open file. + /// + public static string PdfViewer_Open { + get { + return ResourceManager.GetString("PdfViewer_Open", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Open Arrow. + /// + public static string PdfViewer_OpenArrow { + get { + return ResourceManager.GetString("PdfViewer_OpenArrow", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Open. + /// + public static string PdfViewer_OpenText { + get { + return ResourceManager.GetString("PdfViewer_OpenText", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Page. + /// + public static string PdfViewer_Page { + get { + return ResourceManager.GetString("PdfViewer_Page", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Current page number. + /// + public static string PdfViewer_PageNumber { + get { + return ResourceManager.GetString("PdfViewer_PageNumber", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Page thumbnails. + /// + public static string PdfViewer_PageThumbnails { + get { + return ResourceManager.GetString("PdfViewer_PageThumbnails", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Pan Mode. + /// + public static string PdfViewer_Panning { + get { + return ResourceManager.GetString("PdfViewer_Panning", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Pan. + /// + public static string PdfViewer_PanText { + get { + return ResourceManager.GetString("PdfViewer_PanText", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Password Required. + /// + public static string PdfViewer_PasswordProtected { + get { + return ResourceManager.GetString("PdfViewer_PasswordProtected", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Paste. + /// + public static string PdfViewer_Paste { + get { + return ResourceManager.GetString("PdfViewer_Paste", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Post. + /// + public static string PdfViewer_Post { + get { + return ResourceManager.GetString("PdfViewer_Post", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Preliminary Results. + /// + public static string PdfViewer_PreliminaryResults { + get { + return ResourceManager.GetString("PdfViewer_PreliminaryResults", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Show previous page. + /// + public static string PdfViewer_PreviousPage { + get { + return ResourceManager.GetString("PdfViewer_PreviousPage", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Previous Page. + /// + public static string PdfViewer_PreviousText { + get { + return ResourceManager.GetString("PdfViewer_PreviousText", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Print File. + /// + public static string PdfViewer_Print { + get { + return ResourceManager.GetString("PdfViewer_Print", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Print. + /// + public static string PdfViewer_PrintText { + get { + return ResourceManager.GetString("PdfViewer_PrintText", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Properties. + /// + public static string PdfViewer_Properties { + get { + return ResourceManager.GetString("PdfViewer_Properties", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Received. + /// + public static string PdfViewer_Received { + get { + return ResourceManager.GetString("PdfViewer_Received", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Redo. + /// + public static string PdfViewer_Redo { + get { + return ResourceManager.GetString("PdfViewer_Redo", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Rejected. + /// + public static string PdfViewer_Rejected { + get { + return ResourceManager.GetString("PdfViewer_Rejected", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to This PDF Viewer requires Server-side processing to render the PDF files through the web service. You must configure the ServiceURL to proceed with PDF Viewer.. + /// + public static string PdfViewer_Required_ServiceUrl_Error_Message { + get { + return ResourceManager.GetString("PdfViewer_Required_ServiceUrl_Error_Message", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Reviewed. + /// + public static string PdfViewer_Reviewed { + get { + return ResourceManager.GetString("PdfViewer_Reviewed", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Revised. + /// + public static string PdfViewer_Revised { + get { + return ResourceManager.GetString("PdfViewer_Revised", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Round. + /// + public static string PdfViewer_Round { + get { + return ResourceManager.GetString("PdfViewer_Round", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Round Arrow. + /// + public static string PdfViewer_RoundArrow { + get { + return ResourceManager.GetString("PdfViewer_RoundArrow", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Save Signature. + /// + public static string PdfViewer_Save_Signature { + get { + return ResourceManager.GetString("PdfViewer_Save_Signature", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Scale Ratio. + /// + public static string PdfViewer_ScaleRatio { + get { + return ResourceManager.GetString("PdfViewer_ScaleRatio", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Search. + /// + public static string PdfViewer_SearchText { + get { + return ResourceManager.GetString("PdfViewer_SearchText", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Selection. + /// + public static string PdfViewer_SelectionText { + get { + return ResourceManager.GetString("PdfViewer_SelectionText", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Web-service is not listening. PDF Viewer depends on web-service for all its features. Please start the web service to continue.. + /// + public static string PdfViewer_Servererror { + get { + return ResourceManager.GetString("PdfViewer_Servererror", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Set Status. + /// + public static string PdfViewer_SetStatus { + get { + return ResourceManager.GetString("PdfViewer_SetStatus", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Sign Here. + /// + public static string PdfViewer_SignHere { + get { + return ResourceManager.GetString("PdfViewer_SignHere", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Square. + /// + public static string PdfViewer_Square { + get { + return ResourceManager.GetString("PdfViewer_Square", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Square Arrow. + /// + public static string PdfViewer_SquareArrow { + get { + return ResourceManager.GetString("PdfViewer_SquareArrow", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Standard Business. + /// + public static string PdfViewer_StandardBusiness { + get { + return ResourceManager.GetString("PdfViewer_StandardBusiness", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Start Arrow. + /// + public static string PdfViewer_StartArrow { + get { + return ResourceManager.GetString("PdfViewer_StartArrow", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Strikethrough Text. + /// + public static string PdfViewer_Strikethrough { + get { + return ResourceManager.GetString("PdfViewer_Strikethrough", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Strike through. + /// + public static string PdfViewer_StrikethroughContext { + get { + return ResourceManager.GetString("PdfViewer_StrikethroughContext", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Strikethroughs. + /// + public static string PdfViewer_Strikethroughs { + get { + return ResourceManager.GetString("PdfViewer_Strikethroughs", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Change Stroke Color. + /// + public static string PdfViewer_StrokeEdit { + get { + return ResourceManager.GetString("PdfViewer_StrokeEdit", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Submit Form. + /// + public static string PdfViewer_SubmitForm { + get { + return ResourceManager.GetString("PdfViewer_SubmitForm", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Subscript. + /// + public static string PdfViewer_Subscript { + get { + return ResourceManager.GetString("PdfViewer_Subscript", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Superscript. + /// + public static string PdfViewer_Superscript { + get { + return ResourceManager.GetString("PdfViewer_Superscript", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Text Align. + /// + public static string PdfViewer_TextAlign { + get { + return ResourceManager.GetString("PdfViewer_TextAlign", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Font Style. + /// + public static string PdfViewer_TextProperties { + get { + return ResourceManager.GetString("PdfViewer_TextProperties", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Find text. + /// + public static string PdfViewer_TextSearch { + get { + return ResourceManager.GetString("PdfViewer_TextSearch", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Text selection tool. + /// + public static string PdfViewer_TextSelection { + get { + return ResourceManager.GetString("PdfViewer_TextSelection", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to TYPE. + /// + public static string PdfViewer_Type_Signature { + get { + return ResourceManager.GetString("PdfViewer_Type_Signature", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Underline Text. + /// + public static string PdfViewer_Underline { + get { + return ResourceManager.GetString("PdfViewer_Underline", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Underline. + /// + public static string PdfViewer_UnderlineContext { + get { + return ResourceManager.GetString("PdfViewer_UnderlineContext", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Underlines. + /// + public static string PdfViewer_Underlines { + get { + return ResourceManager.GetString("PdfViewer_Underlines", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Undo. + /// + public static string PdfViewer_Undo { + get { + return ResourceManager.GetString("PdfViewer_Undo", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to UPLOAD. + /// + public static string PdfViewer_Upload_Signature { + get { + return ResourceManager.GetString("PdfViewer_Upload_Signature", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Void. + /// + public static string PdfViewer_Void { + get { + return ResourceManager.GetString("PdfViewer_Void", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Witness. + /// + public static string PdfViewer_Witness { + get { + return ResourceManager.GetString("PdfViewer_Witness", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Zoom. + /// + public static string PdfViewer_Zoom { + get { + return ResourceManager.GetString("PdfViewer_Zoom", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Zoom In. + /// + public static string PdfViewer_ZoomIn { + get { + return ResourceManager.GetString("PdfViewer_ZoomIn", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Zoom In. + /// + public static string PdfViewer_ZoomInText { + get { + return ResourceManager.GetString("PdfViewer_ZoomInText", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Zoom Out. + /// + public static string PdfViewer_ZoomOut { + get { + return ResourceManager.GetString("PdfViewer_ZoomOut", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Zoom Out. + /// + public static string PdfViewer_ZoomOutText { + get { + return ResourceManager.GetString("PdfViewer_ZoomOutText", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Add. + /// + public static string PivotView_Add { + get { + return ResourceManager.GetString("PivotView_Add", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Add Condition. + /// + public static string PivotView_AddCondition { + get { + return ResourceManager.GetString("PivotView_AddCondition", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Add field here. + /// + public static string PivotView_AddFieldMessage { + get { + return ResourceManager.GetString("PivotView_AddFieldMessage", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Add to Column. + /// + public static string PivotView_AddToColumn { + get { + return ResourceManager.GetString("PivotView_AddToColumn", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Add to Filter. + /// + public static string PivotView_AddToFilter { + get { + return ResourceManager.GetString("PivotView_AddToFilter", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Add to Row. + /// + public static string PivotView_AddToRow { + get { + return ResourceManager.GetString("PivotView_AddToRow", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Add to Value. + /// + public static string PivotView_AddToValue { + get { + return ResourceManager.GetString("PivotView_AddToValue", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to After. + /// + public static string PivotView_After { + get { + return ResourceManager.GetString("PivotView_After", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to After Or Equal To. + /// + public static string PivotView_AfterOrEqualTo { + get { + return ResourceManager.GetString("PivotView_AfterOrEqualTo", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Aggregate. + /// + public static string PivotView_Aggregate { + get { + return ResourceManager.GetString("PivotView_Aggregate", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Alert. + /// + public static string PivotView_Alert { + get { + return ResourceManager.GetString("PivotView_Alert", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to All. + /// + public static string PivotView_All { + get { + return ResourceManager.GetString("PivotView_All", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to All Fields. + /// + public static string PivotView_AllFields { + get { + return ResourceManager.GetString("PivotView_AllFields", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to All Values. + /// + public static string PivotView_AllValues { + get { + return ResourceManager.GetString("PivotView_AllValues", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to and. + /// + public static string PivotView_And { + get { + return ResourceManager.GetString("PivotView_And", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Apply. + /// + public static string PivotView_Apply { + get { + return ResourceManager.GetString("PivotView_Apply", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Area. + /// + public static string PivotView_Area { + get { + return ResourceManager.GetString("PivotView_Area", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Ascending. + /// + public static string PivotView_Ascending { + get { + return ResourceManager.GetString("PivotView_Ascending", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Avg. + /// + public static string PivotView_Avg { + get { + return ResourceManager.GetString("PivotView_Avg", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Bar. + /// + public static string PivotView_Bar { + get { + return ResourceManager.GetString("PivotView_Bar", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Base field. + /// + public static string PivotView_BaseField { + get { + return ResourceManager.GetString("PivotView_BaseField", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Base item. + /// + public static string PivotView_BaseItem { + get { + return ResourceManager.GetString("PivotView_BaseItem", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Before. + /// + public static string PivotView_Before { + get { + return ResourceManager.GetString("PivotView_Before", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Before Or Equal To. + /// + public static string PivotView_BeforeOrEqualTo { + get { + return ResourceManager.GetString("PivotView_BeforeOrEqualTo", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Begins With. + /// + public static string PivotView_BeginWith { + get { + return ResourceManager.GetString("PivotView_BeginWith", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Between. + /// + public static string PivotView_Between { + get { + return ResourceManager.GetString("PivotView_Between", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to (Blank). + /// + public static string PivotView_Blank { + get { + return ResourceManager.GetString("PivotView_Blank", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Bubble. + /// + public static string PivotView_Bubble { + get { + return ResourceManager.GetString("PivotView_Bubble", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to by. + /// + public static string PivotView_By { + get { + return ResourceManager.GetString("PivotView_By", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Calculated Field. + /// + public static string PivotView_CalculatedField { + get { + return ResourceManager.GetString("PivotView_CalculatedField", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Clear edited field info. + /// + public static string PivotView_CalculatedField_ClearTooltipMessage { + get { + return ResourceManager.GetString("PivotView_CalculatedField_ClearTooltipMessage", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to A calculation field already exists in this name. Do you want to replace it?. + /// + public static string PivotView_CalculatedField_ConfirmMessage { + get { + return ResourceManager.GetString("PivotView_CalculatedField_ConfirmMessage", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Drag and drop fields to formula. + /// + public static string PivotView_CalculatedField_DragDropMessage { + get { + return ResourceManager.GetString("PivotView_CalculatedField_DragDropMessage", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Drag field to formula. + /// + public static string PivotView_CalculatedField_DragMessage { + get { + return ResourceManager.GetString("PivotView_CalculatedField_DragMessage", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Calculated field cannot be place in any other region except value axis.. + /// + public static string PivotView_CalculatedField_DropMessage { + get { + return ResourceManager.GetString("PivotView_CalculatedField_DropMessage", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Edit calculated field. + /// + public static string PivotView_CalculatedField_EditTooltipMessage { + get { + return ResourceManager.GetString("PivotView_CalculatedField_EditTooltipMessage", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Example: ('Sum(Order_Count)' + 'Sum(In_Stock)') * 250. + /// + public static string PivotView_CalculatedField_ExampleWatermark { + get { + return ResourceManager.GetString("PivotView_CalculatedField_ExampleWatermark", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to A field already exists in this name. Please enter a different name.. + /// + public static string PivotView_CalculatedField_ExistMessage { + get { + return ResourceManager.GetString("PivotView_CalculatedField_ExistMessage", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Add fields and edit formula here.. + /// + public static string PivotView_CalculatedField_MobileWatermark { + get { + return ResourceManager.GetString("PivotView_CalculatedField_MobileWatermark", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Enter the field name. + /// + public static string PivotView_CalculatedField_NameWatermark { + get { + return ResourceManager.GetString("PivotView_CalculatedField_NameWatermark", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Example: [Measures].[Order Quantity] + ([Measures].[Order Quantity] * 0.10). + /// + public static string PivotView_CalculatedField_OLAPExampleWatermark { + get { + return ResourceManager.GetString("PivotView_CalculatedField_OLAPExampleWatermark", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Are you sure you want to delete this calculated field?. + /// + public static string PivotView_CalculatedField_RemoveMessage { + get { + return ResourceManager.GetString("PivotView_CalculatedField_RemoveMessage", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Drag and drop fields to create an expression. And, if you want to edit the existing the calculated fields! Then you can achieve it by simply selecting the field under 'Calculated Members'.. + /// + public static string PivotView_CalculatedField_Tooltip { + get { + return ResourceManager.GetString("PivotView_CalculatedField_Tooltip", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Cancel. + /// + public static string PivotView_Cancel { + get { + return ResourceManager.GetString("PivotView_Cancel", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Chart. + /// + public static string PivotView_Chart { + get { + return ResourceManager.GetString("PivotView_Chart", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Chart Type. + /// + public static string PivotView_ChartType { + get { + return ResourceManager.GetString("PivotView_ChartType", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Chart Type Settings. + /// + public static string PivotView_ChartTypeSettings { + get { + return ResourceManager.GetString("PivotView_ChartTypeSettings", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Choose field. + /// + public static string PivotView_ChooseFieldMessage { + get { + return ResourceManager.GetString("PivotView_ChooseFieldMessage", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Clear. + /// + public static string PivotView_Clear { + get { + return ResourceManager.GetString("PivotView_Clear", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Clear. + /// + public static string PivotView_ClearFilter { + get { + return ResourceManager.GetString("PivotView_ClearFilter", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Close. + /// + public static string PivotView_Close { + get { + return ResourceManager.GetString("PivotView_Close", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Collapse. + /// + public static string PivotView_Collapse { + get { + return ResourceManager.GetString("PivotView_Collapse", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Column. + /// + public static string PivotView_Column { + get { + return ResourceManager.GetString("PivotView_Column", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Drop column here. + /// + public static string PivotView_ColumnAxisWatermark { + get { + return ResourceManager.GetString("PivotView_ColumnAxisWatermark", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Columns. + /// + public static string PivotView_Columns { + get { + return ResourceManager.GetString("PivotView_Columns", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Conditional Formatting. + /// + public static string PivotView_ConditionalFormating { + get { + return ResourceManager.GetString("PivotView_ConditionalFormating", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Conditional Formatting.... + /// + public static string PivotView_ConditionalFormatingMenu { + get { + return ResourceManager.GetString("PivotView_ConditionalFormatingMenu", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Conditional formatting. + /// + public static string PivotView_ConditionalFormatting { + get { + return ResourceManager.GetString("PivotView_ConditionalFormatting", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Contains. + /// + public static string PivotView_Contains { + get { + return ResourceManager.GetString("PivotView_Contains", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Copy. + /// + public static string PivotView_Copy { + get { + return ResourceManager.GetString("PivotView_Copy", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Count. + /// + public static string PivotView_Count { + get { + return ResourceManager.GetString("PivotView_Count", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Create Calculated Field. + /// + public static string PivotView_CreateCalculatedField { + get { + return ResourceManager.GetString("PivotView_CreateCalculatedField", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to CSV. + /// + public static string PivotView_CSV { + get { + return ResourceManager.GetString("PivotView_CSV", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Currency. + /// + public static string PivotView_Currency { + get { + return ResourceManager.GetString("PivotView_Currency", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Currency Symbol. + /// + public static string PivotView_CurrencySymbol { + get { + return ResourceManager.GetString("PivotView_CurrencySymbol", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Custom. + /// + public static string PivotView_Custom { + get { + return ResourceManager.GetString("PivotView_Custom", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Custom Format. + /// + public static string PivotView_CustomFormat { + get { + return ResourceManager.GetString("PivotView_CustomFormat", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Enter custom format string. + /// + public static string PivotView_CustomFormatMessage { + get { + return ResourceManager.GetString("PivotView_CustomFormatMessage", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Date. + /// + public static string PivotView_Date { + get { + return ResourceManager.GetString("PivotView_Date", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Show the items for which the date. + /// + public static string PivotView_DateTextMessage { + get { + return ResourceManager.GetString("PivotView_DateTextMessage", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Days. + /// + public static string PivotView_Days { + get { + return ResourceManager.GetString("PivotView_Days", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Decimal Places. + /// + public static string PivotView_DecimalPlaces { + get { + return ResourceManager.GetString("PivotView_DecimalPlaces", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Defer Layout Update. + /// + public static string PivotView_DeferLayoutUpdate { + get { + return ResourceManager.GetString("PivotView_DeferLayoutUpdate", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Delete. + /// + public static string PivotView_Delete { + get { + return ResourceManager.GetString("PivotView_Delete", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Delete a current report. + /// + public static string PivotView_DeleteReport { + get { + return ResourceManager.GetString("PivotView_DeleteReport", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Descending. + /// + public static string PivotView_Descending { + get { + return ResourceManager.GetString("PivotView_Descending", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Details. + /// + public static string PivotView_Details { + get { + return ResourceManager.GetString("PivotView_Details", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Difference From. + /// + public static string PivotView_DifferenceFrom { + get { + return ResourceManager.GetString("PivotView_DifferenceFrom", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Dimension. + /// + public static string PivotView_Dimension { + get { + return ResourceManager.GetString("PivotView_Dimension", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Distinct Count. + /// + public static string PivotView_DistinctCount { + get { + return ResourceManager.GetString("PivotView_DistinctCount", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Does Not Begin With. + /// + public static string PivotView_DoesNotBeginWith { + get { + return ResourceManager.GetString("PivotView_DoesNotBeginWith", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Does Not Contain. + /// + public static string PivotView_DoesNotContains { + get { + return ResourceManager.GetString("PivotView_DoesNotContains", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Does Not End With. + /// + public static string PivotView_DoesNotEndsWith { + get { + return ResourceManager.GetString("PivotView_DoesNotEndsWith", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Does Not Equal. + /// + public static string PivotView_DoesNotEquals { + get { + return ResourceManager.GetString("PivotView_DoesNotEquals", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Do not show grand totals. + /// + public static string PivotView_DoNotShowGrandTotals { + get { + return ResourceManager.GetString("PivotView_DoNotShowGrandTotals", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Do not show sub totals. + /// + public static string PivotView_DoNotShowSubtotals { + get { + return ResourceManager.GetString("PivotView_DoNotShowSubtotals", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Doughnut. + /// + public static string PivotView_Doughnut { + get { + return ResourceManager.GetString("PivotView_Doughnut", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Drag. + /// + public static string PivotView_Drag { + get { + return ResourceManager.GetString("PivotView_Drag", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Drag fields between axes below:. + /// + public static string PivotView_DragFieldsMessage { + get { + return ResourceManager.GetString("PivotView_DragFieldsMessage", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Drill Through. + /// + public static string PivotView_DrillThrough { + get { + return ResourceManager.GetString("PivotView_DrillThrough", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Cannot show the raw items of calculated fields.. + /// + public static string PivotView_DrillThroughErrorMessage { + get { + return ResourceManager.GetString("PivotView_DrillThroughErrorMessage", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Edit. + /// + public static string PivotView_Edit { + get { + return ResourceManager.GetString("PivotView_Edit", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to No records to display. + /// + public static string PivotView_EmptyRecordsMessage { + get { + return ResourceManager.GetString("PivotView_EmptyRecordsMessage", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to No reports found!!. + /// + public static string PivotView_EmptyReportMessage { + get { + return ResourceManager.GetString("PivotView_EmptyReportMessage", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Ending at. + /// + public static string PivotView_EndAt { + get { + return ResourceManager.GetString("PivotView_EndAt", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Ends With. + /// + public static string PivotView_EndsWith { + get { + return ResourceManager.GetString("PivotView_EndsWith", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Enter date. + /// + public static string PivotView_EnterDate { + get { + return ResourceManager.GetString("PivotView_EnterDate", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Enter a report name. + /// + public static string PivotView_EnterReportNameMessage { + get { + return ResourceManager.GetString("PivotView_EnterReportNameMessage", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Enter value. + /// + public static string PivotView_EnterValue { + get { + return ResourceManager.GetString("PivotView_EnterValue", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Equals. + /// + public static string PivotView_Equals { + get { + return ResourceManager.GetString("PivotView_Equals", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Error. + /// + public static string PivotView_Error { + get { + return ResourceManager.GetString("PivotView_Error", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to e.g:. + /// + public static string PivotView_Example { + get { + return ResourceManager.GetString("PivotView_Example", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Excel. + /// + public static string PivotView_Excel { + get { + return ResourceManager.GetString("PivotView_Excel", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Expand. + /// + public static string PivotView_Expand { + get { + return ResourceManager.GetString("PivotView_Expand", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Export. + /// + public static string PivotView_Export { + get { + return ResourceManager.GetString("PivotView_Export", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Expression. + /// + public static string PivotView_Expression { + get { + return ResourceManager.GetString("PivotView_Expression", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to False. + /// + public static string PivotView_False { + get { + return ResourceManager.GetString("PivotView_False", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Field Caption. + /// + public static string PivotView_FieldCaption { + get { + return ResourceManager.GetString("PivotView_FieldCaption", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Field caption. + /// + public static string PivotView_FieldCaptionMessage { + get { + return ResourceManager.GetString("PivotView_FieldCaptionMessage", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Enter the field caption. + /// + public static string PivotView_FieldCaptionWatermark { + get { + return ResourceManager.GetString("PivotView_FieldCaptionWatermark", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to The field you are moving cannot be placed in that area of the report. + /// + public static string PivotView_FieldDropErrorMessage { + get { + return ResourceManager.GetString("PivotView_FieldDropErrorMessage", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Field List. + /// + public static string PivotView_FieldList { + get { + return ResourceManager.GetString("PivotView_FieldList", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Field Name. + /// + public static string PivotView_FieldName { + get { + return ResourceManager.GetString("PivotView_FieldName", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Field name :. + /// + public static string PivotView_FieldNameMessage { + get { + return ResourceManager.GetString("PivotView_FieldNameMessage", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Field Type. + /// + public static string PivotView_FieldType { + get { + return ResourceManager.GetString("PivotView_FieldType", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Filter. + /// + public static string PivotView_Filter { + get { + return ResourceManager.GetString("PivotView_Filter", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Drop filter here. + /// + public static string PivotView_FilterAxisWatermark { + get { + return ResourceManager.GetString("PivotView_FilterAxisWatermark", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Filtered. + /// + public static string PivotView_Filtered { + get { + return ResourceManager.GetString("PivotView_Filtered", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Filters. + /// + public static string PivotView_Filters { + get { + return ResourceManager.GetString("PivotView_Filters", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Format. + /// + public static string PivotView_Format { + get { + return ResourceManager.GetString("PivotView_Format", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Format String. + /// + public static string PivotView_FormatString { + get { + return ResourceManager.GetString("PivotView_FormatString", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Format Type. + /// + public static string PivotView_FormatType { + get { + return ResourceManager.GetString("PivotView_FormatType", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Formula. + /// + public static string PivotView_Formula { + get { + return ResourceManager.GetString("PivotView_Formula", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Funnel. + /// + public static string PivotView_Funnel { + get { + return ResourceManager.GetString("PivotView_Funnel", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Grand Total. + /// + public static string PivotView_GrandTotal { + get { + return ResourceManager.GetString("PivotView_GrandTotal", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Grand totals. + /// + public static string PivotView_GrandTotals { + get { + return ResourceManager.GetString("PivotView_GrandTotals", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Greater Than. + /// + public static string PivotView_GreaterThan { + get { + return ResourceManager.GetString("PivotView_GreaterThan", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Greater Than Or Equal To. + /// + public static string PivotView_GreaterThanOrEqualTo { + get { + return ResourceManager.GetString("PivotView_GreaterThanOrEqualTo", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Group. + /// + public static string PivotView_Group { + get { + return ResourceManager.GetString("PivotView_Group", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Enter the caption to display in header. + /// + public static string PivotView_GroupCaptionMessage { + get { + return ResourceManager.GetString("PivotView_GroupCaptionMessage", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Grouped. + /// + public static string PivotView_Grouped { + get { + return ResourceManager.GetString("PivotView_Grouped", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Enter the caption for group field. + /// + public static string PivotView_GroupFieldCaptionMessage { + get { + return ResourceManager.GetString("PivotView_GroupFieldCaptionMessage", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Grouping. + /// + public static string PivotView_Grouping { + get { + return ResourceManager.GetString("PivotView_Grouping", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Group name. + /// + public static string PivotView_GroupName { + get { + return ResourceManager.GetString("PivotView_GroupName", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Hours. + /// + public static string PivotView_Hours { + get { + return ResourceManager.GetString("PivotView_Hours", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Index. + /// + public static string PivotView_Index { + get { + return ResourceManager.GetString("PivotView_Index", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Interval by. + /// + public static string PivotView_IntervalBy { + get { + return ResourceManager.GetString("PivotView_IntervalBy", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Invalid Format.. + /// + public static string PivotView_InvalidFormat { + get { + return ResourceManager.GetString("PivotView_InvalidFormat", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Invalid formula.. + /// + public static string PivotView_InvalidFormula { + get { + return ResourceManager.GetString("PivotView_InvalidFormula", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Cannot group that selection.. + /// + public static string PivotView_InvalidGroupSelectionMessage { + get { + return ResourceManager.GetString("PivotView_InvalidGroupSelectionMessage", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to JPEG. + /// + public static string PivotView_JPEG { + get { + return ResourceManager.GetString("PivotView_JPEG", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Label. + /// + public static string PivotView_Label { + get { + return ResourceManager.GetString("PivotView_Label", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Show the items for which the label. + /// + public static string PivotView_LabelTextMessage { + get { + return ResourceManager.GetString("PivotView_LabelTextMessage", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Left. + /// + public static string PivotView_Left { + get { + return ResourceManager.GetString("PivotView_Left", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Less Than. + /// + public static string PivotView_LessThan { + get { + return ResourceManager.GetString("PivotView_LessThan", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Less Than Or Equal To. + /// + public static string PivotView_LessThanOrEqualTo { + get { + return ResourceManager.GetString("PivotView_LessThanOrEqualTo", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Line. + /// + public static string PivotView_Line { + get { + return ResourceManager.GetString("PivotView_Line", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Load. + /// + public static string PivotView_LoadReport { + get { + return ResourceManager.GetString("PivotView_LoadReport", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Manage Records. + /// + public static string PivotView_ManageRecords { + get { + return ResourceManager.GetString("PivotView_ManageRecords", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Max. + /// + public static string PivotView_Max { + get { + return ResourceManager.GetString("PivotView_Max", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to MDX Query. + /// + public static string PivotView_MdxQuery { + get { + return ResourceManager.GetString("PivotView_MdxQuery", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Measure. + /// + public static string PivotView_Measure { + get { + return ResourceManager.GetString("PivotView_Measure", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Median. + /// + public static string PivotView_Median { + get { + return ResourceManager.GetString("PivotView_Median", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Member. + /// + public static string PivotView_Member { + get { + return ResourceManager.GetString("PivotView_Member", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to more items. Search to refine further.. + /// + public static string PivotView_MemberLimitMessage { + get { + return ResourceManager.GetString("PivotView_MemberLimitMessage", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Min. + /// + public static string PivotView_Min { + get { + return ResourceManager.GetString("PivotView_Min", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Minutes. + /// + public static string PivotView_Minutes { + get { + return ResourceManager.GetString("PivotView_Minutes", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Months. + /// + public static string PivotView_Months { + get { + return ResourceManager.GetString("PivotView_Months", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to More.... + /// + public static string PivotView_MoreOption { + get { + return ResourceManager.GetString("PivotView_MoreOption", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Multiple Axis. + /// + public static string PivotView_MultipleAxes { + get { + return ResourceManager.GetString("PivotView_MultipleAxes", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Multiple Axis Mode. + /// + public static string PivotView_MultipleAxisMode { + get { + return ResourceManager.GetString("PivotView_MultipleAxisMode", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Multiple items. + /// + public static string PivotView_MultipleItems { + get { + return ResourceManager.GetString("PivotView_MultipleItems", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Create a new report. + /// + public static string PivotView_NewReport { + get { + return ResourceManager.GetString("PivotView_NewReport", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Want to save changes to report?. + /// + public static string PivotView_NewReportConfirmMessage { + get { + return ResourceManager.GetString("PivotView_NewReportConfirmMessage", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to No. + /// + public static string PivotView_No { + get { + return ResourceManager.GetString("PivotView_No", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to No format found!!!. + /// + public static string PivotView_NoFormatMessage { + get { + return ResourceManager.GetString("PivotView_NoFormatMessage", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Enter a value. + /// + public static string PivotView_NoInputMessage { + get { + return ResourceManager.GetString("PivotView_NoInputMessage", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to No matches. + /// + public static string PivotView_NoMatchesMessage { + get { + return ResourceManager.GetString("PivotView_NoMatchesMessage", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Not Between. + /// + public static string PivotView_NotBetween { + get { + return ResourceManager.GetString("PivotView_NotBetween", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Not Equals. + /// + public static string PivotView_NotEquals { + get { + return ResourceManager.GetString("PivotView_NotEquals", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to No value. + /// + public static string PivotView_NoValue { + get { + return ResourceManager.GetString("PivotView_NoValue", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to null. + /// + public static string PivotView_Null { + get { + return ResourceManager.GetString("PivotView_Null", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Number. + /// + public static string PivotView_Number { + get { + return ResourceManager.GetString("PivotView_Number", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Example: C, P, 0000 %, ###0.##0#, etc.. + /// + public static string PivotView_NumberFormat_ExampleWatermark { + get { + return ResourceManager.GetString("PivotView_NumberFormat_ExampleWatermark", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Number Formatting.... + /// + public static string PivotView_NumberFormatMenu { + get { + return ResourceManager.GetString("PivotView_NumberFormatMenu", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Number Formatting. + /// + public static string PivotView_NumberFormatting { + get { + return ResourceManager.GetString("PivotView_NumberFormatting", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to of. + /// + public static string PivotView_Of { + get { + return ResourceManager.GetString("PivotView_Of", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to OK. + /// + public static string PivotView_OK { + get { + return ResourceManager.GetString("PivotView_OK", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Out of Range. + /// + public static string PivotView_OutOfRange { + get { + return ResourceManager.GetString("PivotView_OutOfRange", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Parent Hierarchy. + /// + public static string PivotView_ParentHierarchy { + get { + return ResourceManager.GetString("PivotView_ParentHierarchy", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Pareto. + /// + public static string PivotView_Pareto { + get { + return ResourceManager.GetString("PivotView_Pareto", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to PDF. + /// + public static string PivotView_PDF { + get { + return ResourceManager.GetString("PivotView_PDF", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Percent. + /// + public static string PivotView_Percent { + get { + return ResourceManager.GetString("PivotView_Percent", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Percentage. + /// + public static string PivotView_Percentage { + get { + return ResourceManager.GetString("PivotView_Percentage", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to % of Column Total. + /// + public static string PivotView_PercentageOfColumnTotal { + get { + return ResourceManager.GetString("PivotView_PercentageOfColumnTotal", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to % of Difference From. + /// + public static string PivotView_PercentageOfDifferenceFrom { + get { + return ResourceManager.GetString("PivotView_PercentageOfDifferenceFrom", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to % of Grand Total. + /// + public static string PivotView_PercentageOfGrandTotal { + get { + return ResourceManager.GetString("PivotView_PercentageOfGrandTotal", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to % of Parent Column Total. + /// + public static string PivotView_PercentageOfParentColumnTotal { + get { + return ResourceManager.GetString("PivotView_PercentageOfParentColumnTotal", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to % of Parent Row Total. + /// + public static string PivotView_PercentageOfParentRowTotal { + get { + return ResourceManager.GetString("PivotView_PercentageOfParentRowTotal", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to % of Parent Total. + /// + public static string PivotView_PercentageOfParentTotal { + get { + return ResourceManager.GetString("PivotView_PercentageOfParentTotal", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to % of Row Total. + /// + public static string PivotView_PercentageOfRowTotal { + get { + return ResourceManager.GetString("PivotView_PercentageOfRowTotal", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Pie. + /// + public static string PivotView_Pie { + get { + return ResourceManager.GetString("PivotView_Pie", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to PNG. + /// + public static string PivotView_PNG { + get { + return ResourceManager.GetString("PivotView_PNG", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Polar. + /// + public static string PivotView_Polar { + get { + return ResourceManager.GetString("PivotView_Polar", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Population StDev. + /// + public static string PivotView_PopulationStDev { + get { + return ResourceManager.GetString("PivotView_PopulationStDev", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Population Var. + /// + public static string PivotView_PopulationVar { + get { + return ResourceManager.GetString("PivotView_PopulationVar", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Product. + /// + public static string PivotView_Product { + get { + return ResourceManager.GetString("PivotView_Product", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Pyramid. + /// + public static string PivotView_Pyramid { + get { + return ResourceManager.GetString("PivotView_Pyramid", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Qtr. + /// + public static string PivotView_Quarter { + get { + return ResourceManager.GetString("PivotView_Quarter", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Quarters. + /// + public static string PivotView_Quarters { + get { + return ResourceManager.GetString("PivotView_Quarters", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Quarter Year. + /// + public static string PivotView_QuarterYear { + get { + return ResourceManager.GetString("PivotView_QuarterYear", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Radar. + /// + public static string PivotView_Radar { + get { + return ResourceManager.GetString("PivotView_Radar", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Remove. + /// + public static string PivotView_Remove { + get { + return ResourceManager.GetString("PivotView_Remove", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Are you sure want to delete this report?. + /// + public static string PivotView_RemoveReportConfirmMessage { + get { + return ResourceManager.GetString("PivotView_RemoveReportConfirmMessage", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Rename a current report. + /// + public static string PivotView_RenameReport { + get { + return ResourceManager.GetString("PivotView_RenameReport", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to already exists. Do you want to replace it?. + /// + public static string PivotView_ReplaceReport_AfterMessage { + get { + return ResourceManager.GetString("PivotView_ReplaceReport_AfterMessage", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to A report named. + /// + public static string PivotView_ReplaceReport_BeforeMessage { + get { + return ResourceManager.GetString("PivotView_ReplaceReport_BeforeMessage", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Report list. + /// + public static string PivotView_ReportList { + get { + return ResourceManager.GetString("PivotView_ReportList", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Report Name :. + /// + public static string PivotView_ReportNameMessage { + get { + return ResourceManager.GetString("PivotView_ReportNameMessage", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Right. + /// + public static string PivotView_Right { + get { + return ResourceManager.GetString("PivotView_Right", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Row. + /// + public static string PivotView_Row { + get { + return ResourceManager.GetString("PivotView_Row", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Drop row here. + /// + public static string PivotView_RowAxisWatermark { + get { + return ResourceManager.GetString("PivotView_RowAxisWatermark", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Rows. + /// + public static string PivotView_Rows { + get { + return ResourceManager.GetString("PivotView_Rows", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Running Totals. + /// + public static string PivotView_RunningTotals { + get { + return ResourceManager.GetString("PivotView_RunningTotals", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Sample report. + /// + public static string PivotView_SampleReport { + get { + return ResourceManager.GetString("PivotView_SampleReport", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Sample StDev. + /// + public static string PivotView_SampleStDev { + get { + return ResourceManager.GetString("PivotView_SampleStDev", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Sample Var. + /// + public static string PivotView_SampleVar { + get { + return ResourceManager.GetString("PivotView_SampleVar", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Save as current report. + /// + public static string PivotView_SaveAsReport { + get { + return ResourceManager.GetString("PivotView_SaveAsReport", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Save a report. + /// + public static string PivotView_SaveReport { + get { + return ResourceManager.GetString("PivotView_SaveReport", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Scatter. + /// + public static string PivotView_Scatter { + get { + return ResourceManager.GetString("PivotView_Scatter", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Search. + /// + public static string PivotView_Search { + get { + return ResourceManager.GetString("PivotView_Search", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Seconds. + /// + public static string PivotView_Seconds { + get { + return ResourceManager.GetString("PivotView_Seconds", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Selected items. + /// + public static string PivotView_SelectedItems { + get { + return ResourceManager.GetString("PivotView_SelectedItems", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Select groups. + /// + public static string PivotView_SelectGroups { + get { + return ResourceManager.GetString("PivotView_SelectGroups", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Show grand totals columns only. + /// + public static string PivotView_ShowColumnGrandTotalsOnly { + get { + return ResourceManager.GetString("PivotView_ShowColumnGrandTotalsOnly", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Show sub totals columns only. + /// + public static string PivotView_ShowColumnSubtotalsOnly { + get { + return ResourceManager.GetString("PivotView_ShowColumnSubtotalsOnly", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Show field list. + /// + public static string PivotView_ShowFieldList { + get { + return ResourceManager.GetString("PivotView_ShowFieldList", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Show grand totals. + /// + public static string PivotView_ShowGrandTotals { + get { + return ResourceManager.GetString("PivotView_ShowGrandTotals", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Show Legend. + /// + public static string PivotView_ShowLegend { + get { + return ResourceManager.GetString("PivotView_ShowLegend", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Show grand totals rows only. + /// + public static string PivotView_ShowRowGrandTotalsOnly { + get { + return ResourceManager.GetString("PivotView_ShowRowGrandTotalsOnly", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Show sub totals rows only. + /// + public static string PivotView_ShowRowSubtotalsOnly { + get { + return ResourceManager.GetString("PivotView_ShowRowSubtotalsOnly", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Show sub totals. + /// + public static string PivotView_ShowSubtotals { + get { + return ResourceManager.GetString("PivotView_ShowSubtotals", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Show table. + /// + public static string PivotView_ShowTable { + get { + return ResourceManager.GetString("PivotView_ShowTable", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Sort. + /// + public static string PivotView_Sort { + get { + return ResourceManager.GetString("PivotView_Sort", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Sort ascending order. + /// + public static string PivotView_SortAscending_TooltipMessage { + get { + return ResourceManager.GetString("PivotView_SortAscending_TooltipMessage", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Sort descending order. + /// + public static string PivotView_SortDescending_TooltipMessage { + get { + return ResourceManager.GetString("PivotView_SortDescending_TooltipMessage", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Sort data order. + /// + public static string PivotView_SortNone_TooltipMessage { + get { + return ResourceManager.GetString("PivotView_SortNone_TooltipMessage", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Spline. + /// + public static string PivotView_Spline { + get { + return ResourceManager.GetString("PivotView_Spline", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Spline Area. + /// + public static string PivotView_SplineArea { + get { + return ResourceManager.GetString("PivotView_SplineArea", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Stacked. + /// + public static string PivotView_Stacked { + get { + return ResourceManager.GetString("PivotView_Stacked", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Stacked Area. + /// + public static string PivotView_StackedArea { + get { + return ResourceManager.GetString("PivotView_StackedArea", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to 100% Stacked Area. + /// + public static string PivotView_StackedArea100 { + get { + return ResourceManager.GetString("PivotView_StackedArea100", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Stacked Bar. + /// + public static string PivotView_StackedBar { + get { + return ResourceManager.GetString("PivotView_StackedBar", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to 100% Stacked Bar. + /// + public static string PivotView_StackedBar100 { + get { + return ResourceManager.GetString("PivotView_StackedBar100", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Stacked Column. + /// + public static string PivotView_StackedColumn { + get { + return ResourceManager.GetString("PivotView_StackedColumn", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to 100% Stacked Column. + /// + public static string PivotView_StackedColumn100 { + get { + return ResourceManager.GetString("PivotView_StackedColumn100", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Standard. + /// + public static string PivotView_Standard { + get { + return ResourceManager.GetString("PivotView_Standard", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Starting at. + /// + public static string PivotView_StartAt { + get { + return ResourceManager.GetString("PivotView_StartAt", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Pivot Field List. + /// + public static string PivotView_StaticFieldList { + get { + return ResourceManager.GetString("PivotView_StaticFieldList", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Step Area. + /// + public static string PivotView_StepArea { + get { + return ResourceManager.GetString("PivotView_StepArea", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Step Line. + /// + public static string PivotView_StepLine { + get { + return ResourceManager.GetString("PivotView_StepLine", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Sub totals. + /// + public static string PivotView_Subtotals { + get { + return ResourceManager.GetString("PivotView_Subtotals", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Sum. + /// + public static string PivotView_Sum { + get { + return ResourceManager.GetString("PivotView_Sum", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Summaries values by. + /// + public static string PivotView_Summaries { + get { + return ResourceManager.GetString("PivotView_Summaries", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Summarize values by. + /// + public static string PivotView_SummarizeValuesBy { + get { + return ResourceManager.GetString("PivotView_SummarizeValuesBy", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to SVG. + /// + public static string PivotView_SVG { + get { + return ResourceManager.GetString("PivotView_SVG", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Symbol Position. + /// + public static string PivotView_SymbolPosition { + get { + return ResourceManager.GetString("PivotView_SymbolPosition", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Total. + /// + public static string PivotView_Total { + get { + return ResourceManager.GetString("PivotView_Total", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to True. + /// + public static string PivotView_True { + get { + return ResourceManager.GetString("PivotView_True", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to undefined. + /// + public static string PivotView_Undefined { + get { + return ResourceManager.GetString("PivotView_Undefined", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Ungroup. + /// + public static string PivotView_Ungroup { + get { + return ResourceManager.GetString("PivotView_Ungroup", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Please enter vaild report name!!!. + /// + public static string PivotView_ValidReportNameMessage { + get { + return ResourceManager.GetString("PivotView_ValidReportNameMessage", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Value. + /// + public static string PivotView_Value { + get { + return ResourceManager.GetString("PivotView_Value", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Drop value here. + /// + public static string PivotView_ValueAxisWatermark { + get { + return ResourceManager.GetString("PivotView_ValueAxisWatermark", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Value field settings. + /// + public static string PivotView_ValueFieldSettings { + get { + return ResourceManager.GetString("PivotView_ValueFieldSettings", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Values. + /// + public static string PivotView_Values { + get { + return ResourceManager.GetString("PivotView_Values", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Show the items for which. + /// + public static string PivotView_ValueTextMessage { + get { + return ResourceManager.GetString("PivotView_ValueTextMessage", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Warning. + /// + public static string PivotView_Warning { + get { + return ResourceManager.GetString("PivotView_Warning", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Years. + /// + public static string PivotView_Years { + get { + return ResourceManager.GetString("PivotView_Years", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Yes. + /// + public static string PivotView_Yes { + get { + return ResourceManager.GetString("PivotView_Yes", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Add Condition. + /// + public static string QueryBuilder_AddCondition { + get { + return ResourceManager.GetString("QueryBuilder_AddCondition", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Add Group. + /// + public static string QueryBuilder_AddGroup { + get { + return ResourceManager.GetString("QueryBuilder_AddGroup", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to AND. + /// + public static string QueryBuilder_AND { + get { + return ResourceManager.GetString("QueryBuilder_AND", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Between. + /// + public static string QueryBuilder_Between { + get { + return ResourceManager.GetString("QueryBuilder_Between", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Contains. + /// + public static string QueryBuilder_Contains { + get { + return ResourceManager.GetString("QueryBuilder_Contains", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Delete group. + /// + public static string QueryBuilder_DeleteGroup { + get { + return ResourceManager.GetString("QueryBuilder_DeleteGroup", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Remove this condition. + /// + public static string QueryBuilder_DeleteRule { + get { + return ResourceManager.GetString("QueryBuilder_DeleteRule", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to EDIT. + /// + public static string QueryBuilder_Edit { + get { + return ResourceManager.GetString("QueryBuilder_Edit", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Empty. + /// + public static string QueryBuilder_Empty { + get { + return ResourceManager.GetString("QueryBuilder_Empty", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Ends With. + /// + public static string QueryBuilder_EndsWith { + get { + return ResourceManager.GetString("QueryBuilder_EndsWith", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Equal. + /// + public static string QueryBuilder_Equal { + get { + return ResourceManager.GetString("QueryBuilder_Equal", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Greater Than. + /// + public static string QueryBuilder_GreaterThan { + get { + return ResourceManager.GetString("QueryBuilder_GreaterThan", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Greater Than Or Equal. + /// + public static string QueryBuilder_GreaterThanOrEqual { + get { + return ResourceManager.GetString("QueryBuilder_GreaterThanOrEqual", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to In. + /// + public static string QueryBuilder_In { + get { + return ResourceManager.GetString("QueryBuilder_In", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Less Than. + /// + public static string QueryBuilder_LessThan { + get { + return ResourceManager.GetString("QueryBuilder_LessThan", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Less Than Or Equal. + /// + public static string QueryBuilder_LessThanOrEqual { + get { + return ResourceManager.GetString("QueryBuilder_LessThanOrEqual", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Not Between. + /// + public static string QueryBuilder_NotBetween { + get { + return ResourceManager.GetString("QueryBuilder_NotBetween", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Not Contains. + /// + public static string QueryBuilder_NotContains { + get { + return ResourceManager.GetString("QueryBuilder_NotContains", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Not Empty. + /// + public static string QueryBuilder_NotEmpty { + get { + return ResourceManager.GetString("QueryBuilder_NotEmpty", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Not Equal. + /// + public static string QueryBuilder_NotEqual { + get { + return ResourceManager.GetString("QueryBuilder_NotEqual", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Not In. + /// + public static string QueryBuilder_NotIn { + get { + return ResourceManager.GetString("QueryBuilder_NotIn", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to OR. + /// + public static string QueryBuilder_OR { + get { + return ResourceManager.GetString("QueryBuilder_OR", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Other Fields. + /// + public static string QueryBuilder_OtherFields { + get { + return ResourceManager.GetString("QueryBuilder_OtherFields", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to REMOVE. + /// + public static string QueryBuilder_Remove { + get { + return ResourceManager.GetString("QueryBuilder_Remove", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Select a field. + /// + public static string QueryBuilder_SelectField { + get { + return ResourceManager.GetString("QueryBuilder_SelectField", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Select operator. + /// + public static string QueryBuilder_SelectOperator { + get { + return ResourceManager.GetString("QueryBuilder_SelectOperator", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Enter Value. + /// + public static string QueryBuilder_SelectValue { + get { + return ResourceManager.GetString("QueryBuilder_SelectValue", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Starts With. + /// + public static string QueryBuilder_StartsWith { + get { + return ResourceManager.GetString("QueryBuilder_StartsWith", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Summary View. + /// + public static string QueryBuilder_SummaryViewTitle { + get { + return ResourceManager.GetString("QueryBuilder_SummaryViewTitle", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to This field is required. + /// + public static string QueryBuilder_ValidationMessage { + get { + return ResourceManager.GetString("QueryBuilder_ValidationMessage", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Count. + /// + public static string RecurrenceEditor_Count { + get { + return ResourceManager.GetString("RecurrenceEditor_Count", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Daily. + /// + public static string RecurrenceEditor_Daily { + get { + return ResourceManager.GetString("RecurrenceEditor_Daily", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Day(s). + /// + public static string RecurrenceEditor_Days { + get { + return ResourceManager.GetString("RecurrenceEditor_Days", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to End. + /// + public static string RecurrenceEditor_End { + get { + return ResourceManager.GetString("RecurrenceEditor_End", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to every. + /// + public static string RecurrenceEditor_Every { + get { + return ResourceManager.GetString("RecurrenceEditor_Every", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to First. + /// + public static string RecurrenceEditor_First { + get { + return ResourceManager.GetString("RecurrenceEditor_First", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Fourth. + /// + public static string RecurrenceEditor_Fourth { + get { + return ResourceManager.GetString("RecurrenceEditor_Fourth", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Last. + /// + public static string RecurrenceEditor_Last { + get { + return ResourceManager.GetString("RecurrenceEditor_Last", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Month. + /// + public static string RecurrenceEditor_Month { + get { + return ResourceManager.GetString("RecurrenceEditor_Month", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Month Expander. + /// + public static string RecurrenceEditor_MonthExpander { + get { + return ResourceManager.GetString("RecurrenceEditor_MonthExpander", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Monthly. + /// + public static string RecurrenceEditor_Monthly { + get { + return ResourceManager.GetString("RecurrenceEditor_Monthly", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Month Position. + /// + public static string RecurrenceEditor_MonthPosition { + get { + return ResourceManager.GetString("RecurrenceEditor_MonthPosition", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Month(s). + /// + public static string RecurrenceEditor_Months { + get { + return ResourceManager.GetString("RecurrenceEditor_Months", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Month Week. + /// + public static string RecurrenceEditor_MonthWeek { + get { + return ResourceManager.GetString("RecurrenceEditor_MonthWeek", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Never. + /// + public static string RecurrenceEditor_Never { + get { + return ResourceManager.GetString("RecurrenceEditor_Never", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to None. + /// + public static string RecurrenceEditor_None { + get { + return ResourceManager.GetString("RecurrenceEditor_None", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to On. + /// + public static string RecurrenceEditor_On { + get { + return ResourceManager.GetString("RecurrenceEditor_On", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Day. + /// + public static string RecurrenceEditor_OnDay { + get { + return ResourceManager.GetString("RecurrenceEditor_OnDay", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Repeat. + /// + public static string RecurrenceEditor_Repeat { + get { + return ResourceManager.GetString("RecurrenceEditor_Repeat", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Repeat every. + /// + public static string RecurrenceEditor_RepeatEvery { + get { + return ResourceManager.GetString("RecurrenceEditor_RepeatEvery", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Repeat Interval. + /// + public static string RecurrenceEditor_RepeatInterval { + get { + return ResourceManager.GetString("RecurrenceEditor_RepeatInterval", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Second. + /// + public static string RecurrenceEditor_Second { + get { + return ResourceManager.GetString("RecurrenceEditor_Second", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to day(s). + /// + public static string RecurrenceEditor_SummaryDay { + get { + return ResourceManager.GetString("RecurrenceEditor_SummaryDay", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to month(s). + /// + public static string RecurrenceEditor_SummaryMonth { + get { + return ResourceManager.GetString("RecurrenceEditor_SummaryMonth", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to on. + /// + public static string RecurrenceEditor_SummaryOn { + get { + return ResourceManager.GetString("RecurrenceEditor_SummaryOn", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Repeats. + /// + public static string RecurrenceEditor_SummaryRepeat { + get { + return ResourceManager.GetString("RecurrenceEditor_SummaryRepeat", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to time(s). + /// + public static string RecurrenceEditor_SummaryTimes { + get { + return ResourceManager.GetString("RecurrenceEditor_SummaryTimes", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to until. + /// + public static string RecurrenceEditor_SummaryUntil { + get { + return ResourceManager.GetString("RecurrenceEditor_SummaryUntil", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to week(s). + /// + public static string RecurrenceEditor_SummaryWeek { + get { + return ResourceManager.GetString("RecurrenceEditor_SummaryWeek", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to year(s). + /// + public static string RecurrenceEditor_SummaryYear { + get { + return ResourceManager.GetString("RecurrenceEditor_SummaryYear", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Third. + /// + public static string RecurrenceEditor_Third { + get { + return ResourceManager.GetString("RecurrenceEditor_Third", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Until. + /// + public static string RecurrenceEditor_Until { + get { + return ResourceManager.GetString("RecurrenceEditor_Until", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Weekly. + /// + public static string RecurrenceEditor_Weekly { + get { + return ResourceManager.GetString("RecurrenceEditor_Weekly", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Week(s). + /// + public static string RecurrenceEditor_Weeks { + get { + return ResourceManager.GetString("RecurrenceEditor_Weeks", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Year Expander. + /// + public static string RecurrenceEditor_YearExpander { + get { + return ResourceManager.GetString("RecurrenceEditor_YearExpander", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Yearly. + /// + public static string RecurrenceEditor_Yearly { + get { + return ResourceManager.GetString("RecurrenceEditor_Yearly", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Year(s). + /// + public static string RecurrenceEditor_Years { + get { + return ResourceManager.GetString("RecurrenceEditor_Years", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Align. + /// + public static string RichTextEditor_Align { + get { + return ResourceManager.GetString("RichTextEditor_Align", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Alignments. + /// + public static string RichTextEditor_Alignments { + get { + return ResourceManager.GetString("RichTextEditor_Alignments", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Align Center. + /// + public static string RichTextEditor_AlignmentsDropDownCenter { + get { + return ResourceManager.GetString("RichTextEditor_AlignmentsDropDownCenter", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Align Justify. + /// + public static string RichTextEditor_AlignmentsDropDownJustify { + get { + return ResourceManager.GetString("RichTextEditor_AlignmentsDropDownJustify", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Align Left. + /// + public static string RichTextEditor_AlignmentsDropDownLeft { + get { + return ResourceManager.GetString("RichTextEditor_AlignmentsDropDownLeft", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Align Right. + /// + public static string RichTextEditor_AlignmentsDropDownRight { + get { + return ResourceManager.GetString("RichTextEditor_AlignmentsDropDownRight", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Alternative Text. + /// + public static string RichTextEditor_AlternateHeader { + get { + return ResourceManager.GetString("RichTextEditor_AlternateHeader", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Alternative Text. + /// + public static string RichTextEditor_AltText { + get { + return ResourceManager.GetString("RichTextEditor_AltText", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Background Color. + /// + public static string RichTextEditor_BackgroundColor { + get { + return ResourceManager.GetString("RichTextEditor_BackgroundColor", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Bold. + /// + public static string RichTextEditor_Bold { + get { + return ResourceManager.GetString("RichTextEditor_Bold", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Browse. + /// + public static string RichTextEditor_Browse { + get { + return ResourceManager.GetString("RichTextEditor_Browse", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Circle . + /// + public static string RichTextEditor_BulletFormatListCircle { + get { + return ResourceManager.GetString("RichTextEditor_BulletFormatListCircle", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Disc . + /// + public static string RichTextEditor_BulletFormatListDisc { + get { + return ResourceManager.GetString("RichTextEditor_BulletFormatListDisc", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to None . + /// + public static string RichTextEditor_BulletFormatListNone { + get { + return ResourceManager.GetString("RichTextEditor_BulletFormatListNone", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Square . + /// + public static string RichTextEditor_BulletFormatListSquare { + get { + return ResourceManager.GetString("RichTextEditor_BulletFormatListSquare", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Image Caption. + /// + public static string RichTextEditor_Caption { + get { + return ResourceManager.GetString("RichTextEditor_Caption", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Cell Padding. + /// + public static string RichTextEditor_Cellpadding { + get { + return ResourceManager.GetString("RichTextEditor_Cellpadding", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Cell Spacing. + /// + public static string RichTextEditor_Cellspacing { + get { + return ResourceManager.GetString("RichTextEditor_Cellspacing", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Clean Format. + /// + public static string RichTextEditor_CleanFormat { + get { + return ResourceManager.GetString("RichTextEditor_CleanFormat", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Clear All. + /// + public static string RichTextEditor_ClearAll { + get { + return ResourceManager.GetString("RichTextEditor_ClearAll", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Clear Format. + /// + public static string RichTextEditor_ClearFormat { + get { + return ResourceManager.GetString("RichTextEditor_ClearFormat", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Number of columns. + /// + public static string RichTextEditor_Columns { + get { + return ResourceManager.GetString("RichTextEditor_Columns", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Copy. + /// + public static string RichTextEditor_Copy { + get { + return ResourceManager.GetString("RichTextEditor_Copy", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Insert Hyperlink. + /// + public static string RichTextEditor_CreateLink { + get { + return ResourceManager.GetString("RichTextEditor_CreateLink", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Create Table. + /// + public static string RichTextEditor_CreateTable { + get { + return ResourceManager.GetString("RichTextEditor_CreateTable", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Cut. + /// + public static string RichTextEditor_Cut { + get { + return ResourceManager.GetString("RichTextEditor_Cut", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Delete Column. + /// + public static string RichTextEditor_DeleteColumn { + get { + return ResourceManager.GetString("RichTextEditor_DeleteColumn", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Delete Row. + /// + public static string RichTextEditor_DeleteRow { + get { + return ResourceManager.GetString("RichTextEditor_DeleteRow", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Cancel. + /// + public static string RichTextEditor_DialogCancel { + get { + return ResourceManager.GetString("RichTextEditor_DialogCancel", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Insert. + /// + public static string RichTextEditor_DialogInsert { + get { + return ResourceManager.GetString("RichTextEditor_DialogInsert", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Update. + /// + public static string RichTextEditor_DialogUpdate { + get { + return ResourceManager.GetString("RichTextEditor_DialogUpdate", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Change Size. + /// + public static string RichTextEditor_Dimension { + get { + return ResourceManager.GetString("RichTextEditor_Dimension", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Display. + /// + public static string RichTextEditor_Display { + get { + return ResourceManager.GetString("RichTextEditor_Display", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Edit Image. + /// + public static string RichTextEditor_EditImageHeader { + get { + return ResourceManager.GetString("RichTextEditor_EditImageHeader", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Edit Link. + /// + public static string RichTextEditor_EditLink { + get { + return ResourceManager.GetString("RichTextEditor_EditLink", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Font Color. + /// + public static string RichTextEditor_FontColor { + get { + return ResourceManager.GetString("RichTextEditor_FontColor", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Font Name. + /// + public static string RichTextEditor_FontName { + get { + return ResourceManager.GetString("RichTextEditor_FontName", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Arial . + /// + public static string RichTextEditor_FontNameArial { + get { + return ResourceManager.GetString("RichTextEditor_FontNameArial", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Georgia . + /// + public static string RichTextEditor_FontNameGeorgia { + get { + return ResourceManager.GetString("RichTextEditor_FontNameGeorgia", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Impact . + /// + public static string RichTextEditor_FontNameImpact { + get { + return ResourceManager.GetString("RichTextEditor_FontNameImpact", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Segoe UI . + /// + public static string RichTextEditor_FontNameSegoeUI { + get { + return ResourceManager.GetString("RichTextEditor_FontNameSegoeUI", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Tahoma . + /// + public static string RichTextEditor_FontNameTahoma { + get { + return ResourceManager.GetString("RichTextEditor_FontNameTahoma", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Times New Roman . + /// + public static string RichTextEditor_FontNameTimesNewRoman { + get { + return ResourceManager.GetString("RichTextEditor_FontNameTimesNewRoman", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Verdana . + /// + public static string RichTextEditor_FontNameVerdana { + get { + return ResourceManager.GetString("RichTextEditor_FontNameVerdana", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Font Size. + /// + public static string RichTextEditor_FontSize { + get { + return ResourceManager.GetString("RichTextEditor_FontSize", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Formats. + /// + public static string RichTextEditor_Formats { + get { + return ResourceManager.GetString("RichTextEditor_Formats", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Code . + /// + public static string RichTextEditor_FormatsDropDownCode { + get { + return ResourceManager.GetString("RichTextEditor_FormatsDropDownCode", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Heading 1 . + /// + public static string RichTextEditor_FormatsDropDownHeading1 { + get { + return ResourceManager.GetString("RichTextEditor_FormatsDropDownHeading1", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Heading 2 . + /// + public static string RichTextEditor_FormatsDropDownHeading2 { + get { + return ResourceManager.GetString("RichTextEditor_FormatsDropDownHeading2", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Heading 3 . + /// + public static string RichTextEditor_FormatsDropDownHeading3 { + get { + return ResourceManager.GetString("RichTextEditor_FormatsDropDownHeading3", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Heading 4 . + /// + public static string RichTextEditor_FormatsDropDownHeading4 { + get { + return ResourceManager.GetString("RichTextEditor_FormatsDropDownHeading4", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Heading 5 . + /// + public static string RichTextEditor_FormatsDropDownHeading5 { + get { + return ResourceManager.GetString("RichTextEditor_FormatsDropDownHeading5", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Heading 6 . + /// + public static string RichTextEditor_FormatsDropDownHeading6 { + get { + return ResourceManager.GetString("RichTextEditor_FormatsDropDownHeading6", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Paragraph . + /// + public static string RichTextEditor_FormatsDropDownParagraph { + get { + return ResourceManager.GetString("RichTextEditor_FormatsDropDownParagraph", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Quotation . + /// + public static string RichTextEditor_FormatsDropDownQuotation { + get { + return ResourceManager.GetString("RichTextEditor_FormatsDropDownQuotation", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Maximize. + /// + public static string RichTextEditor_Fullscreen { + get { + return ResourceManager.GetString("RichTextEditor_Fullscreen", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Insert Image. + /// + public static string RichTextEditor_Image { + get { + return ResourceManager.GetString("RichTextEditor_Image", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Alternate Text. + /// + public static string RichTextEditor_ImageAlternateText { + get { + return ResourceManager.GetString("RichTextEditor_ImageAlternateText", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Caption. + /// + public static string RichTextEditor_ImageCaption { + get { + return ResourceManager.GetString("RichTextEditor_ImageCaption", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Click here to upload. + /// + public static string RichTextEditor_ImageDeviceUploadMessage { + get { + return ResourceManager.GetString("RichTextEditor_ImageDeviceUploadMessage", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Break. + /// + public static string RichTextEditor_ImageDisplayDropDownBreak { + get { + return ResourceManager.GetString("RichTextEditor_ImageDisplayDropDownBreak", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Inline. + /// + public static string RichTextEditor_ImageDisplayDropDownInline { + get { + return ResourceManager.GetString("RichTextEditor_ImageDisplayDropDownInline", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Insert Image. + /// + public static string RichTextEditor_ImageHeader { + get { + return ResourceManager.GetString("RichTextEditor_ImageHeader", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Height. + /// + public static string RichTextEditor_ImageHeight { + get { + return ResourceManager.GetString("RichTextEditor_ImageHeight", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Insert Link. + /// + public static string RichTextEditor_ImageInsertLinkHeader { + get { + return ResourceManager.GetString("RichTextEditor_ImageInsertLinkHeader", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to You can also provide a link from the web. + /// + public static string RichTextEditor_ImageLinkHeader { + get { + return ResourceManager.GetString("RichTextEditor_ImageLinkHeader", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Image Size. + /// + public static string RichTextEditor_ImageSizeHeader { + get { + return ResourceManager.GetString("RichTextEditor_ImageSizeHeader", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Drop image here or browse to upload. + /// + public static string RichTextEditor_ImageUploadMessage { + get { + return ResourceManager.GetString("RichTextEditor_ImageUploadMessage", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to http://example.com/image.png. + /// + public static string RichTextEditor_ImageUrl { + get { + return ResourceManager.GetString("RichTextEditor_ImageUrl", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Width. + /// + public static string RichTextEditor_ImageWidth { + get { + return ResourceManager.GetString("RichTextEditor_ImageWidth", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Increase Indent. + /// + public static string RichTextEditor_Indent { + get { + return ResourceManager.GetString("RichTextEditor_Indent", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Insert Code. + /// + public static string RichTextEditor_InsertCode { + get { + return ResourceManager.GetString("RichTextEditor_InsertCode", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Insert Column Left. + /// + public static string RichTextEditor_InsertColumnLeft { + get { + return ResourceManager.GetString("RichTextEditor_InsertColumnLeft", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Insert Column Right. + /// + public static string RichTextEditor_InsertColumnRight { + get { + return ResourceManager.GetString("RichTextEditor_InsertColumnRight", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Insert Link. + /// + public static string RichTextEditor_InsertLink { + get { + return ResourceManager.GetString("RichTextEditor_InsertLink", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Insert Row After. + /// + public static string RichTextEditor_InsertRowAfter { + get { + return ResourceManager.GetString("RichTextEditor_InsertRowAfter", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Insert Row Before. + /// + public static string RichTextEditor_InsertRowBefore { + get { + return ResourceManager.GetString("RichTextEditor_InsertRowBefore", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Insert Table. + /// + public static string RichTextEditor_InsertTableBtn { + get { + return ResourceManager.GetString("RichTextEditor_InsertTableBtn", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Italic. + /// + public static string RichTextEditor_Italic { + get { + return ResourceManager.GetString("RichTextEditor_Italic", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Align Center. + /// + public static string RichTextEditor_JustifyCenter { + get { + return ResourceManager.GetString("RichTextEditor_JustifyCenter", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Align Justify. + /// + public static string RichTextEditor_JustifyFull { + get { + return ResourceManager.GetString("RichTextEditor_JustifyFull", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Align Left. + /// + public static string RichTextEditor_JustifyLeft { + get { + return ResourceManager.GetString("RichTextEditor_JustifyLeft", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Align Right. + /// + public static string RichTextEditor_JustifyRight { + get { + return ResourceManager.GetString("RichTextEditor_JustifyRight", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Keep Format. + /// + public static string RichTextEditor_KeepFormat { + get { + return ResourceManager.GetString("RichTextEditor_KeepFormat", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Insert Link. + /// + public static string RichTextEditor_LinkHeader { + get { + return ResourceManager.GetString("RichTextEditor_LinkHeader", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Open Link in New Window. + /// + public static string RichTextEditor_LinkOpenInNewWindow { + get { + return ResourceManager.GetString("RichTextEditor_LinkOpenInNewWindow", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Display Text. + /// + public static string RichTextEditor_LinkText { + get { + return ResourceManager.GetString("RichTextEditor_LinkText", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Enter a title. + /// + public static string RichTextEditor_LinkTitle { + get { + return ResourceManager.GetString("RichTextEditor_LinkTitle", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Title. + /// + public static string RichTextEditor_LinkTooltipLabel { + get { + return ResourceManager.GetString("RichTextEditor_LinkTooltipLabel", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to http://example.com. + /// + public static string RichTextEditor_LinkUrl { + get { + return ResourceManager.GetString("RichTextEditor_LinkUrl", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Web Address. + /// + public static string RichTextEditor_LinkWebUrl { + get { + return ResourceManager.GetString("RichTextEditor_LinkWebUrl", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Lower Case. + /// + public static string RichTextEditor_LowerCase { + get { + return ResourceManager.GetString("RichTextEditor_LowerCase", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Maximize. + /// + public static string RichTextEditor_Maximize { + get { + return ResourceManager.GetString("RichTextEditor_Maximize", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Please provide a URL for your image. + /// + public static string RichTextEditor_MdImageLink { + get { + return ResourceManager.GetString("RichTextEditor_MdImageLink", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Minimize. + /// + public static string RichTextEditor_Minimize { + get { + return ResourceManager.GetString("RichTextEditor_Minimize", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Lower Alpha . + /// + public static string RichTextEditor_NumberFormatListLowerAlpha { + get { + return ResourceManager.GetString("RichTextEditor_NumberFormatListLowerAlpha", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Lower Greek . + /// + public static string RichTextEditor_NumberFormatListLowerGreek { + get { + return ResourceManager.GetString("RichTextEditor_NumberFormatListLowerGreek", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Lower Roman . + /// + public static string RichTextEditor_NumberFormatListLowerRoman { + get { + return ResourceManager.GetString("RichTextEditor_NumberFormatListLowerRoman", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to None . + /// + public static string RichTextEditor_NumberFormatListNone { + get { + return ResourceManager.GetString("RichTextEditor_NumberFormatListNone", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Number . + /// + public static string RichTextEditor_NumberFormatListNumber { + get { + return ResourceManager.GetString("RichTextEditor_NumberFormatListNumber", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Upper Alpha . + /// + public static string RichTextEditor_NumberFormatListUpperAlpha { + get { + return ResourceManager.GetString("RichTextEditor_NumberFormatListUpperAlpha", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Upper Roman . + /// + public static string RichTextEditor_NumberFormatListUpperRoman { + get { + return ResourceManager.GetString("RichTextEditor_NumberFormatListUpperRoman", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Open Link. + /// + public static string RichTextEditor_OpenLink { + get { + return ResourceManager.GetString("RichTextEditor_OpenLink", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Numbered List. + /// + public static string RichTextEditor_OrderedList { + get { + return ResourceManager.GetString("RichTextEditor_OrderedList", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Decrease Indent. + /// + public static string RichTextEditor_Outdent { + get { + return ResourceManager.GetString("RichTextEditor_Outdent", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Paste. + /// + public static string RichTextEditor_Paste { + get { + return ResourceManager.GetString("RichTextEditor_Paste", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Cancel. + /// + public static string RichTextEditor_PasteDialogCancel { + get { + return ResourceManager.GetString("RichTextEditor_PasteDialogCancel", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to OK. + /// + public static string RichTextEditor_PasteDialogOk { + get { + return ResourceManager.GetString("RichTextEditor_PasteDialogOk", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Paste Options. + /// + public static string RichTextEditor_PasteFormat { + get { + return ResourceManager.GetString("RichTextEditor_PasteFormat", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Choose the formatting action. + /// + public static string RichTextEditor_PasteFormatContent { + get { + return ResourceManager.GetString("RichTextEditor_PasteFormatContent", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Plain Text. + /// + public static string RichTextEditor_PlainText { + get { + return ResourceManager.GetString("RichTextEditor_PlainText", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Preview. + /// + public static string RichTextEditor_Preview { + get { + return ResourceManager.GetString("RichTextEditor_Preview", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Print. + /// + public static string RichTextEditor_Print { + get { + return ResourceManager.GetString("RichTextEditor_Print", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Redo. + /// + public static string RichTextEditor_Redo { + get { + return ResourceManager.GetString("RichTextEditor_Redo", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Remove. + /// + public static string RichTextEditor_Remove { + get { + return ResourceManager.GetString("RichTextEditor_Remove", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Remove Link. + /// + public static string RichTextEditor_RemoveLink { + get { + return ResourceManager.GetString("RichTextEditor_RemoveLink", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Remove Table. + /// + public static string RichTextEditor_RemoveTable { + get { + return ResourceManager.GetString("RichTextEditor_RemoveTable", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Replace. + /// + public static string RichTextEditor_Replace { + get { + return ResourceManager.GetString("RichTextEditor_Replace", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Number of rows. + /// + public static string RichTextEditor_Rows { + get { + return ResourceManager.GetString("RichTextEditor_Rows", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Code View. + /// + public static string RichTextEditor_Sourcecode { + get { + return ResourceManager.GetString("RichTextEditor_Sourcecode", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Strikethrough. + /// + public static string RichTextEditor_Strikethrough { + get { + return ResourceManager.GetString("RichTextEditor_Strikethrough", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Styles. + /// + public static string RichTextEditor_Styles { + get { + return ResourceManager.GetString("RichTextEditor_Styles", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Subscript. + /// + public static string RichTextEditor_Subscript { + get { + return ResourceManager.GetString("RichTextEditor_Subscript", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Superscript. + /// + public static string RichTextEditor_Superscript { + get { + return ResourceManager.GetString("RichTextEditor_Superscript", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Table Cell Background. + /// + public static string RichTextEditor_TableCellBackground { + get { + return ResourceManager.GetString("RichTextEditor_TableCellBackground", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Table Cell Horizontal Align. + /// + public static string RichTextEditor_TableCellHorizontalAlign { + get { + return ResourceManager.GetString("RichTextEditor_TableCellHorizontalAlign", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Table Cell Vertical Align. + /// + public static string RichTextEditor_TableCellVerticalAlign { + get { + return ResourceManager.GetString("RichTextEditor_TableCellVerticalAlign", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Col. + /// + public static string RichTextEditor_TableColText { + get { + return ResourceManager.GetString("RichTextEditor_TableColText", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Table Columns. + /// + public static string RichTextEditor_TableColumns { + get { + return ResourceManager.GetString("RichTextEditor_TableColumns", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Insert Table. + /// + public static string RichTextEditor_TableDialogHeader { + get { + return ResourceManager.GetString("RichTextEditor_TableDialogHeader", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Edit Table. + /// + public static string RichTextEditor_TableEditHeader { + get { + return ResourceManager.GetString("RichTextEditor_TableEditHeader", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Table Edit Properties. + /// + public static string RichTextEditor_TableEditProperties { + get { + return ResourceManager.GetString("RichTextEditor_TableEditProperties", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Table Header. + /// + public static string RichTextEditor_TableHeader { + get { + return ResourceManager.GetString("RichTextEditor_TableHeader", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Heading. + /// + public static string RichTextEditor_TableHeadingText { + get { + return ResourceManager.GetString("RichTextEditor_TableHeadingText", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Delete column. + /// + public static string RichTextEditor_TableInsertColumnDropDownDelete { + get { + return ResourceManager.GetString("RichTextEditor_TableInsertColumnDropDownDelete", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Insert column left. + /// + public static string RichTextEditor_TableInsertColumnDropDownLeft { + get { + return ResourceManager.GetString("RichTextEditor_TableInsertColumnDropDownLeft", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Insert column right. + /// + public static string RichTextEditor_TableInsertColumnDropDownRight { + get { + return ResourceManager.GetString("RichTextEditor_TableInsertColumnDropDownRight", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Insert row after. + /// + public static string RichTextEditor_TableInsertRowDropDownAfter { + get { + return ResourceManager.GetString("RichTextEditor_TableInsertRowDropDownAfter", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Insert row before. + /// + public static string RichTextEditor_TableInsertRowDropDownBefore { + get { + return ResourceManager.GetString("RichTextEditor_TableInsertRowDropDownBefore", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Delete row. + /// + public static string RichTextEditor_TableInsertRowDropDownDelete { + get { + return ResourceManager.GetString("RichTextEditor_TableInsertRowDropDownDelete", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Table Remove. + /// + public static string RichTextEditor_TableRemove { + get { + return ResourceManager.GetString("RichTextEditor_TableRemove", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Table Rows. + /// + public static string RichTextEditor_TableRows { + get { + return ResourceManager.GetString("RichTextEditor_TableRows", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Alternate Rows. + /// + public static string RichTextEditor_TableStylesDropDownAlternateRows { + get { + return ResourceManager.GetString("RichTextEditor_TableStylesDropDownAlternateRows", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Dashed Borders. + /// + public static string RichTextEditor_TableStylesDropDownDashedBorder { + get { + return ResourceManager.GetString("RichTextEditor_TableStylesDropDownDashedBorder", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Align Bottom. + /// + public static string RichTextEditor_TableVerticalAlignDropDownBottom { + get { + return ResourceManager.GetString("RichTextEditor_TableVerticalAlignDropDownBottom", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Align Middle. + /// + public static string RichTextEditor_TableVerticalAlignDropDownMiddle { + get { + return ResourceManager.GetString("RichTextEditor_TableVerticalAlignDropDownMiddle", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Align Top. + /// + public static string RichTextEditor_TableVerticalAlignDropDownTop { + get { + return ResourceManager.GetString("RichTextEditor_TableVerticalAlignDropDownTop", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Width. + /// + public static string RichTextEditor_TableWidth { + get { + return ResourceManager.GetString("RichTextEditor_TableWidth", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Enter Text. + /// + public static string RichTextEditor_TextPlaceholder { + get { + return ResourceManager.GetString("RichTextEditor_TextPlaceholder", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Underline. + /// + public static string RichTextEditor_Underline { + get { + return ResourceManager.GetString("RichTextEditor_Underline", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Undo. + /// + public static string RichTextEditor_Undo { + get { + return ResourceManager.GetString("RichTextEditor_Undo", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Bulleted List. + /// + public static string RichTextEditor_UnorderedList { + get { + return ResourceManager.GetString("RichTextEditor_UnorderedList", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Upper Case. + /// + public static string RichTextEditor_UpperCase { + get { + return ResourceManager.GetString("RichTextEditor_UpperCase", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to ViewSide. + /// + public static string RichTextEditor_Viewside { + get { + return ResourceManager.GetString("RichTextEditor_Viewside", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Add title. + /// + public static string Schedule_AddTitle { + get { + return ResourceManager.GetString("Schedule_AddTitle", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Agenda. + /// + public static string Schedule_Agenda { + get { + return ResourceManager.GetString("Schedule_Agenda", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Alert. + /// + public static string Schedule_Alert { + get { + return ResourceManager.GetString("Schedule_Alert", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to All day. + /// + public static string Schedule_AllDay { + get { + return ResourceManager.GetString("Schedule_AllDay", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Begin From. + /// + public static string Schedule_BeginFrom { + get { + return ResourceManager.GetString("Schedule_BeginFrom", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Events cannot be scheduled within the blocked time range.. + /// + public static string Schedule_BlockAlert { + get { + return ResourceManager.GetString("Schedule_BlockAlert", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Cancel. + /// + public static string Schedule_Cancel { + get { + return ResourceManager.GetString("Schedule_Cancel", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Cancel. + /// + public static string Schedule_CancelButton { + get { + return ResourceManager.GetString("Schedule_CancelButton", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Close. + /// + public static string Schedule_Close { + get { + return ResourceManager.GetString("Schedule_Close", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to The duration of the event must be shorter than how frequently it occurs. Shorten the duration, or change the recurrence pattern in the recurrence event editor.. + /// + public static string Schedule_CreateError { + get { + return ResourceManager.GetString("Schedule_CreateError", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Create. + /// + public static string Schedule_CreateEvent { + get { + return ResourceManager.GetString("Schedule_CreateEvent", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Day. + /// + public static string Schedule_Day { + get { + return ResourceManager.GetString("Schedule_Day", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Delete. + /// + public static string Schedule_Delete { + get { + return ResourceManager.GetString("Schedule_Delete", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Delete. + /// + public static string Schedule_DeleteButton { + get { + return ResourceManager.GetString("Schedule_DeleteButton", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Are you sure you want to delete this event?. + /// + public static string Schedule_DeleteContent { + get { + return ResourceManager.GetString("Schedule_DeleteContent", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Delete Event. + /// + public static string Schedule_DeleteEvent { + get { + return ResourceManager.GetString("Schedule_DeleteEvent", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Are you sure you want to delete the selected events?. + /// + public static string Schedule_DeleteMultipleContent { + get { + return ResourceManager.GetString("Schedule_DeleteMultipleContent", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Delete Multiple Events. + /// + public static string Schedule_DeleteMultipleEvent { + get { + return ResourceManager.GetString("Schedule_DeleteMultipleEvent", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Entire Series. + /// + public static string Schedule_DeleteSeries { + get { + return ResourceManager.GetString("Schedule_DeleteSeries", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Delete Event. + /// + public static string Schedule_DeleteTitle { + get { + return ResourceManager.GetString("Schedule_DeleteTitle", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Description. + /// + public static string Schedule_Description { + get { + return ResourceManager.GetString("Schedule_Description", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Edit. + /// + public static string Schedule_Edit { + get { + return ResourceManager.GetString("Schedule_Edit", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to How would you like to change the appointment in the series?. + /// + public static string Schedule_EditContent { + get { + return ResourceManager.GetString("Schedule_EditContent", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Edit Event. + /// + public static string Schedule_EditEvent { + get { + return ResourceManager.GetString("Schedule_EditEvent", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Following Events. + /// + public static string Schedule_EditFollowingEvent { + get { + return ResourceManager.GetString("Schedule_EditFollowingEvent", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Edit Recurrence. + /// + public static string Schedule_EditRecurrence { + get { + return ResourceManager.GetString("Schedule_EditRecurrence", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Entire Series. + /// + public static string Schedule_EditSeries { + get { + return ResourceManager.GetString("Schedule_EditSeries", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Edit Event. + /// + public static string Schedule_EditTitle { + get { + return ResourceManager.GetString("Schedule_EditTitle", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to There are no events scheduled on this day.. + /// + public static string Schedule_EmptyContainer { + get { + return ResourceManager.GetString("Schedule_EmptyContainer", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to End. + /// + public static string Schedule_End { + get { + return ResourceManager.GetString("Schedule_End", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Ends At. + /// + public static string Schedule_EndAt { + get { + return ResourceManager.GetString("Schedule_EndAt", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to End Time. + /// + public static string Schedule_EndTime { + get { + return ResourceManager.GetString("Schedule_EndTime", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to End Time zone. + /// + public static string Schedule_EndTimezone { + get { + return ResourceManager.GetString("Schedule_EndTimezone", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to The entered date value is invalid.. + /// + public static string Schedule_InvalidDateError { + get { + return ResourceManager.GetString("Schedule_InvalidDateError", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Location. + /// + public static string Schedule_Location { + get { + return ResourceManager.GetString("Schedule_Location", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Month. + /// + public static string Schedule_Month { + get { + return ResourceManager.GetString("Schedule_Month", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Month Agenda. + /// + public static string Schedule_MonthAgenda { + get { + return ResourceManager.GetString("Schedule_MonthAgenda", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to more. + /// + public static string Schedule_More { + get { + return ResourceManager.GetString("Schedule_More", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to More Details. + /// + public static string Schedule_MoreDetails { + get { + return ResourceManager.GetString("Schedule_MoreDetails", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to New Event. + /// + public static string Schedule_NewEvent { + get { + return ResourceManager.GetString("Schedule_NewEvent", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Next. + /// + public static string Schedule_next { + get { + return ResourceManager.GetString("Schedule_next", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to No. + /// + public static string Schedule_No { + get { + return ResourceManager.GetString("Schedule_No", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to No events. + /// + public static string Schedule_NoEvents { + get { + return ResourceManager.GetString("Schedule_NoEvents", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to No Records. + /// + public static string Schedule_NoRecords { + get { + return ResourceManager.GetString("Schedule_NoRecords", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to (No Title). + /// + public static string Schedule_NoTitle { + get { + return ResourceManager.GetString("Schedule_NoTitle", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Occurrence. + /// + public static string Schedule_Occurrence { + get { + return ResourceManager.GetString("Schedule_Occurrence", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Ok. + /// + public static string Schedule_Ok { + get { + return ResourceManager.GetString("Schedule_Ok", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Previous. + /// + public static string Schedule_Previous { + get { + return ResourceManager.GetString("Schedule_Previous", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Recurrence. + /// + public static string Schedule_Recurrence { + get { + return ResourceManager.GetString("Schedule_Recurrence", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Repeat. + /// + public static string Schedule_Repeat { + get { + return ResourceManager.GetString("Schedule_Repeat", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Repeats. + /// + public static string Schedule_Repeats { + get { + return ResourceManager.GetString("Schedule_Repeats", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Two occurrences of the same event cannot occur on the same day.. + /// + public static string Schedule_SameDayAlert { + get { + return ResourceManager.GetString("Schedule_SameDayAlert", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Save. + /// + public static string Schedule_Save { + get { + return ResourceManager.GetString("Schedule_Save", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Save. + /// + public static string Schedule_SaveButton { + get { + return ResourceManager.GetString("Schedule_SaveButton", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Search Time zone. + /// + public static string Schedule_SearchTimezone { + get { + return ResourceManager.GetString("Schedule_SearchTimezone", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Items selected. + /// + public static string Schedule_SelectedItems { + get { + return ResourceManager.GetString("Schedule_SelectedItems", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Series. + /// + public static string Schedule_Series { + get { + return ResourceManager.GetString("Schedule_Series", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Do you want to cancel the changes made to specific instances of this series and match it to the whole series again?. + /// + public static string Schedule_SeriesChangeAlert { + get { + return ResourceManager.GetString("Schedule_SeriesChangeAlert", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Start. + /// + public static string Schedule_Start { + get { + return ResourceManager.GetString("Schedule_Start", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to The selected end date occurs before the start date.. + /// + public static string Schedule_StartEndError { + get { + return ResourceManager.GetString("Schedule_StartEndError", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Start Time. + /// + public static string Schedule_StartTime { + get { + return ResourceManager.GetString("Schedule_StartTime", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Start Time zone. + /// + public static string Schedule_StartTimezone { + get { + return ResourceManager.GetString("Schedule_StartTimezone", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Subject. + /// + public static string Schedule_Subject { + get { + return ResourceManager.GetString("Schedule_Subject", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Timeline Day. + /// + public static string Schedule_TimelineDay { + get { + return ResourceManager.GetString("Schedule_TimelineDay", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Timeline Month. + /// + public static string Schedule_TimelineMonth { + get { + return ResourceManager.GetString("Schedule_TimelineMonth", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Timeline Week. + /// + public static string Schedule_TimelineWeek { + get { + return ResourceManager.GetString("Schedule_TimelineWeek", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Timeline Work Week. + /// + public static string Schedule_TimelineWorkWeek { + get { + return ResourceManager.GetString("Schedule_TimelineWorkWeek", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Timeline Year. + /// + public static string Schedule_TimelineYear { + get { + return ResourceManager.GetString("Schedule_TimelineYear", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Time zone. + /// + public static string Schedule_Timezone { + get { + return ResourceManager.GetString("Schedule_Timezone", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Title. + /// + public static string Schedule_Title { + get { + return ResourceManager.GetString("Schedule_Title", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Today. + /// + public static string Schedule_Today { + get { + return ResourceManager.GetString("Schedule_Today", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Week. + /// + public static string Schedule_Week { + get { + return ResourceManager.GetString("Schedule_Week", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Week Agenda. + /// + public static string Schedule_WeekAgenda { + get { + return ResourceManager.GetString("Schedule_WeekAgenda", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Work Week. + /// + public static string Schedule_WorkWeek { + get { + return ResourceManager.GetString("Schedule_WorkWeek", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Work Week Agenda. + /// + public static string Schedule_WorkWeekAgenda { + get { + return ResourceManager.GetString("Schedule_WorkWeekAgenda", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to The recurrence pattern is not valid.. + /// + public static string Schedule_WrongPattern { + get { + return ResourceManager.GetString("Schedule_WrongPattern", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Yes. + /// + public static string Schedule_Yes { + get { + return ResourceManager.GetString("Schedule_Yes", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Decrease. + /// + public static string Slider_DecrementTitle { + get { + return ResourceManager.GetString("Slider_DecrementTitle", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Increase. + /// + public static string Slider_IncrementTitle { + get { + return ResourceManager.GetString("Slider_IncrementTitle", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Close. + /// + public static string Tab_CloseButtonTitle { + get { + return ResourceManager.GetString("Tab_CloseButtonTitle", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Choose a time. + /// + public static string TimePicker_Placeholder { + get { + return ResourceManager.GetString("TimePicker_Placeholder", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Close. + /// + public static string Toast_Close { + get { + return ResourceManager.GetString("Toast_Close", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Abort. + /// + public static string Uploader_Abort { + get { + return ResourceManager.GetString("Uploader_Abort", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Browse.... + /// + public static string Uploader_Browse { + get { + return ResourceManager.GetString("Uploader_Browse", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Cancel. + /// + public static string Uploader_Cancel { + get { + return ResourceManager.GetString("Uploader_Cancel", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Clear. + /// + public static string Uploader_Clear { + get { + return ResourceManager.GetString("Uploader_Clear", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Delete file. + /// + public static string Uploader_Delete { + get { + return ResourceManager.GetString("Uploader_Delete", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Or drop files here. + /// + public static string Uploader_DropFilesHint { + get { + return ResourceManager.GetString("Uploader_DropFilesHint", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to File upload canceled. + /// + public static string Uploader_FileUploadCancel { + get { + return ResourceManager.GetString("Uploader_FileUploadCancel", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Uploading. + /// + public static string Uploader_InProgress { + get { + return ResourceManager.GetString("Uploader_InProgress", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to File type is not allowed. + /// + public static string Uploader_InvalidFileType { + get { + return ResourceManager.GetString("Uploader_InvalidFileType", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to File size is too large. + /// + public static string Uploader_InvalidMaxFileSize { + get { + return ResourceManager.GetString("Uploader_InvalidMaxFileSize", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to File size is too small. + /// + public static string Uploader_invalidMinFileSize { + get { + return ResourceManager.GetString("Uploader_invalidMinFileSize", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Pause. + /// + public static string Uploader_Pause { + get { + return ResourceManager.GetString("Uploader_Pause", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to File upload paused. + /// + public static string Uploader_PauseUpload { + get { + return ResourceManager.GetString("Uploader_PauseUpload", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Ready to upload. + /// + public static string Uploader_ReadyToUploadMessage { + get { + return ResourceManager.GetString("Uploader_ReadyToUploadMessage", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Remove. + /// + public static string Uploader_Remove { + get { + return ResourceManager.GetString("Uploader_Remove", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Unable to remove file. + /// + public static string Uploader_RemovedFailedMessage { + get { + return ResourceManager.GetString("Uploader_RemovedFailedMessage", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to File removed successfully. + /// + public static string Uploader_RemovedSuccessMessage { + get { + return ResourceManager.GetString("Uploader_RemovedSuccessMessage", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Resume. + /// + public static string Uploader_Resume { + get { + return ResourceManager.GetString("Uploader_Resume", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Retry. + /// + public static string Uploader_Retry { + get { + return ResourceManager.GetString("Uploader_Retry", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Upload. + /// + public static string Uploader_Upload { + get { + return ResourceManager.GetString("Uploader_Upload", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to File failed to upload. + /// + public static string Uploader_UploadFailedMessage { + get { + return ResourceManager.GetString("Uploader_UploadFailedMessage", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to File uploaded successfully. + /// + public static string Uploader_UploadSuccessMessage { + get { + return ResourceManager.GetString("Uploader_UploadSuccessMessage", resourceCulture); + } + } + } +} diff --git a/KB-Samples/LargeDiagram/Resources/SfResources.ar.resx b/KB-Samples/LargeDiagram/Resources/SfResources.ar.resx new file mode 100644 index 00000000..3c16a924 --- /dev/null +++ b/KB-Samples/LargeDiagram/Resources/SfResources.ar.resx @@ -0,0 +1,6798 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + text/microsoft-resx + + + 2.0 + + + System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + الطلب فشل + + + لا توجد سجلات + + + اليوم + + + الطلب فشل + + + لا توجد سجلات + + + اختيار موعد + + + اليوم + + + تطبيق + + + إلغاء + + + نطاق مخصص + + + أيام + + + تاريخ الانتهاء + + + اختيار نطاق التاريخ + + + أيام مختارة + + + تاريخ البدء + + + اختيار التاريخ والوقت + + + اليوم + + + يوم + + + شهر + + + عام + + + ساعة + + + اللحظة + + + ثانيا + + + يوم من أيام الأسبوع + + + الطلب فشل + + + لا توجد سجلات + + + لا توجد سجلات + + + لا توجد سجلات + + + الطلب فشل + + + اختر الكل + + + إلغاء تحديد الكل + + + الطلب فشل + + + لا توجد سجلات + + + +${count} المزيد .. + + + اختر الكل + + + تم تحديد ${count} + + + إلغاء تحديد الكل + + + انخفاض القيمة + + + قيمة الزيادة + + + اختيار الوقت + + + إحباط + + + تصفح... + + + إلغاء + + + واضح + + + حذف ملف + + + أو إسقاط الملفات هنا + + + تم إلغاء تحميل الملف + + + تحميل + + + نوع الملف غير مسموح به + + + اسم الملف غير مسموح به + + + حجم الملف كبير جدا + + + حجم الملف صغير جدًا + + + وقفة + + + رفع ملف مؤقتا + + + جاهز للتحميل + + + إزالة + + + غير قادر على إزالة الملف + + + تمت إزالة الملف بنجاح + + + استئنف + + + إعادة المحاولة + + + رفع + + + فشل تحميل الملف + + + تم رفع الملف بنجاح + + + مقلاة + + + إعادة تعيين + + + إعادة تعيين التكبي + + + تكبير + + + تكبير + + + تصغير + + + تطبيق + + + إلغاء + + + تغيير النظام + + + تبديل التنسيق + + + أداة انتقاء اللون + + + زر الانقسام + + + الطلب فشل + + + نقل الكل من + + + نقل الكل إلى + + + تحرك لأسفل + + + انتقل من + + + الانتقال إلى + + + تحرك + + + لا توجد سجلات + + + اختر الكل + + + إلغاء تحديد الكل + + + عنصر قائمة البحث + + + إضافة شرط + + + إضافة مجموعة + + + و + + + ما بين + + + يحتوي على + + + حذف المجموعة + + + إزالة هذا الشرط + + + تعديل + + + فارغة + + + ينتهي بـ + + + مساو + + + أكثر من + + + أكبر من أو يساوي + + + في + + + أقل من + + + اصغر من او يساوي + + + ليس بينهم + + + لا يحتوي + + + غير فارغ + + + ليس متساوي + + + ليس في + + + أو + + + مجالات أخرى + + + إزالة + + + اختر المجال + + + حدد المشغل + + + أدخل القيمة + + + اختار القيمة + + + اختر النطاق + + + اختر التاريخ + + + ابدا ب + + + عرض ملخص + + + هذه الخانة مطلوبه + + + زيادة + + + تخفيض + + + خياري + + + الصورة غير موجودة + + + تكبير + + + التكبير + + + تصغير + + + إعادة تعيين + + + مقلاة + + + لا سجلات لعرضها + + + هوية شخصية + + + اسم + + + تاريخ البدء + + + تاريخ الانتهاء + + + المدة الزمنية + + + تقدم + + + الاعتماد + + + ملاحظات + + + تاريخ البدء الأساسي + + + تاريخ نهاية خط الأساس + + + اكتب + + + عوض + + + مصادر + + + معرف المورد + + + يوم + + + ساعة + + + دقيقة + + + أيام + + + ساعات + + + الدقائق + + + جنرال لواء + + + أعمدة مخصصة + + + اكتب ملاحظات + + + مهمة جديدة + + + معلومات المهمة + + + حفظ + + + إضافة + + + تعديل + + + تحديث + + + حذف + + + إلغاء + + + بحث + + + مهمة + + + مهام + + + تكبير + + + تصغير + + + تكبير لتناسب + + + اكسل التصدير + + + تصدير CSV + + + توسيع الكل + + + انهيار جميع + + + الجدول الزمني التالي + + + الجدول الزمني السابق + + + حسنا + + + هل أنت متأكد أنك تريد حذف السجل؟ + + + من عند + + + إلى + + + رابط المهمة + + + بطئ + + + بداية + + + بداية انتهاء + + + بداية بداية + + + إنهاء + + + انتهاء انتهاء + + + انتهاء بداية + + + أدخل القيمة + + + قمت بنقل '{0}' للبدء قبل انتهاء '{1}' ويتم ربط المهمتين. ونتيجة لذلك ، لا يمكن احترام الروابط. حدد إجراءً واحدًا أدناه للقيام به + + + قمت بنقل '{0}' بعيدًا عن '{1}' ويتم ربط المهمتين. ونتيجة لذلك ، لا يمكن احترام الروابط. حدد إجراءً واحدًا أدناه للقيام به + + + قمت بنقل '{0}' للبدء قبل أن يبدأ '{1}' وربط المهمتين. ونتيجة لذلك ، لا يمكن احترام الروابط. حدد إجراءً واحدًا أدناه للقيام به + + + قمت بنقل '{0}' للبدء بعد بدء '{1}' وربط المهمتين. ونتيجة لذلك ، لا يمكن احترام الروابط. حدد إجراءً واحدًا أدناه للقيام به + + + قمت بنقل '{0}' للإنهاء قبل انتهاء '{1}' ويتم ربط المهمتين. ونتيجة لذلك ، لا يمكن احترام الروابط. حدد إجراءً واحدًا أدناه للقيام به + + + قمت بنقل '{0}' للإنهاء بعد انتهاء '{1}' ويتم ربط المهمتين. ونتيجة لذلك ، لا يمكن احترام الروابط. حدد إجراءً واحدًا أدناه للقيام به + + + قمت بنقل '{0}' بعيدًا عن '{1}' لبدء التشغيل وترتبط المهمتان. ونتيجة لذلك ، لا يمكن احترام الروابط. حدد إجراءً واحدًا أدناه للقيام به + + + قمت بنقل '{0}' للإنهاء بعد بدء '{1}' وربط المهمتين. ونتيجة لذلك ، لا يمكن احترام الروابط. حدد إجراءً واحدًا أدناه للقيام به + + + معلومات المهمة + + + حذف المهمة + + + حذف التبعية + + + تحويل + + + حفظ + + + في الاعلى + + + أدناه + + + طفل + + + معلما + + + لمهمة + + + إلى معلم + + + علامات الحدث + + + تسمية المهمة اليسرى + + + تسمية المهمة الصحيحة + + + خلية الجدول الزمني + + + هل أنت متأكد من أنك تريد إزالة رابط التبعية؟ + + + مسافة بادئة + + + عفا عليها الزمن + + + عمود الاحتواء التلقائي + + + احتواء تلقائي لكافة الأعمدة + + + فرز تصاعدي + + + ترتيب تنازلي + + + وضع المهمة + + + تلقائي + + + يدوي + + + تاريخ بدء المهام الفرعية + + + تاريخ انتهاء المهام الفرعية + + + مدة + + + الشغل + + + ح + + + د + + + م + + + دقيقة + + + أعمدة مخصصة + + + نوع المهمة + + + المسار الحرج + + + شرائح + + + مهمة الانقسام + + + مهمة الدمج + + + المهام غير المعينة + + + ملف جديد + + + رفع + + + حذف + + + إعادة تسمية + + + تحميل + + + يقطع + + + نسخ + + + معجون + + + ترتيب حسب + + + تحديث + + + العنصر المحدد + + + العناصر المحددة + + + رأي + + + تفاصيل + + + اختر الكل + + + افتح + + + ملف جديد + + + رفع + + + حذف + + + إعادة تسمية + + + تحميل + + + يقطع + + + نسخ + + + معجون + + + ترتيب حسب + + + تحديث + + + اختيار واضح + + + رأي + + + تفاصيل + + + اختر الكل + + + اسم + + + بحجم + + + تم التعديل + + + تاريخ الإنشاء + + + مسار + + + تم التعديل + + + خلقت + + + موقعك + + + اكتب + + + الإذن + + + تصاعدي + + + تنازلي + + + لا شيء + + + أيقونات كبيرة + + + تفاصيل + + + بحث + + + حسنا + + + إلغاء + + + نعم + + + لا + + + خلق + + + حفظ + + + مجلد + + + أدخل اسم المجلد الخاص بك + + + إعادة تسمية + + + أدخل اسمك الجديد + + + إعادة تسمية التأكيد + + + إذا قمت بتغيير ملحق اسم الملف ، فقد يصبح الملف غير مستقر. هل أنت متأكد أنك تريد تغييره؟ + + + حذف ملف + + + هل أنت متأكد أنك تريد حذف هذا الملف؟ + + + احذف المجلد + + + هل أنت متأكد أنك تريد حذف هذا المجلد؟ + + + حذف عناصر متعددة + + + هل أنت متأكد أنك تريد حذف هذه العناصر {0}؟ + + + يوجد ملف / مجلد + + + {0} موجود بالفعل. هل تريد إعادة تسمية ولصق؟ + + + تحميل الملفات + + + خطأ + + + لا يمكن أن يكون اسم الملف أو المجلد فارغًا. + + + يحتوي اسم الملف أو المجلد {0} على أحرف غير صالحة. يرجى استخدام اسم مختلف. لا يمكن أن تنتهي أسماء الملفات أو المجلدات الصالحة بنقطة أو مسافة. + + + يوجد بالفعل ملف أو مجلد يحمل الاسم {0}. + + + Cلا يمكن إعادة تسمية {0} إلى {1}: الوجهة موجودة بالفعل. + + + هذا المجلد فارغ + + + اسحب الملفات هنا للتحميل + + + لم يتم العثور على نتائج + + + حاول بكلمات مختلفة + + + لم يتم العثور على نتائج + + + حاول مع مرشح مختلف + + + المجلد الوجهة هو المجلد الفرعي للمجلد المصدر. + + + تم الرفض + + + ليس لديك إذن للوصول إلى هذا المجلد. + + + الملف موجود بالفعل + + + يوجد ملف بهذا الاسم بالفعل في هذا المجلد. ماذا تريد ان تفعل؟ + + + حتفظ بكليهما + + + يحل محل + + + تخطى + + + القيام بذلك لجميع العناصر الحالية + + + كيلوبايت + + + {0} لا يمكن الوصول إليه. أنت بحاجة إلى إذن لتنفيذ الإجراء {1}. + + + NetworkError: فشل الإرسال على XMLHTTPRequest: فشل التحميل + + + ServerError: استجابة غير صالحة من + + + X + + + ص + + + دبليو + + + ح + + + اجلب للمقدمة + + + نسخ + + + يقطع + + + مجموعة + + + تجمع + + + تقدم إلى الأمام + + + طلب + + + معجون + + + الإعادة + + + اختر الكل + + + إرسال إلى الوراء + + + إرسال إلى الخلف + + + الغاء التحميل + + + فك التجميع + + + لا سجلات لعرضها + + + صحيح + + + خاطئة + + + بيانات تصفية غير صالحة + + + اسحب رأس العمود هنا لتجميع العمود + + + انقر هنا لإلغاء التجميع + + + تم تعطيل التجميع لهذا العمود + + + خلية شريط مرشح + + + يجب ألا يكون DataSource فارغًا عند التحميل الأولي نظرًا لأن الأعمدة يتم إنشاؤها من DataSource في شبكة إنشاء عمود تلقائي + + + إضافة + + + تعديل + + + إلغاء + + + تحديث + + + حذف + + + طباعة + + + تصدير قوات الدفاع الشعبي + + + اكسل التصدير + + + كلمة تصدير + + + تصدير CSV + + + بحث + + + أعمدة + + + حفظ + + + ظهر + + + بند + + + العناصر + + + لم يتم تحديد سجلات لعملية التحرير + + + لم يتم تحديد سجلات لعملية الحذف + + + حفظ + + + حسنا + + + إلغاء + + + تفاصيل + + + إضافة سجل جديد + + + هل أنت متأكد أنك تريد حفظ التغييرات؟ + + + سيتم فقد التغييرات غير المحفوظة. هل أنت متأكد أنك تريد المتابعة؟ + + + هل أنت متأكد أنك تريد حذف السجل؟ + + + هل أنت متأكد من أنك تريد إلغاء التغييرات؟ + + + اختيار العمود + + + أعمدة البحث + + + لم يتم العثور على تطابق + + + منقي + + + واضح + + + Nul + + + No nul + + + Buit + + + No està buit + + + M'agrada + + + ابدا ب + + + ينتهي بـ + + + يحتوي على + + + No comença amb + + + No acaba amb + + + no conté + + + مساو + + + ليس متساوي + + + أقل من + + + اصغر من او يساوي + + + أكثر من + + + أكبر من أو يساوي + + + اختيار التاريخ + + + أدخل القيمة + + + نسخ + + + تجميع حسب هذا العمود + + + فك تجميع بواسطة هذا العمود + + + احتواء تلقائي لجميع الأعمدة + + + احتواء تلقائي لهذا العمود + + + تصدير + + + الصفحة الأولى + + + آخر صفحة + + + الصفحة السابقة + + + الصفحة التالية + + + فرز تصاعدي + + + ترتيب تنازلي + + + مرتبة بترتيب تصاعدي + + + مرتبة تنازليا + + + تحرير السجل + + + حذف سجل + + + منقي + + + اختر الكل + + + أضف التحديد الحالي للتصفية + + + الفراغات + + + صحيح + + + خاطئة + + + لم يتم العثور على تطابق + + + مرشح واضح + + + عدد المرشحات + + + مرشحات النص + + + مرشحات التاريخ + + + مرشحات DateTime + + + حالة مباراة + + + ما بين + + + تصفية مخصص + + + أدخل القيمة + + + اختيار موعد + + + و + + + أو + + + إظهار الصفوف حيث: + + + رأس العمود + + + خانة اختيار التصفية + + + خانة اختيار العنوان + + + أيقونة المرشح + + + رمز قائمة العمود + + + زر المجموعة + + + خانة اختيار الصف + + + زر فك التجميع + + + فرز + + + تصاعدي + + + تنازلي + + + لا شيء + + + هي خلية قالب + + + اضغط على Enter للفرز + + + اضغط على Alt Down لفتح قائمة التصفية + + + اضغط على Alt Down لفتح قائمة العمود + + + قائمة الأعمدة + + + اضغط على Ctrl space للتجميع + + + هو خلية التسمية التوضيحية للمجموعة + + + رأس العمود غير معرف + + + فرز العمود المجمع + + + إغلاق + + + عامل التصفية + + + تصفية القيمة + + + حدد الصف + + + الصفحة + + + صفحة + + + من + + + رسالة خارجية للرسالة + + + صفحة + + + القائمة المنسدلة باجر + + + انتقل إلى صفحة + + + {0} من {1} صفحة + + + ({0} عناصر) + + + الذهاب إلى الصفحة الأولى + + + الذهاب إلى الصفحة الأخيرة + + + انتقل إلى الصفحة التالية + + + الانتقال إلى الصفحة السابقة + + + انتقل إلى النداء التالي + + + الذهاب إلى النداء السابق + + + مواد لكل صفحة + + + العناصر + + + الكل + + + العناصر + + + عد + + + اليومي + + + أيام) + + + النهاية + + + كل + + + أول + + + رابع + + + الاخير + + + شهر + + + المتوسع الشهر + + + شهريا + + + موقف الشهر + + + الشهور) + + + شهر اسبوع + + + أبدا + + + لا شيء + + + كرر في + + + يوم + + + كرر + + + تكرار كل + + + أعد الفترة + + + ثانيا + + + أيام) + + + الشهور) + + + على + + + يكرر + + + مرة (مرات) + + + حتى + + + أسبوع (s) + + + سنوات) + + + الثالث + + + حتى + + + أسبوعي + + + أسبوع (s) + + + المتوسع العام + + + سنوي + + + سنوات) + + + أضف عنوانا + + + جدول أعمال + + + إنذار + + + طوال اليوم + + + تبدأ من + + + لا يمكن جدولة الأحداث ضمن النطاق الزمني المحظور. + + + إلغاء + + + إلغاء + + + قريب + + + يجب أن تكون مدة الحدث أقصر من تكرار حدوثه. تقصير المدة ، أو تغيير نمط التكرار في محرر حدث التكرار. + + + خلق + + + يوم + + + حذف + + + حذف + + + هل أنت متأكد من حذف هذا الحدث؟ + + + هذا الحدث + + + هل أنت متأكد من أنك تريد حذف الأحداث المحددة؟ + + + حذف أحداث متعددة + + + سلسلة كاملة + + + حذف الحدث + + + وصف + + + تعديل + + + كيف تريد تغيير الموعد في السلسلة؟ + + + هذا الحدث + + + الأحداث التالية + + + تحرير التكرار + + + سلسلة كاملة + + + تحرير الحدث + + + لا توجد أحداث مجدولة في هذا اليوم. + + + النهاية + + + وقت النهاية + + + يغلق عند مستوى + + + نهاية المنطقة الزمنية + + + قيمة التاريخ المدخلة غير صالحة. + + + موقعك + + + ابحث عن المزيد + + + شهر + + + جدول الشهر + + + أكثر + + + المزيد من التفاصيل + + + المزيد من الحدث + + + حدث جديد + + + التالى + + + لا + + + لا أحداث + + + لا تسجيلات + + + (بلا ​​عنوان) + + + حادثة + + + حسنا + + + السابق + + + تكرار + + + حدث متكرر + + + كرر + + + يكرر + + + لا يمكن أن يحدث تواجدان لنفس الحدث في نفس اليوم. + + + حفظ + + + حفظ + + + العناصر المحددة + + + البحث عن المنطقة الزمنية + + + سلسلة + + + هل تريد إلغاء التغييرات التي تم إجراؤها على مثيلات معينة من هذه السلسلة ومطابقتها مع السلسلة بأكملها مرة أخرى؟ + + + عرض الأحداث حتى + + + بداية + + + وقت البدء + + + تاريخ الانتهاء المحدد يحدث قبل تاريخ البدء. + + + بدء المنطقة الزمنية + + + موضوع + + + الجدول الزمني اليوم + + + الجدول الزمني الشهر + + + الجدول الزمني الأسبوع + + + الجدول الزمني لأسبوع العمل + + + الجدول الزمني العام + + + وحدة زمنية + + + عنوان + + + اليوم + + + أسبوع + + + جدول أعمال الأسبوع + + + أسبوع العمل + + + جدول أعمال أسبوع العمل + + + نمط التكرار غير صالح. + + + نعم + + + سنة + + + قريب + + + السابقة الشريحة + + + التالية الشريحة + + + الانزلاق + + + من + + + وقف الرسوم المتحركة التلقائي + + + ابدأ الرسوم المتحركة التلقائية + + + عرض الشرائح + + + مثال: C ، P ، 0000٪ ، ### 0. ## 0 # ، إلخ. + + + ترتيب البيانات + + + ترتيب تنازلي + + + قائمة الحقول المحورية + + + قائمة الحقول + + + أضف الحقل هنا + + + اختر المجال + + + اسحب الحقول بين المحاور أدناه: + + + أضف + + + تأجيل تحديث التخطيط + + + عرض الأسطورة + + + أدخل عنوان الحقل + + + ترتيب تصاعدي + + + تقرير اسمه + + + موجود أصلا. هل تريد استبدالها؟ + + + إضافة شرط + + + أضف إلى العمود + + + أضف إلى عامل التصفية + + + أضف إلى الصف + + + أضف إلى القيمة + + + بعد + + + بعد أو يساوي + + + مجموع + + + إنذار + + + الكل + + + جميع المجالات + + + جميع القيم + + + و + + + يتقدم + + + منطقة + + + تصاعدي + + + معدل + + + شريط + + + حقل القاعدة + + + عنصر أساسي + + + قبل + + + قبل أو يساوي + + + يبدأ ب + + + ما بين + + + (فارغ) + + + بواسطة + + + حقل محسوب + + + يوجد بالفعل حقل حساب بهذا الاسم. هل تريد استبدالها؟ + + + قم بسحب وإسقاط الحقول للصيغة + + + اسحب الحقل إلى الصيغة + + + لا يمكن وضع الحقل المحسوب في أي منطقة أخرى باستثناء محور القيمة. + + + مثال: ('Sum(Order_Count)' + 'Sum(In_Stock)') * 250 + + + يوجد بالفعل حقل بهذا الاسم. يرجى إدخال اسم مختلف. + + + أضف الحقول وتحرير الصيغة هنا. + + + أدخل اسم الحقل + + + مثال: [Measures].[Order Quantity] + ([Measures].[Order Quantity] * 0.10) + + + اسحب الحقول وأفلتها لإنشاء تعبير. وإذا كنت تريد تحرير الحقول المحسوبة الموجودة! يمكنك تحقيق ذلك ببساطة عن طريق تحديد الحقل الموجود ضمن "أعضاء محسوبون". + + + إلغاء + + + مخطط + + + أبرئ + + + أبرئ + + + قريب + + + انهيار + + + عمود + + + أفلت العمود هنا + + + الأعمدة + + + تنسيق مشروط + + + تنسيق مشروط + + + يحتوي على + + + نسخ + + + العد + + + إنشاء حقل محسوب + + + CSV + + + عملة + + + رمز العملة + + + مخصص + + + تنسيق مخصص + + + أدخل سلسلة تنسيق مخصص + + + تاريخ + + + عرض العناصر التي التاريخ + + + أيام + + + منازل عشرية + + + حذف + + + حذف تقرير حالي + + + تنازلي + + + تفاصيل + + + الفرق من + + + البعد + + + عدد مميز + + + لا يبدأ بـ + + + لا يحتوي + + + لا ينتهي بـ + + + لا يساوي + + + لا تظهر المجاميع الكلية + + + سحب + + + الحفر من خلال + + + لا يمكن إظهار العناصر الخام للحقول المحسوبة. + + + تعديل + + + لا سجلات لعرضها + + + لم يتم العثور على تقارير !! + + + تنتهي في + + + ينتهي بـ + + + أدخل التاريخ + + + أدخل اسم التقرير + + + أدخل القيمة + + + يساوي + + + خطأ + + + مثال: + + + Excel + + + وسعت + + + تصدير + + + التعبير + + + خاطئة + + + شرح المجال + + + شرح المجال + + + لا يمكن وضع الحقل الذي تقوم بنقله في تلك المنطقة من التقرير + + + اسم الحقل + + + اسم الحقل: + + + نوع الحقل + + + منقي + + + إسقاط مرشح هنا + + + تمت تصفيته + + + مرشحات + + + شكل + + + تنسيق سلسلة + + + نوع التنسيق + + + معادلة + + + المجموع الكلي + + + المجاميع الكلية + + + أكثر من + + + أكبر من أو يساوي + + + مجموعة + + + أدخل التسمية التوضيحية لعرضها في الرأس + + + أدخل عنوان حقل المجموعة + + + التجميع + + + أسم المجموعة + + + ساعات + + + فهرس + + + الفاصل الزمني + + + تنسيق غير صالح. + + + صيغة غير صالحة. + + + لا يمكن تجميع هذا التحديد. + + + JPEG + + + ضع الكلمة المناسبة + + + اعرض العناصر التي تم تصنيف الملصق عليها + + + اليسار + + + أقل من + + + اقل او يساوي + + + خط + + + حمل + + + جار التحميل... + + + إدارة السجلات + + + أقصى + + + استعلام MDX + + + قياس + + + عضو + + + المزيد من العناصر. ابحث لمزيد من الصقل. + + + الحد الأدنى + + + الدقائق + + + الشهور + + + أكثر... + + + عناصر متعددة + + + قم بإنشاء تقرير جديد + + + هل تريد حفظ التغييرات في التقرير؟ + + + لم يتم العثور على تنسيق !!! + + + أدخل قيمة + + + لا تطابقات + + + ليس بينهما + + + لا يساوي + + + لا قيمة + + + لا شيء + + + رقم + + + تنسيق الأرقام + + + من + + + حسنا + + + خارج النطاق + + + التسلسل الهرمي للوالدين + + + PDF + + + نسبه مئويه + + + النسبة المئوية + + + % من إجمالي العمود + + + % من الفرق من + + + % من الإجمالي الكلي + + + % من إجمالي العمود الأصل + + + % من إجمالي الصف الأصل + + + % من الإجمالي الرئيسي + + + % من إجمالي الصف + + + PNG + + + قطبي + + + السكان StDev + + + عدد السكان + + + المنتج + + + Qtr + + + أرباع + + + ربع السنة + + + إزالة + + + هل تريد بالتأكيد حذف هذا التقرير؟ + + + إعادة تسمية التقرير الحالي + + + قائمة التقارير + + + تقرير اسم : + + + حق + + + صف + + + إسقاط الصف هنا + + + الصفوف + + + تشغيل المجاميع + + + تقرير العينة + + + الانحراف المعياري للعينة + + + عينة متنوعة + + + حفظ كتقرير حالي + + + حفظ تقرير + + + مبعثر + + + بحث + + + الثواني + + + العناصر المحددة + + + حدد المجموعات + + + إظهار أعمدة الإجماليات الإجمالية فقط + + + إظهار قائمة الحقول + + + إظهار الإجماليات الإجمالية + + + إظهار الإجماليات الإجمالية للصف فقط + + + إظهار الجدول + + + فرز + + + المعايير + + + يبدأ من + + + مجموع + + + لخص القيم حسب + + + لخص القيم حسب + + + SVG + + + موضع الرمز + + + مجموع + + + صحيح + + + غير معرف + + + غير مجمعة + + + الرجاء إدخال اسم سجل صالح !!! + + + القيمة + + + إسقاط القيمة هنا + + + إعدادات حقل القيمة + + + القيم + + + عرض العناصر التي + + + تحذير + + + سنوات + + + محاور متعددة + + + إعدادات نوع التخطيط + + + نوع التخطيط + + + نعم + + + لا + + + الوسيط + + + الأسفل + + + موقف المجاميع الكلية + + + قمة + + + تنسيق الأرقام ... + + + تنسيق مشروط... + + + هل أنت متأكد أنك تريد حذف هذا الحقل المحسوب؟ + + + منطقة مكدسة + + + عمود مكدس + + + شريط مكدس + + + خطوة خط + + + منطقة الخطوة + + + منطقة المفتاح + + + خدد + + + عمود مكدس بنسبة مائة بالمائة + + + شريط مكدس مائة في المائة + + + مساحة مكدسة بنسبة مائة بالمائة + + + فقاعة + + + باريتو + + + رادار + + + تحرير الحقل المحسوب + + + مسح معلومات الحقل المعدلة + + + فطيرة + + + هرم + + + الدونات + + + قمع + + + مرصوصة + + + وضع المحاور المتعددة + + + التقدم بطلب إلى المجموع الكلي + + + قريب + + + قريب + + + قريب + + + حفظ + + + إلغاء + + + جار التحميل... + + + إضغط للتعديل + + + إضغط للتعديل + + + اضغط مرتين للتعديل + + + صغير + + + صغير + + + سطوع + + + تصفح + + + تصغير + + + تكبير + + + المحاصيل والتحويل + + + اختيار المحاصيل + + + حاشية. ملاحظة + + + تحول + + + ضبط دقيق + + + منقي + + + سطوع + + + التباين + + + مسحة + + + التشبع + + + مكشوف + + + التعتيم + + + طمس + + + خط العائلة + + + حجم الخط + + + لون الخط + + + حلقه ملونه + + + عرض السكتة الدماغية + + + لون التعبئة + + + تطبيق + + + ينبذ + + + إعادة ضبط + + + يحفظ + + + الغاء التحميل + + + إعادة + + + تقصير + + + كروم + + + البرد + + + دافئ + + + تدرج الرمادي + + + بني داكن + + + عكس + + + العادة + + + ميدان + + + دائرة + + + قلم + + + خط + + + مستطيل + + + الشكل البيضاوي + + + طريق + + + أضف نصًا + + + استدر يسارا + + + استدارة لليمين + + + انعكاس أفقي + + + انعكاس عمودي + + + عريض + + + مائل + + + X- صغير + + + صغير + + + متوسط + + + كبير + + + X-كبير + + + ينسخ + + + يزيل + + + تحرير النص + + + يبدأ + + + نهاية + + + لا أحد + + + سهم مصمت + + + لا أحد + + + حاجِز + + + سهم + + + سهم مصمت + + + دائرة + + + دائرة صلبة + + + مربع + + + مربع مصمت + + + تأكيد حفظ التغييرات + + + هل تريد حفظ التغييرات التي أجريتها على الصورة؟ + + + نعم + + + لا + + + تغيير الحجم + + + عرض + + + ارتفاع + + + الحفاظ على نسبة العرض إلى الارتفاع غير + + + الحفاظ على نسبة العرض إلى الارتفاع + + + انعكاس أفقي + + + الوجه العمودي + + + الشفافية + + + قم بسحب وإسقاط صورتك هنا أو + + + تصفح هنا... + + + يدعم: + + + إطار + + + لا أحد + + + حصيرة + + + شطبة + + + خط + + + أقحم + + + خطاف + + + لون + + + مقاس + + + عوض + + + نصف القطر + + + كمية + + + دبليو + + + ح + + + حدود + + + صلب + + + متقطع + + + منقط + + + التدرج اللوني + + + العناصر + + + بند + + + لا توجد بطاقات لعرضها + + + دقيقة + + + ماكس + + + تم تحديد البطاقات + + + إضافة بطاقة جديدة + + + تحرير تفاصيل البطاقة + + + حذف البطاقة + + + هل أنت متأكد أنك تريد حذف هذه البطاقة؟ + + + حفظ + + + حذف + + + إلغاء + + + نعم + + + لا + + + معالج النصوص + + + محرر Markdown + + + قائمة تنسيق الأرقام + + + لا أحد + + + عدد + + + ألفا العلوي + + + ألفا السفلى + + + ابر رومان + + + الرومان السفلي + + + اليونانية السفلى + + + قائمة تنسيق النقاط + + + لا أحد + + + دائرة + + + ميدان + + + قرص + + + فقرة + + + قانون + + + اقتباس + + + عنوان 1 + + + عنوان 2 + + + عنوان 3 + + + عنوان 4 + + + عنوان 5 + + + عنوان 6 + + + عنوان 7 + + + عنوان 8 + + + عنوان 9 + + + Segoe UI + + + Arial + + + Georgia + + + Impact + + + Tahoma + + + Times New Roman + + + Verdana + + + التحالفات + + + محاذاة إلى اليسار + + + محاذاة مركز + + + محاذاة اليمين + + + محاذاة الضبط + + + اسم الخط + + + حجم الخط + + + لون الخط + + + لون الخلفية + + + بالخط العريض + + + مائل + + + تسطير + + + يتوسطه + + + تنسيق واضح + + + امسح الكل + + + يقطع + + + نسخ + + + معجون + + + قائمة نقطية + + + قائمة مرقمة + + + زيادة المسافة البادئة + + + انخفاض المسافة البادئة + + + الغاء التحميل + + + الإعادة + + + حرف فوقي + + + مخطوطة + + + إدراج الارتباط التشعبي + + + افتح الرابط + + + تحرير الرابط + + + إزالة الرابط + + + إدراج صورة + + + يحل محل + + + محاذاة + + + تعليق على الصورة + + + إزالة + + + إدراج رابط + + + عرض + + + نص بديل + + + قم بتغيير المقاس + + + تحقيق أقصى قدر + + + تحقيق أقصى قدر + + + خفض + + + أحرف صغيرة + + + الأحرف الكبيرة + + + طباعة + + + صيغ + + + عرض الكود + + + معاينة + + + عرض جانبي + + + أدخل الرمز + + + عرض النص + + + عنوان + + + عنوان صفحة انترنت + + + أدخل العنوان + + + https://example.com + + + افتح الرابط في نافذة جديدة + + + إدراج رابط + + + إدراج + + + إلغاء + + + تحديث + + + إدراج صورة + + + يمكنك أيضًا تقديم رابط من الويب + + + يرجى تقديم عنوان URL لصورتك + + + إسقاط الصورة هنا أو تصفح لتحميل + + + انقر هنا للتحميل + + + نص بديل + + + نص بديل + + + تصفح + + + انقر هنا للتحميل + + + قم بإسقاط ملف فيديو أو تصفح للتحميل + + + الصق الكود المضمن هنا + + + عنوان URL للويب + + + الكود المضمن + + + عرض + + + ارتفاع + + + انقر هنا للتحميل + + + قم بإسقاط ملف صوتي أو تصفح للتحميل + + + https://example.com/image.png + + + التسمية التوضيحية + + + Iحجم الصورة + + + ارتفاع + + + عرض + + + أدخل النص + + + إدراج الجدول + + + إدراج الجدول + + + عرض + + + خلية الحشو + + + تباعد الخلايا + + + عدد الأعمدة + + + عدد الصفوف + + + صف + + + عمود + + + خلية الجدول الأفقي محاذاة + + + محاذاة عمودية + + + اصنع جدول + + + إزالة الجدول + + + مقدمة الصف + + + حذف الجدول + + + خلفية خلية الجدول + + + خصائص تحرير الجدول + + + الأنماط + + + أدخل العمود الأيسر + + + أدخل العمود الأيمن + + + حذف العمود + + + أدخل الصف قبل + + + أدخل الصف بعد + + + احذف صف + + + تحرير الجدول + + + عنوان + + + العقيد + + + إدراج رابط + + + تعديل الصورة + + + محاذاة إلى اليسار + + + محاذاة مركز + + + محاذاة اليمين + + + محاذاة الضبط + + + في النسق + + + استراحة + + + أدخل الصف قبل + + + أدخل الصف بعد + + + احذف صف + + + أدخل العمود الأيسر + + + أدخل العمود الأيمن + + + حذف العمود + + + محاذاة أعلى + + + محاذاة الأوسط + + + محاذاة أسفل + + + الحدود المتقطع + + + صفوف بديلة + + + تنسيق لصق + + + اختر إجراء التنسيق + + + نص عادي + + + نظيف + + + احتفظ + + + حسنا + + + إلغاء + + + يحل محل + + + إزالة + + + عرض + + + يحل محل + + + محاذاة + + + إزالة + + + عرض + + + البعد + + + افتح في نافذة جديدة + + + افتح في نافذة جديدة + + + تنسيق ملف غير معتمد + + + PDF عارض + + + إلغاء + + + تحميل الملف + + + تحميل + + + هذا المستند محمي بكلمة مرور. يرجى إدخال كلمة مرور. + + + ملف تالف + + + الملف تالف ولا يمكن فتحه. + + + ارتفاع ملائم + + + ملئ الصفحة + + + العرض المناسب + + + تلقائي + + + إظهار الصفحة الأولى + + + انتقل إلى الصفحة الأولى + + + انتقل إلى الصفحة السابقة + + + كلمة سر خاطئة. حاول مرة اخرى. + + + إظهار الصفحة التالية + + + إظهار الصفحة السابقة + + + الذهاب إلى الصفحة التالية + + + الذهاب إلى الصفحة الأخيرة + + + مربع النص للذهاب إلى رقم الصفحة + + + تصغير الصفحة + + + تكبير الصفحة + + + قائمة نسب التكبير + + + زر إرسال النموذج. انقر فوق هذا الزر لحفظ قيم حقول النموذج كملف JSON. + + + بحث عن نص + + + زر قائمة الأشكال المنسدلة + + + تم فتح قائمة الأشكال المنسدلة المنبثقة + + + عنصر قائمة الخط 1 من 5 + + + عنصر قائمة السهم 2 من 5 + + + عنصر قائمة المستطيل 3 من 5 + + + عنصر قائمة الدائرة 4 من 5 + + + عنصر قائمة المضلع 5 من 5 + + + زر معايرة قائمة الأشكال المنسدلة + + + تم فتح قائمة معايرة الأشكال المنسدلة المنبثقة + + + عنصر قائمة المسافة 1 من 5 + + + عنصر قائمة المحيط 2 من 5 + + + عنصر قائمة المساحة 3 من 5 + + + عنصر قائمة نصف القطر 4 من 5 + + + عنصر قائمة الحجم 5 من 5 + + + زر قائمة الطوابع المنسدلة، مُطوى + + + الطابع الديناميكي 1 من 4 + + + الطابع المعتمد 1 من 6 + + + الطابع غير المعتمد 3 من 6 + + + الطابع السري 2 من 6 + + + الطابع المستلم 4 من 6 + + + الطابع المُراجع 5 من 6 + + + الطابع المُعدل 6 من 6 + + + طابع التوقيع هنا 2 من 4 + + + الطابع المقبول 1 من 5 + + + طابع التوقيع الابتدائي هنا 2 من 5 + + + الطابع المرفوض 3 من 5 + + + طابع التوقيع هنا 4 من 5 + + + طابع الشاهد 5 من 5 + + + الطابع التجاري القياسي 3 من 4 + + + الطابع المعتمد 1 من 12 + + + الطابع المكتمل 2 من 12 + + + الطابع السري 3 من 12 + + + الطابع المسودة 4 من 12 + + + الطابع النهائي 5 من 12 + + + طابع للتعليق 6 من 12 + + + طابع للإصدار العام 7 من 12 + + + طابع للمعلومات فقط 8 من 12 + + + الطابع غير المعتمد 9 من 12 + + + طابع غير للإصدار العام 10 من 12 + + + طابع النتائج الأولية 11 من 12 + + + طابع الإبطال 12 من 12 + + + طابع مخصص 4 من 4 + + + إدراج التوقيع + + + الرسم باليد الحرة + + + تحرير قائمة عائلة الخط + + + تحرير قائمة حجم الخط + + + تحرير قائمة لون الخط + + + تحرير قائمة محاذاة النص + + + تم فتح قائمة محاذاة النص في شريط الأدوات المنبثقة + + + عنصر قائمة المحاذاة إلى اليسار 1 من 4 + + + عنصر قائمة المحاذاة إلى اليمين 2 من 4 + + + عنصر قائمة المحاذاة إلى الوسط 3 من 4 + + + عنصر قائمة المحاذاة بالتساوي 4 من 4 + + + تحرير قائمة خصائص النص + + + تم فتح قائمة خصائص النص في شريط الأدوات المنبثقة + + + عنصر قائمة أيقونة عريض 1 من 4 + + + عنصر قائمة أيقونة مائل 2 من 4 + + + عنصر قائمة أيقونة خط منقطع 3 من 4 + + + عنصر قائمة أيقونة تحته خط 4 من 4 + + + تحرير قائمة لون التعبئة + + + تحرير قائمة لون الحد + + + شريط تمرير السُمك + + + شريط تمرير الشفافية + + + زر إغلاق شريط أدوات التعليقات التوضيحية + + + حسنا + + + فتح الملف + + + رقم الصفحة الحالية + + + إظهار الصفحة الأخيرة + + + تكبير + + + التكبير + + + تصغير + + + الصور المصغرة للصفحة + + + إشارات مرجعية + + + اطبع الملف + + + كلمة المرور مطلوبة + + + نسخ + + + أداة اختيار النص + + + وضع التحريك + + + بحث عن نص + + + ابحث في المستند + + + حالة مباراة + + + تطبيق + + + انتقل إلى صفحة + + + انتهى المشاهد من البحث في المستند. لم يتم العثور على أي تطابقات + + + انتهى العارض من البحث في المستند. لم يتم العثور على مزيد من التطابقات + + + لم يتم العثور على أي تطابقات + + + لم يتم العثور على المزيد من التطابقات + + + الغاء التحميل + + + إعادة + + + إضافة أو تعديل التعليقات التوضيحية + + + ظلل النص + + + تسطير النص + + + نص يتوسطه خط + + + نص متعرج + + + حذف التعليق التوضيحي + + + التعتيم + + + غير اللون + + + تغيير العتامة + + + تسليط الضوء + + + تسطير + + + يتوسطه خط + + + متعرج + + + حدث خطأ ما. يرجى المحاولة مرة أخرى أو تحديث الصفحة. + + + تم العثور على خطأ من جانب العميل. يرجى التحقق من الرؤوس المخصصة المقدمة في خاصية AjaxRequestSettings وطرق إجراءات الويب في خاصية ServerActionSettings. + + + الوصول إلى المستند مقيد بسبب سياسة CORS. يرجى التحقق من الوثيقة. + + + افتح + + + الصفحة الأولى + + + الصفحة السابقة + + + الصفحة التالية + + + آخر صفحة + + + التكبير + + + تصغير + + + اختيار + + + مقلاة + + + طباعة + + + بحث + + + تحرير تعليق توضيحي + + + إضافة أو تحرير حقول النموذج + + + تحرير حقول النموذج + + + مربع النص + + + كلمة المرور + + + مربع الاختيار + + + زر الاختيار + + + قائمة منسدلة + + + مربع القائمة + + + زر + + + حذف حقل النموذج + + + توقيع + + + مبدئي + + + حفظ + + + عام + + + المظهر + + + الخيارات + + + الاسم + + + التلميح + + + القيمة + + + رؤية حقل النموذج + + + للقراءة فقط + + + تم التحديد + + + محدد + + + مطلوب + + + متعدد الأسطر + + + تنسيق + + + أقصى طول + + + مليء + + + حدود + + + السُمك + + + اسم العنصر + + + قيمة العنصر + + + قائمة العناصر + + + أعلى + + + أسفل + + + سمك الحدود + + + نوع الخط + + + محاذاة + + + لون الحدود + + + مرئي + + + مرئي غير قابل للطباعة + + + مخفي قابل للطباعة + + + مخفي + + + هيلفيتيكا + + + كويرير + + + رمز + + + تايمز نيو رومان + + + سمك الخط + + + خصائص الخط + + + ابدأ السهم + + + السهم النهائي + + + أسلوب الخط + + + لون التعبئة + + + لون الخط + + + لا يوجد + + + افتح السهم + + + سهم مغلق + + + سهم مستدير + + + سهم مربع + + + سهم الماس + + + يقطع + + + معجون + + + يمسح + + + الخصائص + + + إضافة طابع + + + أضف الأشكال + + + تغيير لون الشطب + + + تغيير سماكة الحدود + + + إضافة خط + + + أضف سهم + + + أضف مستطيل + + + أضف دائرة + + + أضف مضلع + + + أضف تعليقات + + + تعليقات + + + لا تعليقات حتى الآن + + + قبلت + + + منجز + + + ألغيت + + + مرفوض + + + طول القائد + + + نسبة المقياس + + + معايرة + + + معايرة المسافة + + + معايرة محيط + + + معايرة المنطقة + + + معايرة نصف القطر + + + معايرة الحجم + + + عمق + + + مغلق + + + مستدير + + + ميدان + + + الماس + + + تعديل + + + تعليق + + + لوحة التعليق + + + تعيين الحالة + + + بريد + + + الصفحة + + + اضف تعليق + + + أضف رد + + + استيراد التعليقات التوضيحية + + + تصدير التعليقات التوضيحية + + + أضف + + + واضح + + + بالخط العريض + + + مائل + + + يتوسطه خط + + + يؤكد + + + مرتفع + + + مخطوطة + + + محاذاة إلى اليسار + + + محاذاة اليمين + + + مركز + + + تبرير + + + لون الخط + + + محاذاة النص + + + نوع الخط + + + رسم التوقيع + + + خلق + + + خط العائلة + + + حجم الخط + + + نص حر + + + نوع ملف JSON أو اسم الملف غير صالح ؛ يُرجى تحديد ملف JSON صالح + + + لم يتم العثور على ملف JSON المستورد في الموقع المطلوب + + + فشل إجراء التعليقات التوضيحية للتصدير ؛ يرجى التأكد من إضافة التعليقات التوضيحية بشكل صحيح + + + رسم + + + اكتب + + + تحميل + + + تصفح + + + احفظ التوقيع + + + حفظ الأولي + + + أدخل أسمك + + + متحرك + + + الأعمال القياسية + + + ختم مخصص + + + مراجعة + + + تمت المراجعة + + + تم الاستلام + + + وافق + + + مؤتمن + + + غير مقبول + + + الشاهد + + + المبدئي هنا + + + وقع هنا + + + مشروع + + + أخير + + + للنشر العام + + + ليس للنشر العام + + + للتعليق + + + فارغ + + + نتائج اولية + + + المعلومات فقط + + + تقديم النموذج + + + من + + + يتطلب عارض PDF هذا معالجة من جانب الخادم لعرض ملفات PDF من خلال خدمة الويب. يجب عليك تكوين عنوان URL للخدمة لمتابعة استخدام عارض PDF + + + قريب + + + أضف التوقيع + + + أضف الحرف الأولي + + + ارسم بالحبر + + + الطاولة + + + صف + + + زنزانة + + + حسنا + + + إلغاء + + + بحجم + + + العرض المفضل + + + نقاط + + + نسبه مئويه + + + التدبير في + + + انتقام + + + اليسار + + + مركز + + + حق + + + برر + + + مستوى المخطط التفصيلي + + + نص الجسم + + + المستوى 1 + + + المستوي 2 + + + مستوى 3 + + + مستوى 4 + + + مستوى 5 + + + المستوى 6 + + + المستوى 7 + + + المستوى 8 + + + المستوى 9 + + + المسافة البادئة من اليسار + + + الحدود والتظليل + + + خيارات + + + تحديد الارتفاع + + + على الأقل + + + بالضبط + + + ارتفاع الصف هو + + + السماح للصف بالتقاطع بين الصفحات + + + كرر كصف رأس في أعلى كل صفحة + + + انحياز عمودي + + + أعلى + + + الأسفل + + + هوامش الخلية الافتراضية + + + تباعد الخلايا الافتراضية + + + السماح التباعد بين الخلايا + + + هوامش الخلية + + + نفس الجدول بأكمله + + + الحدود + + + لا شيء + + + أسلوب + + + عرض + + + ارتفاع + + + رسالة + + + صحيفة شعبية + + + قانوني + + + بيان + + + تنفيذي + + + A3 + + + A4 + + + A5 + + + B4 + + + B5 + + + حجم مخصص + + + مختلف وغريب + + + الصفحة الأولى مختلفة + + + من الحافة + + + رأس + + + تذييل + + + هوامش + + + ورقة + + + نسق + + + اتجاه + + + المناظر الطبيعيه + + + صورة + + + عرض أرقام الصفحات + + + محاذاة أرقام الصفحات الصحيحة. + + + لا شيئ + + + زعيم التبويب + + + عرض المستويات + + + استخدم الارتباطات التشعبية بدلاً من أرقام الصفحات + + + بناء جدول المحتويات من + + + الأنماط + + + الأساليب المتاحة + + + مستوى جدول المحتويات + + + عنوان + + + عنوان 1 + + + العنوان 2 + + + العنوان 3 + + + العنوان 4 + + + العنوان 5 + + + العنوان 6 + + + العنوان 7 + + + العنوان 8 + + + العنوان 9 + + + قائمة الفقرة + + + عادي + + + مستويات المخطط + + + حقول دخول الجدول + + + تعديل + + + اللون + + + ضبط + + + صندوق + + + الكل + + + مخصص + + + معاينة + + + تظليل + + + ملء + + + تنطبق على + + + خصائص الجدول + + + خيارات الخلية + + + خيارات الجدول + + + إدراج الجدول + + + عدد الأعمدة + + + عدد الصفوف + + + النص للعرض + + + عنوان + + + إدراج الارتباط التشعبي + + + تحرير الرابط التشعبي + + + إدراج + + + جنرال لواء + + + المسافة الفارغة + + + قبل النص + + + مميز + + + السطر الأول + + + شنقا + + + بعد النص + + + بواسطة + + + قبل + + + تباعد الأسطر + + + بعد + + + في + + + مضاعف + + + تباعد + + + تحديد قائمة جديدة متعددة المستويات + + + مستوى القائمة + + + اختيار مستوى لتعديل + + + مستوى + + + تنسيق الرقم + + + نمط رقم لهذا المستوى + + + أدخل التنسيق للرقم + + + تبدأ في + + + إعادة تشغيل القائمة بعد + + + موضع + + + المسافة البادئة للنص في + + + محاذاة في + + + اتبع الرقم مع + + + حرف الجدولة + + + الفراغ + + + عربى + + + UpRoman + + + LowRoman + + + UpLetter + + + LowLetter + + + رقم + + + صفر بادئ + + + رصاصة + + + ترتيبي + + + النص العادي + + + من أجل الشرق + + + لا إعادة التشغيل + + + الخط + + + نوع الخط + + + تسطير الاسلوب + + + لون الخط + + + تأثيرات + + + يتوسطه + + + حرف فوقي + + + مخطوطة + + + يتوسطه خط مزدوج + + + منتظم + + + بالخط العريض + + + مائل + + + يقطع + + + نسخ + + + معجون + + + الارتباط التشعبي + + + افتح الرابط التشعبي + + + نسخ الرابط التشعبي + + + إزالة الارتباط التشعبي + + + فقرة + + + مرتبط (الفقرة والحرف) + + + حرف + + + دمج الخلايا + + + أدخل أعلاه + + + تضاف أدناه + + + أدخل اليسار + + + أدخل اليمين + + + حذف + + + حذف الجدول + + + احذف صف + + + حذف العمود + + + اسم الملف + + + نوع التنسيق + + + حفظ + + + التنقل + + + النتائج + + + يحل محل + + + استبدال الكل + + + استبدالنا جميع + + + تجد + + + العناوين + + + لا توجد مباريات + + + كله تمام + + + نتيجة + + + من + + + الحالات + + + مع + + + انقر لمتابعة الرابط + + + متابعة الترقيم + + + اسم الإشارة المرجعية + + + قريب + + + أعد التشغيل في + + + الخصائص + + + اسم + + + نوع النمط + + + النمط القائم على + + + نمط للفقرة التالية + + + تنسيق + + + الترقيم والرصاص + + + الترقيم + + + تحديث الحقل + + + تحرير الحقل + + + المرجعية + + + اعداد الصفحة + + + لم يتم العثور على إشارات مرجعية + + + شكل + + + إنشاء نمط جديد + + + تعديل النمط + + + جديد + + + الرصاص + + + استخدام الإشارات المرجعية + + + جدول المحتويات + + + احتواء تلقائي + + + الاحتواء التلقائي إلى المحتويات + + + الاحتواء التلقائي إلى النافذة + + + عرض العمود الثابت + + + إعادة تعيين + + + حالة مباراة + + + كلمات كاملة + + + إضافة + + + اذهب إلى + + + البحث عن + + + استبدل ب + + + جدول المحتويات 1 + + + جدول المحتويات 2 + + + جدول المحتويات 3 + + + جدول المحتويات 4 + + + جدول المحتويات 5 + + + جدول المحتويات 6 + + + جدول المحتويات 7 + + + جدول المحتويات 8 + + + جدول المحتويات 9 + + + من اليمين الى اليسار + + + من اليسار إلى اليمين + + + اتجاه + + + اتجاه الجدول + + + المسافة البادئة من اليمين + + + لا تضيف مسافة بين فقرات نفس الأنماط + + + كلمة المرور غير متطابقة + + + تقييد التحرير + + + قيود التنسيق + + + السماح بالتنسيق + + + قيود التحرير + + + يقرأ فقط + + + استثناءات (اختياري) + + + حدد أجزاء من المستند واختر المستخدمين المسموح لهم بتحريرها بحرية. + + + كل واحد + + + المزيد من المستخدمين + + + إضافة المستخدمين + + + نعم ، ابدأ في فرض الحماية + + + بدء فرض الحماية + + + أدخل المستخدم + + + المستخدمين + + + أدخل كلمة مرور جديدة + + + أعد إدخال كلمة مرور جديدة للتأكيد + + + أذوناتك + + + هذا المستند محمي من التحرير غير المقصود. + + + يمكنك تنسيق النص فقط مع أنماط معينة. + + + وقف الحماية + + + كلمه السر + + + محرر هجاء + + + الإملائية + + + التدقيق الإملائي + + + تسطير الأخطاء + + + تجاهل + + + تجاهل الكل + + + أضف إلى القاموس + + + يتغيرون + + + تغير الكل + + + اقتراحات + + + كلمة المرور غير صحيحة + + + خطأ في تأسيس اتصال مع خادم الويب + + + تسليط الضوء على المناطق التي يمكنني تحريرها + + + إظهار جميع المناطق التي يمكنني تعديلها + + + ابحث عن المنطقة التالية التي يمكنني تعديلها + + + الاحتفاظ بتنسيق المصدر + + + تطابق تنسيق الوجهة + + + نص فقط + + + تعليقات + + + اكتب تعليقك + + + بريد + + + الرد + + + تعليق جديد + + + تعديل + + + حل + + + إعادة فتح + + + لا توجد تعليقات في هذا المستند + + + أكثر + + + اكتب تعليقك هنا + + + التعليق التالي + + + التعليق السابق + + + التعليقات غير المنشورة + + + التعليقات المضافة لم تنشر. إذا تابعت ، سيتم تجاهل هذا التعليق. + + + لم يتم العثور على عنوان! + + + لا تحتوي هذه الوثيقة على عناوين. الرجاء إضافة العناوين والمحاولة مرة أخرى. + + + المزيد من الخيارات + + + انقر لرؤية هذا التعليق + + + حقل نموذج منسدل + + + عناصر منسدلة + + + العناصر في القائمة المنسدلة + + + أضف + + + إزالة + + + الإعدادات الميدانية + + + تلميح + + + تم تمكين القائمة المنسدلة + + + حقل نموذج خانة الاختيار + + + حجم خانة الاختيار + + + تلقاءي + + + القيمة الافتراضية + + + غير مدقق + + + التحقق + + + تم تمكين خانة الاختيار + + + حقل نموذج نصي + + + نوع + + + النص الافتراضي + + + الحد الأقصى لطول + + + تنسيق النص + + + تم تمكين التعبئة + + + الرقم الافتراضي + + + التاريخ الافتراضي + + + صيغة التاريخ + + + لن يتم وضع علامة على هذا الإجراء على أنه تغيير. هل تريد الاستمرار؟ + + + لا يمكن تعقبها + + + قبول + + + رفض + + + التغييرات السابقة + + + التغييرات القادمة + + + تم إدراجها + + + تم الحذف + + + التغييرات + + + قبول الكل + + + رفض الكل + + + لا تغيرات + + + قبول التغييرات + + + رفض التغييرات + + + المستعمل + + + رأي + + + وثيقة غير محمية + + + يمكنك فقط ملء النماذج في هذه المنطقة. + + + التحكم بالأسطر الناقصة / اليتيم + + + المسافات البادئة والتباعد + + + فواصل الأسطر والصفحات + + + حافظ على الخطوط معًا + + + تجاهل مرة واحدة + + + استمر مع التالي + + + نص تلميح الشاشة + + + الاحتفاظ بتنسيق المصدر + + + تطابق تنسيق الوجهة + + + يمكنك فقط إدراج التعليقات في هذه المنطقة. + + + يجب أن يكون عدد الصفوف بين 1 و 32767 + + + يجب أن يتراوح عدد الأعمدة بين 1 و 63 + + + معلومة + + + نقطة + + + داش فجوة صغيرة + + + داش دوت + + + فجوة صغيرة وسميكة ورقيقة + + + فجوة صغيرة رقيقة رقيقة + + + سميكة رقيقة متوسطة الفجوة + + + فجوة كبيرة رقيقة رقيقة + + + واحد مائج + + + مزدوج متموج + + + أقحم + + + داش فجوة كبيرة + + + شرطة نقطة نقطة + + + ثلاثية + + + رقيقة سميكة رقيقة فجوة صغيرة + + + رقيقة سميكة رقيقة متوسطة الفجوة + + + رقيقة سميكة رقيقة فجوة كبيرة + + + داش دوت مخططة + + + نقش + + + سميك + + + البداية + + + النقش + + + رقيقة سميكة فجوة كبيرة + + + رقيقة متوسطة الفجوة سميكة + + + نص عادي + + + تاريخ + + + الأحرف الكبيرة + + + أحرف صغيرة + + + تغيير الحالة + + + الأحرف الكبيرة + + + أحرف صغيرة + + + حالة الجملة + + + تكبير كل كلمة + + + حالة تبديل + + + فيرست كابيتال + + + حالة العنوان + + + انتقل من + + + الانتقال إلى + + + مقصف + + + يمكنك التعديل في هذه المنطقة. + + +فاصل مقطعي (الصفحة التالية) + + +فاصل صفحة + + +فاصل العمود + + +واحد + + +اثنين + + +ثلاثة + + +الإعدادات المسبقة + + +الأعمدة + + +قسّم النص إلى عمودين أو أكثر + + +خط بين العمود + + +العرض والتباعد + + +عرض عمود متساوي + + +عمودي + + +فاصل مقطعي (مستمر) + + + نظرًا لسياسة أمان المتصفح ، يتم تقييد اللصق من حافظة النظام. بدلاً من ذلك ، استخدم اختصار لوحة المفاتيح + + + لا تظهر مرة أخرى + + +الأعمدة + + +إظهار الأحرف المخفية مثل المسافات وعلامات الجدولة وعلامات الفقرات والفواصل. (Ctrl + *) + + + عادي + + + مائل غامق + + + جديد + + + افتح + + + الغاء التحميل + + + الإعادة + + + صورة + + + الطاولة + + + حلقة الوصل + + + المرجعية + + + جدول المحتويات + + + عنوان + + + عنوان 1 + + + العنوان 2 + + + رأس + + + تذييل + + + اعداد الصفحة + + + رقم الصفحة + + + استراحة + + + تجد + + + العناوين + + + الحافظة المحلية + + + تقييد التحرير + + + رفع الملف من الحاسوب + + + بواسطة URL + + + تذييل الرأس + + + خيارات + + + مستويات + + + الصفحة الأولى مختلفة + + + رأس وتذييل مختلف للصفحات الفردية والزوجية. + + + الصفحات الفردية والزوجية المختلفة + + + ارتباط إلى السابق + + + رأس وتذييل مختلف للصفحة الأولى. + + + موضع + + + رأس من الأعلى + + + تذييل من أسفل + + + المسافة من أعلى الصفحة إلى أعلى الرأس. + + + المسافة من أسفل الصفحة إلى أسفل التذييل. + + + ابعاد متزنة + + + W + + + H + + + عرض + + + ارتفاع + + + نص بديل + + + نص + + + فقرة + + + ملء + + + ملء اللون + + + نمط الحدود + + + الحدود الخارجية + + + كل الحدود + + + داخل الحدود + + + الحدود اليسرى + + + داخل الحدود العمودية + + + الحدود اليمنى + + + الحدود العليا + + + داخل الحدود الأفقية + + + الحد السفلي + + + لون الحدود + + + عرض الحدود + + + زنزانة + + + دمج الخلايا + + + إدراج / حذف + + + أدخل الأعمدة إلى اليسار + + + أدخل الأعمدة على اليمين + + + إدراج الصفوف أعلاه + + + إدراج الصفوف أدناه + + + حذف الصفوف + + + حذف الأعمدة + + + هامش الخلية + + + أعلى + + + الأسفل + + + اليسار + + + حق + + + محاذاة النص + + + محاذاة أعلى + + + محاذاة القاع + + + محاذاة المركز + + + عدد مستويات العنوان أو المخطط التفصيلي الموضح في جدول المحتويات. + + + عرض أرقام الصفحات + + + إظهار أرقام الصفحات في جدول المحتويات. + + + محاذاة أرقام الصفحات الصحيحة. + + + محاذاة أرقام الصفحات في جدول المحتويات. + + + استخدام الارتباطات التشعبية + + + استخدم الارتباطات التشعبية بدلاً من أرقام الصفحات. + + + الخط + + + حجم الخط + + + لون الخط + + + لون تسليط الضوء على النص + + + امسح كل التنسيقات + + + غامق (Ctrl + B) + + + مائل (Ctrl + I) + + + تسطير (Ctrl + U) + + + يتوسطه + + + مرتفع (Ctrl + Shift ++) + + + منخفض (Ctrl + =) + + + محاذاة إلى اليسار (Ctrl + L) + + + المركز (Ctrl + E) + + + محاذاة لليمين (Ctrl + R) + + + الضبط (Ctrl + J) + + + انخفاض المسافة البادئة + + + زيادة المسافة البادئة + + + تباعد الأسطر + + + الرصاص + + + الترقيم + + + الأنماط + + + إدارة الأنماط + + + صفحة + + + من + + + تناسب صفحة واحدة + + + التدقيق الإملائي + + + تسطير الأخطاء + + + تناسب عرض الصفحة + + + تحديث + + + إلغاء + + + إدراج + + + ليس لها حدود + + + قم بإنشاء مستند جديد. + + + افتح المستند. + + + التراجع عن العملية الأخيرة (Ctrl + Z). + + + أعد العملية الأخيرة (Ctrl + Y). + + + إدراج صورة مضمنة من ملف. + + + إدراج جدول في المستند. + + + قم بإنشاء رابط في وثيقتك للوصول السريع إلى صفحات الويب والملفات (Ctrl + K). + + + إدراج إشارة مرجعية في مكان محدد في هذا المستند. + + + قدّم نظرة عامة على المستند عن طريق إضافة جدول محتويات. + + + إضافة أو تحرير الرأس. + + + إضافة أو تحرير تذييل الصفحة. + + + افتح مربع حوار إعداد الصفحة. + + + إضافة أرقام الصفحات. + + + ابحث عن نص في المستند (Ctrl + F). + + + رقم الصفحة الحالية في المستند. انقر أو اضغط للتنقل في صفحة معينة. + + + يقرأ فقط + + + الحماية + + + خطأ في تأسيس اتصال مع خادم الويب + + + غير مرتبطة + + + مزدوج + + + تعليق جديد + + + تعليقات + + + تخطيط الطباعة + + + تخطيط ويب + + + التبديل بين الحافظة الداخلية وحافظة النظام. + تم رفض الوصول إلى حافظة النظام من خلال البرنامج النصي بسبب سياسة أمان المتصفحات. بدلاً من ذلك ، + 1. يمكنك تمكين الحافظة الداخلية من القص والنسخ واللصق داخل المكون. + 2. يمكنك استخدام اختصارات لوحة المفاتيح (Ctrl + X و Ctrl + C و Ctrl + V) للقص ونسخ ولصق مع حافظة النظام. + + + نموذج نصي + + + خانة اختيار + + + اسقاط + + + تحديث الحقول + + + تحديث حقول الإسناد الترافقي. + + + تتبع التغييرات التي تم إجراؤها في المستند. + + + تعقب التغيرات + + + مستوى التكبير + + + أدخل حاشية سفلية (Alt + Ctrl + F). + + + قم بإدراج تعليق ختامي (Alt + Ctrl + D). + + + أدخل التعليقات + + + حقول النموذج + + + معلومة + + + كل الأحرف الاستهلالية + + + إدراج + + + إدراج + + + تعبئة النماذج + + + التغييرات المتعقبة + + + إذا أجريت هذا التغيير في حماية المستند ، فسيتجاهل Word كافة الاستثناءات في هذا المستند. + + + يمكنك التحرير في هذه المنطقة ، ولكن سيتم تعقب كل التغييرات + + + تنسيق الملف الذي حددته غير مدعوم. الرجاء اختيار تنسيق صالح. + + + كانت هناك مشكلة في فتح هذا المستند + + + هل تريد إزالة الاستثناءات التي تم تجاهلها؟ + + + نعم + + + رقم + + + إظهار جزء الخصائص + + + إخفاء جزء الخصائص + + + مستمر + + + عمود + + + صفحة + + + الصفحة التالية + + + فواصل الصفحة + + + فواصل القسم + + + عنوان هذا الموقع غير صالح. تحقق من العنوان ثم حاول مرة أخرى. + + + موافق + + + اختر مهمة أخرى + + + حدد موضع الموصل + + + اليسار + + + حق + + + تصدير التعليق التوضيحي إلى ملف XFDF + + + Nhập chú thích từ tệp XFDF + + + معلومة + + + خط مكدس + + + خط مكدس مائة بالمائة + + + لا أحد + + + جار التحميل... + + + حسنا + + + إلغاء + + + لا تظهر المجاميع الفرعية + + + إظهار أعمدة المجاميع الفرعية فقط + + + إظهار صفوف المجاميع الفرعية فقط + + + إظهار المجاميع الفرعية + + + موضع المجاميع الفرعية + + + المجاميع الفرعية + + + غير مرتبطة + + + آلي + + + صف بيجر + + + عدد الصفوف في الصفحة + + + بيجر العمود + + + أعمدة في الصفحة + + + اذهب إلى الصفحة الأولى + + + انتقل إلى الصفحة الأخيرة + + + انتقل إلى الصفحة التالية + + + الانتقال إلى الصفحة السابقة + + + أختر + + + مرشحات الوقت + + + كالسابق + + + قسم + + + رأس الصفحة الفردية + + + تذييل الصفحة الفردية + + + حتى رأس الصفحة + + + حتى تذييل الصفحة + + + رأس الصفحة الأولى + + + تذييل الصفحة الأولى + + + و + + + عنوان + + + وصف + + + نص بديل + + + حسنا + + + ملف غير مدعم + + + الملف المسقط غير مدعوم. + + + قم بإسقاط صورتك هنا أو + + +موضع توقف علامة التبويب + + +علامات التبويب الافتراضية + + +علامات التبويب المراد مسحها + + +نوافذ التبويب + + +تعيين + + +واضح + + +امسح الكل + + +عدد عشري + + +حاجِز + + +تنسيق + + +قائد + + +الجميع + + +الهامش السفلي + + +الأولى المسافة البادئة للسطر + + +المسافة البادئة المعلقة + + +المسافة البادئة اليسرى + + +الهامش الأيسر + + +نقل عمود الجدول + + +المسافة البادئة اليمنى + + +الهامش الأيمن + + +الهامش العلوي + + +علامة التبويب اليسرى + + +علامة التبويب المركزية + + +علامة التبويب اليمنى + + +علامة التبويب العشرية + + +شريط التبويب + + + حاشية. ملاحظة + + + باطل + + + هو ليس لاشيء + + + تصويب + + + مجموع + + + No comença amb + + + No acaba amb + + + قفل المجموعة + + + فتح المجموعة + + + قاعدة القفل + + + فتح القاعدة + + + مجموعة استنساخ + + + قاعدة الاستنساخ + + + حفظ باسم + + + قريب + + + تحميل + + + حجم الصورة: + + + مخصص + + + جيد + + + عظيم + + + الأعلى + + + جودة + + + يتوفر خيار جودة الصورة فقط لتنسيق JPEG + + + اسم الصورة + + + شكل + + + ترتيب Z + + + اجلب للمقدمة + + + ثابر للأمام + + + إرسال إلى الخلف + + + إرسال إلى الوراء + + + لون المخطط التفصيلي + + + تنقيح + + + بكسلات + + + حجم البكسل + + + الألوان الأخيرة + + + و + + + إيقاف الاستجابة + + + {0} و{1} و{2} آخرون يكتبون + + + {0} يكتب + + + {0} و{1} يكتبان + + + {0} و{1} و{2} آخرون يكتبون + + + الرمز المضمن + + + + + + تم إحباط التعرف على الكلام. + + + لم يتم اكتشاف أي ميكروفون. تأكد من توصيل الميكروفون. + + + حدث خطأ غير معروف. + + + حدث خطأ في الشبكة. تحقق من اتصالك بالإنترنت. + + + لم يتم اكتشاف أي كلام. يرجى التحدث إلى الميكروفون. + + + تم رفض الوصول إلى الميكروفون. السماح بأذونات الميكروفون. + + + خدمة التعرف على الصوت غير مسموح بها في هذا السياق. + + + لا يدعم المستعرض واجهة برمجة تطبيقات SpeechRecognize. + + + اضغط لبدء التحدث ونسخ كلماتك + + + اضغط لإيقاف التحدث وإنهاء النسخ + + + ابدأ الاستماع + + + توقف عن الاستماع + + + صلب + + + متقطع + + + منقط + + \ No newline at end of file diff --git a/KB-Samples/LargeDiagram/Resources/SfResources.de.resx b/KB-Samples/LargeDiagram/Resources/SfResources.de.resx new file mode 100644 index 00000000..a3f765d8 --- /dev/null +++ b/KB-Samples/LargeDiagram/Resources/SfResources.de.resx @@ -0,0 +1,6795 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + text/microsoft-resx + + + 2.0 + + + System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + Die Anfrage ist fehlgeschlagen + + + Keine Einträge vorhanden + + + Heute + + + Die Anfrage ist fehlgeschlagen + + + Keine Einträge vorhanden + + + Wählen Sie ein Datum + + + Heute + + + Anwenden + + + Abbrechen + + + Benutzerdefinierten Bereich + + + Tage + + + Endtermin + + + Wählen Sie einen Datumsbereich + + + Ausgewählte Tage + + + Anfangsdatum + + + Wählen Sie ein Datum und eine Uhrzeit + + + Heute + + + Tag + + + Monat + + + Jahr + + + Stunde + + + Minute + + + Zweite + + + Wochentag + + + Die Anfrage ist fehlgeschlagen + + + Keine Einträge vorhanden + + + Keine Einträge vorhanden + + + TDie Anfrage ist fehlgeschlagen + + + Wählen Sie Alle + + + Alles wiederufen + + + Keine Einträge vorhanden + + + Die Anfrage ist fehlgeschlagen + + + Keine Einträge vorhanden + + + +${count} mehr .. + + + Wählen Sie Alle + + + ${count} ausgewählt + + + Alles wiederufen + + + Wert verringern + + + Inkrementieren Sie den Wert + + + Wähle eine Zeit + + + Abbrechen + + + Durchsuche... + + + Abbrechen + + + Zurücksetzen + + + Datei löschen + + + Oder legen Sie Dateien hier ab + + + Datei-Upload abgebrochen + + + Hochladen + + + Dateityp ist nicht erlaubt + + + Dateiname ist nicht zulässig + + + Dateigröße ist zu groß + + + Dateigröße ist zu klein + + + Pause + + + Datei-Upload angehalten + + + Bereit zum Hochladen + + + Entfernen + + + Datei kann nicht entfernt werden + + + Datei erfolgreich entfernt + + + Fortsetzen + + + Wiederholen + + + Hochladen + + + Datei konnte nicht hochgeladen werden + + + Datei erfolgreich hochgeladen + + + Schwenken + + + Zurücksetzen + + + Zoom zurücksetzen + + + Zoomen + + + Hineinzoomen + + + Rauszoomen + + + Anwenden + + + Abbrechen + + + Wechselmodus + + + Format umschalten + + + Farbwähler + + + Split-Taste + + + Die Anfrage ist fehlgeschlagen + + + Alle verschieben von + + + Alle verschieben nach + + + Sich abwärts bewegen + + + Verschieben von + + + Ziehen nach + + + Nach oben bewegen + + + Keine Aufzeichnungen gefunden + + + Wählen Sie Alle + + + Alles wiederufen + + + Listenelement suchen + + + Bedingung hinzufügen + + + Gruppe hinzufügen + + + UND + + + Zwischen + + + Enthält + + + Gruppe löschen + + + Entfernen Sie diesen Zustand + + + Bearbeiten + + + Leer + + + Endet mit + + + Gleich + + + Größer als + + + Größer als oder gleich + + + In + + + Weniger als + + + Weniger als oder gleich + + + Nicht zwischen + + + Enthält nicht + + + Nicht leer + + + Nicht gleich + + + Nicht in + + + ODER + + + Andere Felder + + + ENTFERNEN + + + Wählen Sie ein Feld aus + + + Operator auswählen + + + Wert eingeben + + + Wähle Wert + + + Wählen Sie einen Bereich + + + Wählen Sie ein Datum aus + + + Beginnt mit + + + Zusammenfassungsansicht + + + Ist Null + + + Ist nicht Null + + + Dieses Feld wird benötigt + + + Neuer Ordner + + + Hochladen + + + Löschen + + + Umbenennen + + + Herunterladen + + + Schnitt + + + Kopieren + + + Einfügen + + + Sortiere nach + + + Aktualisierung + + + Eintrag ausgewählt + + + Elemente ausgewählt + + + Aussicht + + + Einzelheiten + + + Wählen Sie Alle + + + Öffnen + + + Neuer Ordner + + + Hochladen + + + Löschen + + + Umbenennen + + + Herunterladen + + + Schnitt + + + Kopieren + + + Einfügen + + + Sortiere nach + + + Aktualisierung + + + Auswahl aufheben + + + Aussicht + + + Einzelheiten + + + Wählen Sie Alle + + + Name + + + Größe + + + Geändert + + + Datum erstellt + + + Pfad + + + Geändert + + + Erstellt + + + Ort + + + Art + + + Genehmigung + + + Aufsteigend + + + Absteigend + + + Keiner + + + Große Icons + + + Einzelheiten + + + Suche + + + Ok + + + Abbrechen + + + Ja + + + Nein + + + Erstellen + + + Speichern + + + Mappe + + + Geben Sie Ihren Ordnernamen ein + + + Umbenennen + + + Geben Sie Ihren neuen Namen ein + + + Bestätigung umbenennen + + + Wenn Sie eine Dateinamenerweiterung ändern, wird die Datei möglicherweise instabil. Möchten Sie das wirklich ändern? + + + Datei löschen + + + Möchten Sie diese Datei wirklich löschen? + + + Lösche Ordne + + + Möchten Sie diesen Ordner wirklich löschen? + + + Mehrere Elemente löschen + + + Möchten Sie diese {0} -Elemente wirklich löschen? + + + Datei / Ordner existiert + + + {0} existiert bereits. Möchten Sie umbenennen und einfügen? + + + Daten hochladen + + + Error + + + Der Datei- oder Ordnername darf nicht leer sein. + + + Der Datei- oder Ordnername {0} enthält ungültige Zeichen. Bitte verwenden Sie einen anderen Namen. Gültige Datei- oder Ordnernamen dürfen nicht mit einem Punkt oder Leerzeichen enden. + + + Eine Datei oder ein Ordner mit dem Namen {0} ist bereits vorhanden. + + + {0} kann nicht in {1} umbenannt werden: Ziel ist bereits vorhanden. + + + Dieser Ordner ist leer + + + Ziehen Sie die Dateien hierher, um sie hochzuladen + + + keine Ergebnisse gefunden + + + Versuchen Sie es mit verschiedenen Stichwörtern + + + keine Ergebnisse gefunden + + + Versuchen Sie es mit einem anderen Filter + + + Der Zielordner ist der Unterordner des Quellordners. + + + Zugriff verweigert + + + Sie haben keine Berechtigung, auf diesen Ordner zuzugreifen. + + + Die Datei existiert bereits + + + In diesem Ordner existiert bereits eine Datei mit diesem Namen. Was würdest du gern tun? + + + Behalte beides + + + Ersetzen + + + Überspringen + + + Mache das für alle aktuellen Einträge + + + KB + + + {0} ist nicht zugänglich. Sie benötigen die Berechtigung, um die Aktion {1} auszuführen. + + + NetworkError: Fehler beim Senden auf XMLHTTPRequest: Fehler beim Laden + + + ServerError: Ungültige Antwort von + + + erhöhen + + + verringern + + + Optional + + + Bild nicht gefunden + + + Zoomen + + + Hineinzoomen + + + Rauszoomen + + + Zurücksetzen + + + Schwenken + + + Keine Datensätze zum Anzeigen + + + Id + + + Name + + + Anfangsdatum + + + Enddatum + + + Dauer + + + Fortschritt + + + Abhängigkeit + + + Anmerkungen + + + Basisstartdatum + + + Basisenddatum + + + Art + + + Versatz + + + Ressourcen + + + Ressourcen-ID + + + Tag + + + Stunde + + + Minute + + + Tage + + + Std + + + Minuten + + + Allgemeines + + + Benutzerdefinierte Spalten + + + Notizen schreiben + + + Neue Aufgabe + + + Aufgabeninformationen + + + Speichern + + + Hinzufügen + + + Bearbeiten + + + Aktualisieren + + + Löschen + + + Stornieren + + + Suchen + + + Aufgabe + + + Aufgaben + + + Hineinzoomen + + + Rauszoomen + + + Zoomen Sie + + + Excel-Export + + + CSV-Export + + + Alle erweitern + + + Alles einklappen + + + Nächste Zeitspanne + + + Vorheriger Zeitraum + + + Ok + + + Möchten Sie den Datensatz wirklich löschen? + + + Aus + + + Zu + + + Aufgabenlink + + + Verzögerung + + + Start + + + SS + + + SB + + + Beenden + + + BS + + + BB + + + Geben Sie den Wert ein + + + Sie haben "{0}" verschoben, um vor dem Ende von "{1}" zu beginnen, und die beiden Aufgaben sind miteinander verknüpft. Infolgedessen können die Links nicht beachtet werden. Wählen Sie unten eine Aktion aus, die ausgeführt werden soll + + + Sie haben "{0}" von "{1}" entfernt und die beiden Aufgaben sind miteinander verknüpft. Infolgedessen können die Links nicht beachtet werden. Wählen Sie unten eine Aktion aus, die ausgeführt werden soll + + + Sie haben "{0}" verschoben, um vor dem Start von "{1}" zu beginnen, und die beiden Aufgaben sind miteinander verknüpft. Infolgedessen können die Links nicht beachtet werden. Wählen Sie unten eine Aktion aus, die ausgeführt werden soll + + + Sie haben "{0}" verschoben, um nach dem Start von "{1}" zu beginnen, und die beiden Aufgaben sind miteinander verbunden. Infolgedessen können die Links nicht beachtet werden. Wählen Sie unten eine Aktion aus, die ausgeführt werden soll + + + Sie haben "{0}" nach "{1}" verschoben, um den Vorgang abzuschließen, und die beiden Aufgaben sind miteinander verknüpft. Infolgedessen können die Links nicht beachtet werden. Wählen Sie unten eine Aktion aus, die ausgeführt werden soll + + + Sie haben "{0}" nach "{1}" verschoben, um den Vorgang abzuschließen, und die beiden Aufgaben sind miteinander verknüpft. Infolgedessen können die Links nicht beachtet werden. Wählen Sie unten eine Aktion aus, die ausgeführt werden soll + + + Sie haben "{0}" von "{1}" zum Start verschoben und die beiden Aufgaben sind miteinander verbunden. Infolgedessen können die Links nicht beachtet werden. Wählen Sie unten eine Aktion aus, die ausgeführt werden soll + + + Sie haben "{0}" nach dem Start von "{1}" verschoben und die beiden Aufgaben sind miteinander verbunden. Infolgedessen können die Links nicht beachtet werden. Wählen Sie unten eine Aktion aus, die ausgeführt werden soll + + + Aufgabeninformationen + + + Aufgabe löschen + + + Abhängigkeit löschen + + + Konvertieren + + + Speichern + + + Darüber + + + Darunter + + + Kind + + + Meilenstein + + + Zur Aufgabe + + + Zum Meilenstein + + + Ereignismarkierungen + + + Linke Aufgabenbezeichnung + + + Rechte Aufgabenbezeichnung + + + Zeitleistenzelle + + + Möchten Sie den Abhängigkeitslink wirklich entfernen? + + + Einrücken + + + Ausrücken + + + Spalte automatisch anpassen + + + Alle Spalten automatisch anpassen + + + Aufsteigend sortieren + + + Absteigend sortieren + + + Aufgabenmodus + + + Auto + + + Handbuch + + + Startdatum der Unteraufgaben + + + Enddatum der Unteraufgaben + + + Dauer + + + Arbeit + + + h + + + D + + + m + + + Mindest + + + Benutzerdefinierte Spalten + + + Aufgabentyp + + + Kritischer Weg + + + Segmente + + + Aufgabe teilen + + + Aufgabe zusammenführen + + + Nicht zugewiesene Aufgaben + + + Keine Datensätze zum Anzeigen + + + wahr + + + falsch + + + Ungültige Filterdaten + + + Ziehen Sie eine Spaltenüberschrift hierher, um die Spalte zu gruppieren + + + Klicken Sie hier, um die Gruppierung aufzuheben + + + Die Gruppierung ist für diese Spalte deaktiviert + + + Filterleistenzelle + + + DataSource darf beim ersten Laden nicht leer sein, da Spalten aus dataSource in AutoGenerate Column Grid generiert werden + + + Hinzufügen + + + Bearbeiten + + + Abbrechen + + + Aktualisieren + + + Löschen + + + Drucken + + + PDF-Export + + + Excel-Export + + + Word-Export + + + CSV-Export + + + Suche + + + Spalten + + + Speichern + + + Zurück + + + Eintrag + + + Einträge + + + Keine Datensätze zum Bearbeiten ausgewählt + + + Keine Datensätze zum Löschen ausgewählt + + + Speichern + + + Ok + + + Abbrechen + + + Details von + + + Neuen Datensatz hinzufügen + + + Möchten Sie die Änderungen wirklich speichern? + + + Nicht gespeicherte Änderungen gehen verloren. Sind Sie sicher, dass Sie fortfahren wollen? + + + Möchten Sie den Datensatz wirklich löschen? + + + Möchten Sie die Änderungen wirklich verwerfen? + + + Spalte auswählen + + + Spalten durchsuchen + + + Keine Treffer gefunden + + + Filter + + + Klar + + + Null + + + Nicht null + + + Leer + + + Nicht leer + + + Wie + + + Beginnt mit + + + Endet mit + + + Enthält + + + Beginnt nicht mit + + + Endet nicht mit + + + Beinhaltet nicht + + + Gleich + + + Nicht gleich + + + Weniger als + + + Weniger als oder gleich + + + Größer als + + + Größer als oder gleich + + + Wählen Sie ein Datum + + + Geben Sie den Wert ein + + + Kopieren + + + Nach dieser Spalte gruppieren + + + Gruppierung nach dieser Spalte aufheben + + + Automatisch alle Spalten anpassen + + + Diese Spalte automatisch anpassen + + + Export + + + Erste Seite + + + Letzte Seite + + + Vorherige Seite + + + Nächste Seite + + + Aufsteigend sortieren + + + Absteigend sortieren + + + Aufsteigend sortiert + + + Absteigend sortiert + + + Datensatz bearbeiten + + + Aufzeichnung löschen + + + Filter + + + Wählen Sie Alle + + + Aktuelle Auswahl zum Filter hinzufügen + + + Leerzeichen + + + Wahr + + + Falsch + + + Keine Treffer gefunden + + + Filter klar + + + Anzahl Filter + + + Textfilter + + + Datumsfilter + + + Datum-Uhrzeit-Filter + + + Groß-/Kleinschreibung beachten + + + Zwischen + + + Benutzerdefinierte Filter + + + Geben Sie den Wert ein + + + Wählen Sie ein Datum + + + UND + + + ODER + + + Zeilen anzeigen, in denen: + + + Filtersymbol + + + Spaltenmenüsymbol + + + Gruppenschaltfläche + + + Kontrollkästchen Zeile + + + Schaltfläche „Gruppierung aufheben“ + + + Spaltenüberschrift + + + Kontrollkästchen Filter + + + Kontrollkästchen Kopfzeile + + + Sortieren + + + Aufsteigend + + + Absteigend + + + Keiner + + + Ist Vorlage + + + Drücken Sie die Eingabetaste, um Zu Sortieren + + + Drücken Sie Alt Down, um das Filtermenü zu öffnen + + + Drücken Sie Alt Down, um das Spaltenmenü zu öffnen + + + Spaltenmenü + + + Drücken Sie die Strg-Taste, um zu gruppieren + + + ist die Untertitelzelle der Gruppe + + + spaltenkopf undefiniert + + + sortieren Sie die gruppierte Spalte + + + schliessen + + + FILTERBEDIENER + + + Filterwert + + + Zeile auswählen + + + Seite + + + Seiten + + + von + + + Pager externe Nachricht + + + Seiten + + + Pager-Dropdown + + + Gehe zu Seite + + + {0} von {1} Seiten + + + ({0} Einträge) + + + Gehe zur ersten Seite + + + Gehe zur letzten Seite + + + Gehe zur nächsten Seite + + + Zurück zur vorherigen Seite + + + Zum nächsten Pager gehen + + + Zum vorherigen Pager wechseln + + + Objekte pro Seite + + + Einträge + + + Alle + + + Einträge + + + Titel hinzufügen + + + Agenda + + + Warnen + + + Den ganzen Tag + + + Beginnen Sie von + + + Ereignisse können nicht innerhalb des gesperrten Zeitbereichs geplant werden. + + + Abbrechen + + + Abbrechen + + + Schließen + + + Die Dauer des Ereignisses muss kürzer als die Häufigkeit sein, mit der es auftritt. Verkürzen Sie die Dauer oder ändern Sie das Wiederholungsmuster im Wiederholungsereignis-Editor. + + + Erstellen + + + Tag + + + Löschen + + + Löschen + + + Möchten Sie diesen Termin wirklich löschen? + + + Diese Veranstaltung + + + Möchten Sie die ausgewählten Ereignisse wirklich löschen? + + + Mehrere Ereignisse löschen + + + Ganze Serie + + + Ereignis löschen + + + Beschreibung + + + Bearbeiten + + + Wie möchten Sie den Termin in der Serie ändern? + + + Diese Veranstaltung + + + Folge Veranstaltungen + + + Wiederholung bearbeiten + + + Ganze Serie + + + Ereignis bearbeiten + + + An diesem Tag sind keine Veranstaltungen geplant. + + + Ende + + + Endzeit + + + Ende um + + + Zeitzone beenden + + + Der eingegebene Datumswert ist ungültig. + + + Ort + + + Suchen Sie nach mehr + + + Monat + + + Monatsagenda + + + Mehr + + + Mehr Details + + + Weitere Veranstaltungen + + + Neues Event + + + Nächster + + + Nein + + + Keine Ereignisse + + + Keine Aufzeichnungen + + + (Kein Titel) + + + Auftreten + + + Ok + + + Bisherige + + + Wiederholung + + + Wiederkehrendes Ereignis + + + Wiederholen + + + Wiederholt + + + Zwei Ereignisse desselben Ereignisses können nicht am selben Tag auftreten. + + + Speichern + + + Schließen + + + Vorherige Folie + + + Nächste Folie + + + Rutschen + + + von + + + Stoppen Sie die automatische Animation + + + Autoanimation starten + + + Diashow + + + Anzahl + + + Täglich + + + Tage) + + + Ende + + + jeden + + + Zuerst + + + Vierte + + + Zuletzt + + + Monat + + + Monats-Expander + + + Monatlich + + + Monatliche Position + + + Monat (e) + + + Monat Woche + + + noch nie + + + Keiner + + + Wiederholen Sie Ein + + + Tag + + + Wiederholen + + + Wiederhole jeden + + + Wiederholungsintervall + + + Zweite + + + Tage) + + + Monat (e) + + + auf + + + Wiederholt + + + Zusammenfassung + + + bis um + + + Wochen) + + + Jahre) + + + Dritte + + + Bis um + + + Wöchentlich + + + Wochen) + + + Year Expander + + + Jährlich + + + Jahre) + + + Speichern + + + Elemente ausgewählt + + + Zeitzone suchen + + + Serie + + + Möchten Sie die an bestimmten Instanzen dieser Serie vorgenommenen Änderungen verwerfen und erneut mit der gesamten Serie abgleichen? + + + Start + + + Ereignisse anzeigen bis + + + Startzeit + + + Das ausgewählte Enddatum liegt vor dem Startdatum. + + + Starten Sie die Zeitzone + + + Gegenstand + + + Tag + + + Monat + + + Woche + + + Arbeitswoche + + + Timeline-Jahr + + + Zeitzone + + + Titel + + + Heute + + + Woche + + + Wochenprogramm + + + Arbeitswoche + + + Arbeitswochen-Agenda + + + Das Wiederholungsmuster ist ungültig. + + + Ja + + + Jahr + + + Bedingung hinzufügen + + + Zur Spalte hinzufügen + + + Zum Filter hinzufügen + + + Zur Zeile hinzufügen + + + Zum Wert hinzufügen + + + Nach + + + Nach oder gleich + + + Aggregat + + + Warnen + + + Alle + + + Alle Felder + + + Alle Werte + + + und + + + Anwenden + + + Bereich + + + Aufsteigend + + + Durchschnitt + + + Bar + + + Basisfeld + + + Basisgegenstand + + + Vor + + + Vorher oder gleich + + + Beginnt mit + + + Zwischen + + + (Leer) + + + durch + + + Berechnetes Feld + + + In diesem Namen ist bereits ein Berechnungsfeld vorhanden. Möchten Sie es ersetzen? + + + Ziehen Sie Felder in die Formel und legen Sie sie dort ab + + + Ziehen Sie das Feld in die Formel + + + Das berechnete Feld kann nur in der Werteachse in einem anderen Bereich platziert werden. + + + Beispiel: ('Sum(Order_Count)' + 'Sum(In_Stock)') * 250 + + + In diesem Namen ist bereits ein Feld vorhanden. Bitte geben Sie einen anderen Namen ein. + + + Fügen Sie hier Felder hinzu und bearbeiten Sie die Formel. + + + Geben Sie den Feldnamen ein + + + Beispiel: [Measures].[Order Quantity] + ([Measures].[Order Quantity] * 0.10) + + + Ziehen Sie Felder per Drag-and-Drop, um einen Ausdruck zu erstellen. Und wenn Sie die vorhandenen berechneten Felder bearbeiten möchten! Sie können dies erreichen, indem Sie einfach das Feld unter „Berechnete Mitglieder“ auswählen. + + + Abbrechen + + + Diagramm + + + Löschen + + + Löschen + + + Schließen + + + Zusammenbruch + + + Säule + + + Spalte hier ablegen + + + Spalten + + + Bedingte Formatierung + + + Bedingte formatierung + + + Enthält + + + Kopieren + + + Anzahl + + + Berechnetes Feld erstellen + + + CSV + + + Währung + + + Währungszeichen + + + Benutzerdefiniert + + + Benutzerdefiniertes Format + + + Geben Sie eine benutzerdefinierte Formatzeichenfolge ein + + + Datum + + + Zeigen Sie die Elemente an, für die das Datum gilt + + + Tage + + + Nachkommastellen + + + Löschen + + + Löschen Sie einen aktuellen Bericht + + + Absteigend + + + Einzelheiten + + + Unterschied von + + + Abmessungen + + + Deutliche Anzahl + + + Beginnt nicht mit + + + Beinhaltet nicht + + + Endet nicht mit + + + Ist nicht gleich + + + Keine Gesamtsummen anzeigen + + + Ziehen + + + Durchbohren + + + Die Rohelemente berechneter Felder können nicht angezeigt werden. + + + Bearbeiten + + + Keine Datensätze zum Anzeigen + + + Keine Berichte gefunden !! + + + Endet bei + + + Endet mit + + + Datum eingeben + + + Geben Sie einen Berichtsnamen ein + + + Wert eingeben + + + Gleich + + + Error + + + z.B: + + + Excel + + + Erweitern + + + Export + + + Ausdruck + + + Falsch + + + Feldbeschriftung + + + Feldbeschriftung + + + Das Feld, das Sie verschieben, kann nicht in diesem Bereich des Berichts platziert werden + + + Feldname + + + Feldname : + + + Feldtyp + + + Filter + + + Filter hier ablegen + + + Gefiltert + + + Filter + + + Format + + + Zeichenfolge formatieren + + + Formattyp + + + Formel + + + Gesamtsumme + + + Gesamtsummen + + + Größer als + + + Größer als oder gleich wie + + + Gruppe + + + Geben Sie die Beschriftung ein, die in der Kopfzeile angezeigt werden soll + + + Geben Sie die Beschriftung für das Gruppenfeld ein + + + Gruppierung + + + Gruppenname + + + Std + + + Index + + + Intervall von + + + Ungültiges Format. + + + Ungültige Formel. + + + Diese Auswahl kann nicht gruppiert werden. + + + JPEG + + + Etikette + + + Zeigen Sie die Elemente an, für die das Etikett + + + Links + + + Weniger als + + + Gleich oder kleiner als + + + Linie + + + Belastung + + + Wird geladen... + + + Datensätze verwalten + + + Max + + + MDX-Abfrage + + + Messen + + + Mitglied + + + weitere Einträge gefunden. Suche, um weiter zu verfeinern. + + + Min + + + Protokoll + + + Monate + + + Mehr... + + + Mehrere Elemente + + + Erstellen Sie einen neuen Bericht + + + Möchten Sie Änderungen an diesem Bericht speichern? + + + Kein Format gefunden !!! + + + Geben Sie einen Wert ein + + + Keine Treffer + + + Nicht zwischen + + + Nicht gleich + + + Kein Wert + + + Null + + + Nummer + + + Zahlenformatierung + + + von + + + OK + + + Außer Reichweite + + + Übergeordnete Hierarchie + + + PDF + + + Prozent + + + Prozentsatz + + + % der Spalte insgesamt + + + % des Unterschieds von + + + % der Gesamtsumme + + + % der übergeordneten Spalte insgesamt + + + % der Gesamtzahl der übergeordneten Zeilen + + + % der Elternsumme + + + % der Zeilensumme + + + PNG + + + Polar + + + Bevölkerungsstandardabweichung + + + Populationsvarianz + + + Produkt + + + Qtr + + + Viertel + + + Vierteljahr + + + Entfernen + + + Möchten Sie diesen Bericht wirklich löschen? + + + Benennen Sie einen aktuellen Bericht um + + + Berichtsliste + + + Berichtsname: + + + Recht + + + Reihe + + + Hier eine Zeile ablegen + + + Reihen + + + Laufende Summen + + + Musterbericht + + + Standardabweichung der Probe + + + Stichprobenvarianz + + + Als aktuellen Bericht speichern + + + Speichern Sie einen Bericht + + + Streuen + + + Suche + + + Sekunden + + + Ausgewählte Einträge + + + Wählen Sie Gruppen aus + + + Nur Gesamtsummenspalten anzeigen + + + Feldliste anzeigen + + + Gesamtsummen anzeigen + + + Nur Gesamtsummenzeilen anzeigen + + + Tabelle anzeigen + + + Sortieren + + + Standard + + + Beginnt um + + + Zwischensummen + + + Summe + + + Werte zusammenfassen mit + + + Werte zusammenfassen mit + + + SVG + + + Symbolposition + + + Gesamt + + + Wahr + + + nicht definiert + + + Gruppierung aufheben + + + Bitte geben Sie einen gültigen Datensatznamen ein !!! + + + Wert + + + Wert hier ablegen + + + Wertefeldeinstellungen + + + Werte + + + Zeigen Sie die Elemente an, für die + + + Warnung + + + Jahre + + + Mehrere Achsen + + + Configuración de tipo de gráfico + + + Tipo de carta + + + si + + + No + + + Formato de número ... + + + formato condicional ... + + + Está seguro de que desea eliminar este campo calculado? + + + Área apilada + + + Columna apilada + + + Barra apilada + + + Línea de paso + + + Área de paso + + + Área de spline + + + Ranura + + + Columna 100% apilada + + + Barra 100% apilada + + + Área 100% apilada + + + Burbuja + + + Pareto + + + Radar + + + Berechnetes Feld bearbeiten + + + Bearbeiten Sie die bearbeiteten Feldinformationen + + + Beispiel: C, P, 0000%, ### 0. ## 0 # usw. + + + Legende anzeigen + + + Geben Sie die Feldbeschriftung ein + + + Datenreihenfolge sortieren + + + Aufsteigende Reihenfolge sortieren + + + Absteigende Reihenfolge sortieren + + + Ein Bericht mit dem Namen + + + ist bereits vorhanden. Möchten Sie es ersetzen? + + + Pivot-Feldliste + + + Feldliste + + + Feld hier hinzufügen + + + Feld auswählen + + + Ziehen Sie Felder zwischen den folgenden Achsen: + + + Hinzufügen + + + Layoutaktualisierung verschieben + + + Kuchen + + + Pyramide + + + Krapfen + + + Trichter + + + Gestapelt + + + Mehrachsenmodus + + + Median + + + Unterseite + + + Gesamtsummenposition + + + Spitze + + + Auf Gesamtsumme anwenden + + + Schließen + + + Schließen + + + Schließen + + + Speichern + + + Abbrechen + + + Wird geladen... + + + Zum Bearbeiten anklicken + + + Zum Bearbeiten anklicken + + + Doppelklick zum bearbeiten + + + Klein + + + Klein + + + Helligkeit + + + Durchsuche + + + Rauszoomen + + + Hineinzoomen + + + Zuschneiden und transformieren + + + Auswahl zuschneiden + + + Anmerkung + + + Transformiere dich + + + Feinabstimmen + + + Filter + + + Helligkeit + + + Kontrast + + + Karosseriefarbton + + + SÄTTIGUNG + + + Exposition + + + Opazität + + + Unscharf (Blur) + + + Schriftfamilie + + + Schriftgröße + + + Schriftfarbe + + + Strichfarbe + + + Strichstärke + + + Füllfarbe + + + Anwenden + + + Zurücksetzen + + + Speichern + + + Rückgängig machen + + + Redo + + + Standard + + + Chrome + + + Kälte + + + Warm + + + Graustufen + + + Sepia + + + Umkehren + + + Benutzerdefiniert + + + Quadrat + + + Kreis + + + Stift + + + Linie + + + Rechteck + + + Ellipse + + + Pfad + + + Text hinzufügen + + + Nach links drehen + + + Nach rechts drehen + + + Horizontal Flip + + + Vertikal Flip + + + Fett gedruckt + + + Kursiv + + + XS + + + Klein + + + Größe M + + + Groß + + + X-Groß + + + Duplikat + + + Entfernen + + + Text bearbeiten + + + Start + + + Ende + + + Keiner + + + Pfeil fest + + + Keiner + + + Bar + + + Pfeil + + + Pfeil fest + + + Kreis + + + Fest einkreisen + + + Quadrat + + + Quadratisch massiv + + + Änderungen speichern bestätigen + + + Möchten Sie die Änderungen, die Sie am Bild vorgenommen haben, speichern? + + + Ja + + + Nein + + + Größe ändern + + + Breite + + + Höhe + + + Behalten Sie das Nicht-Seitenverhältnis bei + + + Seitenverhältnis beibehalten + + + horizontaler Flip + + + vertikaler Flip + + + Transparenz + + + Ziehen Sie Ihr Bild hierher oder legen Sie es dort ab + + + Hier stöbern... + + + Unterstützt: + + + rahmen + + + keiner + + + Matte + + + Fase + + + Linie + + + Einsatz + + + Haken + + + Farbe + + + Größe + + + versetzt + + + Radius + + + Menge + + + W + + + H + + + Grenze + + + Solide + + + Gestrichelt + + + Gepunktet + + + Farbverlauf + + + Einträge + + + Aufgabe + + + Keine Karten zum Anzeigen + + + Min + + + Max + + + Karten ausgewählt + + + Neue Karte hinzufügen + + + Karte bearbeiten + + + Karte löschen + + + Möchten Sie diese Karte wirklich löschen? + + + Speichern + + + Löschen + + + Abbrechen + + + Ja + + + Nein + + + Rich-Text-Editor + + + Markdown-Editor + + + Zahlenformat Liste + + + Keiner + + + Nummer + + + Oberes Alpha + + + Unteres Alpha + + + Oberrömisch + + + Unterrömisch + + + Untergriechisch + + + Aufzählungs format liste + + + Keiner + + + Kreis + + + Quadrat + + + Rabatt + + + Absatz + + + kodex + + + Zitat + + + Überschrift 1 + + + Überschrift 2 + + + Überschrift 3 + + + Überschrift 4 + + + Überschrift 5 + + + Überschrift 6 + + + Überschrift 7 + + + Überschrift 8 + + + Überschrift 9 + + + Segoe UI + + + Arial + + + Georgia + + + Impact + + + Tahoma + + + Times New Roman + + + Verdana + + + Ausrichtungen + + + Linksbündig + + + Im Zentrum anordnen + + + Rechts ausrichten + + + Justify ausrichten + + + Schriftartenname + + + Schriftgröße + + + Schriftfarbe + + + Hintergrundfarbe + + + Fett gedruckt + + + Kursiv + + + Unterstreichen + + + Durchgestrichen + + + Format löschen + + + Alles löschen + + + Schnitt + + + Kopieren + + + Einfügen + + + Aufzählung + + + Nummerierte Liste + + + Einzug vergrößern + + + Einzug verringern + + + Rückgängig machen + + + Wiederholen + + + Hochgestellt + + + Index + + + Hyperlink einfügen + + + Verbindung öffnen + + + Link bearbeiten + + + Link entfernen + + + Bild einfügen + + + Ersetzen + + + Ausrichten + + + Bildbeschreibung + + + Entfernen + + + Entfernen + + + Anzeige + + + alternativer Text + + + Größe ändern + + + Maximieren + + + Maximieren + + + Minimieren + + + Kleinbuchstaben + + + Großbuchstaben + + + Drucken + + + Formate + + + Code-Ansicht + + + Vorschau + + + ViewSide + + + Code eingeben + + + Text anzeigen + + + Titel + + + Webadresse + + + Geben Sie einen Titel ein + + + https://example.com + + + Link in neuem Fenster öffnen + + + Link einfügen + + + Einfügen + + + Abbrechen + + + Aktualisieren + + + Bild einfügen + + + Sie können auch einen Link aus dem Internet bereitstellen + + + Bitte geben Sie eine URL für Ihr Bild an + + + Legen Sie das Bild hier ab oder durchsuchen Sie es, um es hochzuladen + + + Klicken Sie hier zum Hochladen + + + Alternativer Text + + + alternativer Text + + + Durchsuche + + + Klicken Sie hier, um es hochzuladen + + + Legen Sie eine Videodatei ab oder navigieren Sie zum Hochladen + + + Fügen Sie hier eingebetteten Code ein + + + Web-URL + + + Eingebetteter Code + + + Breite + + + Höhe + + + Klicken Sie hier, um es hochzuladen + + + Legen Sie eine Audiodatei ab oder navigieren Sie zum Hochladen + + + https://example.com/image.png + + + Untertitel + + + Bildgröße + + + Höhe + + + Breite + + + Text eingeben + + + Tabelle einfügen + + + Tabelle einfügen + + + Breite + + + Zellauffüllung + + + Zellenabstand + + + Anzahl der Spalten + + + Reihenanzahl + + + Reihe + + + Spalte + + + Horizontale Ausrichtung der Tabellenzelle + + + Vertikal ausrichten + + + Tabelle erstellen + + + Tabelle entfernen + + + Kopfzeile + + + Tabelle löschen + + + Tabellenzellenhintergrund + + + Tabelle Eigenschaften bearbeiten + + + Stile + + + Spalte links einfügen + + + Spalte rechts einfügen + + + Spalte löschen + + + Zeile davor einfügen + + + Zeile danach einfügen + + + Zeile löschen + + + Tabelle bearbeiten + + + Überschrift + + + Col + + + Link einfügen + + + Bild bearbeiten + + + Linksbündig + + + Zentriert + + + Rechtsbündig + + + Blocksatz + + + In der Reihe + + + Brechen + + + Zeile davor einfügen + + + Zeile danach einfügen + + + Zeile löschen + + + Spalte links einfügen + + + Spalte rechts einfügen + + + Spalte löschen + + + Oben ausrichten + + + Mitte ausrichten + + + Unten ausrichten + + + Gestrichelte Grenzen + + + Alternative Zeilen + + + Format einfügen + + + Wählen Sie die Formatierungsaktion + + + Einfacher Text + + + Sauber + + + Behalten + + + Ok + + + Abbrechen + + + Ersetzen + + + Entfernen + + + Anzeige + + + Ersetzen + + + Ausrichten + + + Entfernen + + + Anzeige + + + Abmessungen + + + In einem neuen Fenster öffnen + + + In einem neuen Fenster öffnen + + + Nicht unterstütztes Dateiformat + + + X + + + Ja + + + W + + + h + + + In den Vordergrund bewegen + + + Kopieren + + + Schneiden + + + Gruppe + + + Gruppierung + + + nach vorne bewegen + + + Auftrag + + + Paste + + + Redo + + + Alle Auswählen + + + nach hinten bewegen + + + In den Hintergrund bewegen + + + Rückgängig machen + + + Gruppierung aufheben + + + PDF Viewer + + + Abbrechen + + + Download-Datei + + + Herunterladen + + + Dieses Dokument ist passwortgeschützt. Bitte Passwort eingeben. + + + Datei fehlerhaft + + + Die Datei ist beschädigt und kann nicht geöffnet werden. + + + Passende Höhe + + + Seite anpassen + + + Breite anpassen + + + Automatisch + + + Erste Seite anzeigen + + + Zur ersten Seite gehen + + + Zur vorherigen Seite gehen + + + Gehe zur nächsten Seite + + + Gehe zur letzten Seite + + + Gehe zur Seitenzahl-Textbox + + + Seite herauszoomen + + + Seite hereinzoomen + + + Zoom-Verhältnis Kombinationsfeld + + + Formularfeld absenden. Klicken Sie auf diese Schaltfläche, um die Formularfeldwerte als JSON-Datei zu speichern. + + + Suchtext + + + Formen Dropdown-Schaltfläche + + + Formen Dropdown-Popup geöffnet + + + Linienmenüelement 1 von 5 + + + Pfeilmenüelement 2 von 5 + + + Rechteckmenüelement 3 von 5 + + + Kreismenüelement 4 von 5 + + + Polygonmenüelement 5 von 5 + + + Formen Kalibrieren Dropdown-Schaltfläche + + + Formen Kalibrieren Dropdown-Popup geöffnet + + + Entfernung Menüelement 1 von 5 + + + Umfang Menüelement 2 von 5 + + + Fläche Menüelement 3 von 5 + + + Radius Menüelement 4 von 5 + + + Volumen Menüelement 5 von 5 + + + Stempel Dropdown-Schaltfläche, zusammengeklappt + + + Dynamischer Stempel 1 von 4 + + + Genehmigter Stempel 1 von 6 + + + Nicht genehmigter Stempel 3 von 6 + + + Vertraulicher Stempel 2 von 6 + + + Erhaltener Stempel 4 von 6 + + + Überprüfter Stempel 5 von 6 + + + Überarbeiteter Stempel 6 von 6 + + + Unterschreiben Hier Stempel 2 von 4 + + + Akzeptierter Stempel 1 von 5 + + + Initialen Hier Stempel 2 von 5 + + + Abgelehnter Stempel 3 von 5 + + + Unterschreiben Hier Stempel 4 von 5 + + + Zeugenstempel 5 von 5 + + + Standardgeschäftsstempel 3 von 4 + + + Genehmigter Stempel 1 von 12 + + + Abgeschlossener Stempel 2 von 12 + + + Vertraulicher Stempel 3 von 12 + + + Entwurf Stempel 4 von 12 + + + Endgültiger Stempel 5 von 12 + + + Für Kommentar Stempel 6 von 12 + + + Für öffentliche Veröffentlichung Stempel 7 von 12 + + + Nur zur Information Stempel 8 von 12 + + + Nicht genehmigter Stempel 9 von 12 + + + Nicht zur öffentlichen Veröffentlichung Stempel 10 von 12 + + + Vorläufige Ergebnisse Stempel 11 von 12 + + + Ungültiger Stempel 12 von 12 + + + Benutzerdefinierter Stempel 4 von 4 + + + Signatur einfügen + + + Freihand zeichnen + + + Schriftfamilie Kombi-Bearbeitung + + + Schriftgröße Kombi-Bearbeitung + + + Schriftfarbe Kombi-Bearbeitung + + + Textausrichtung Kombi-Bearbeitung + + + Popup für Textausrichtungswerkzeug geöffnet + + + Links ausrichten Menüpunkt 1 von 4 + + + Rechts ausrichten Menüpunkt 2 von 4 + + + Mittig ausrichten Menüpunkt 3 von 4 + + + Blocksatz Menüpunkt 4 von 4 + + + Textattribute Kombi-Bearbeitung + + + Popup für Textattribute Werkzeug geöffnet + + + Fett-Icon Menüpunkt 1 von 4 + + + Kursiv-Icon Menüpunkt 2 von 4 + + + Durchgestrichen-Icon Menüpunkt 3 von 4 + + + Unterstrichen-Icon Menüpunkt 4 von 4 + + + Füllfarbe Kombi-Bearbeitung + + + Stiftfarbe Kombi-Bearbeitung + + + Dicke Schieberegler + + + Transparenz Schieberegler + + + Annotation Werkzeugleiste schließen + + + Falsches Passwort. Bitte versuche es erneut. + + + Nächste Seite anzeigen + + + Vorherige Seite anzeigen + + + Ok + + + Datei öffnen + + + Aktuelle Seitenzahl + + + Letzte Seite anzeigen + + + Zoomen + + + Hineinzoomen + + + Rauszoomen + + + Seitenminiaturen + + + Lesezeichen + + + Druckdatei + + + Passwort erforderlich + + + Kopieren + + + Textauswahlwerkzeug + + + Pan-Modus + + + Text finden + + + Im Dokument finden + + + Groß-und Kleinschreibung berücksichtigen + + + Anwenden + + + Zur Seite gehen + + + Der Viewer hat die Suche im Dokument abgeschlossen. Es wurden keine Übereinstimmungen gefunden. + + + Der Viewer hat die Suche im Dokument abgeschlossen. Es wurden keine Übereinstimmungen mehr gefunden. + + + Keine Übereinstimmungen gefunden + + + Keine Übereinstimmungen mehr gefunden + + + Rückgängig machen + + + Wiederholen + + + Anmerkungen hinzufügen oder bearbeiten + + + Text hervorheben + + + Text unterstreichen + + + Durchgestrichener Text + + + Welliges Text + + + Anmerkung löschen + + + Opazität + + + Farbe ändern + + + Deckkraft ändern + + + Markieren + + + Unterstreichen + + + Durchgestrichen + + + Wellig + + + Etwas ist schief gelaufen. Bitte versuchen Sie es erneut oder aktualisieren Sie die Seite. + + + Es wurde ein clientseitiger Fehler gefunden. Überprüfen Sie die benutzerdefinierten Header in der AjaxRequestSettings-Eigenschaft und die Webanaktionsmethoden in der ServerActionSettings-Eigenschaft. + + + Der Zugriff auf das Dokument ist aufgrund der CORS-Richtlinie eingeschränkt. Bitte überprüfen Sie das Dokument. + + + Öffnen + + + Erste Seite + + + Vorherige Seite + + + Nächste Seite + + + Letzte Seite + + + Hineinzoomen + + + Rauszoomen + + + Auswahl + + + Schwenken + + + Drucken + + + Suche + + + Anmerkung bearbeiten + + + Formularfelder hinzufügen oder bearbeiten + + + Formularfelder bearbeiten + + + Textfeld + + + Passwort + + + Kontrollkästchen + + + Optionsfeld + + + Runterfallen + + + Listenfeld + + + Schaltfläche + + + Formularfeld löschen + + + Unterschrift + + + Initial + + + Speichern + + + Allgemein + + + Erscheinungsbild + + + Optionen + + + Name + + + Tooltip + + + Wert + + + Feldsichtbarkeit + + + Nur lesen + + + Markiert + + + Ausgewählt + + + Erforderlich + + + Mehrzeilig + + + Format + + + Maximale Länge + + + Ausfüllen + + + Rand + + + Dicke + + + Artikelname + + + Artikelwert + + + Artikel-Liste + + + Nach oben + + + Nach unten + + + Randdicke + + + Schriftstil + + + Ausrichtung + + + Randfarbe + + + Sichtbar + + + Sichtbar, aber nicht druckbar + + + Versteckt, aber druckbar + + + Versteckt + + + Helvetica + + + Courier + + + Symbol + + + Times New Roman + + + Dicke der Linie + + + Linieneigenschaften + + + Pfeil starten + + + Pfeil beenden + + + Linienstil + + + Füllfarbe + + + Linienfarbe + + + Keiner + + + Öffne den Pfeil + + + Geschlossener Pfeil + + + Runder Pfeil + + + Quadratischer Pfeil + + + Diamantpfeil + + + Schnitt + + + Einfügen + + + Löschen + + + Eigenschaften + + + Stempel hinzufügen + + + Formen hinzufügen + + + Strichfarbe ändern + + + Randstärke ändern + + + Zeile hinzufügen + + + Pfeil hinzufügen + + + Rechteck hinzufügen + + + Kreis hinzufügen + + + Polygon hinzufügen + + + Füge Kommentare hinzu + + + Bemerkungen + + + Noch keine Kommentare + + + Akzeptiert + + + Abgeschlossen + + + Abgesagt + + + Abgelehnt + + + Leader Länge + + + Skalierungsverhältnis + + + Kalibrieren + + + Abstand kalibrieren + + + Perimeter kalibrieren + + + Bereich kalibrieren + + + Radius kalibrieren + + + Lautstärke kalibrieren + + + Tiefe + + + Geschlossen + + + Runden + + + Quadrat + + + Diamant + + + Bearbeiten + + + Kommentar + + + Kommentarbereich + + + Status einstellen + + + Post + + + Seite + + + Einen Kommentar hinzufügen + + + Antwort hinzufügen + + + Anmerkungen importieren + + + Anmerkungen exportieren + + + Hinzufügen + + + klar + + + Fett gedruckt + + + Kursiv + + + Durchgestrichen + + + Unterstreicht + + + Hochgestellt + + + Index + + + Linksbündig + + + Rechts ausrichten + + + Center + + + Rechtfertigen + + + Schriftfarbe + + + Textausrichtung + + + Schriftstil + + + Unterschrift zeichnen + + + Erstellen + + + Schriftfamilie + + + Schriftgröße + + + Freier Text + + + Ungültiger JSON-Dateityp oder Dateiname; Bitte wählen Sie eine gültige JSON-Datei aus + + + Die importierte JSON-Datei wurde nicht am gewünschten Speicherort gefunden + + + Die Aktion zum Exportieren von Anmerkungen ist fehlgeschlagen. Bitte stellen Sie sicher, dass Anmerkungen ordnungsgemäß hinzugefügt werden + + + ZEICHNEN + + + ART + + + HOCHLADEN + + + DURCHSUCHE + + + Unterschrift speichern + + + Initiale speichern + + + Gib deinen Namen ein + + + Dynamisch + + + Standardgeschäft + + + Benutzerdefinierter Stempel + + + Überarbeitet + + + Bewertet + + + Empfangen + + + Zugelassen + + + Vertraulich + + + Nicht bestätigt + + + Zeugin + + + Erste hier + + + Hier unterschreiben + + + Luftzug + + + Finale + + + Zur öffentlichen Veröffentlichung + + + Nicht zur öffentlichen Veröffentlichung + + + Für Kommentar + + + Leere + + + Vorläufige Ergebnisse + + + Nur Informationen + + + Formular senden + + + von + + + Dieser PDF-Viewer erfordert eine serverseitige Verarbeitung, um die PDF-Dateien über den Webdienst zu rendern. Sie müssen die ServiceURL konfigurieren, um mit PDF Viewer fortzufahren + + + Nah dran + + + Signatur hinzufügen + + + Initiale hinzufügen + + + Tinte zeichnen + + + Tabelle + + + Reihe + + + Zelle + + + In Ordnung + + + Abbrechen + + + Grösse + + + Bevorzugte Breite + + + Punkte + + + Prozent + + + Messen Sie in + + + Ausrichtung + + + Links + + + Zentriert + + + Rechts + + + Rechtfertigen + + + Gliederungsebene + + + Hauptteil + + + Level 1 + + + Level 2 + + + Stufe 3 + + + Level 4 + + + Level 5 + + + Stufe 6 + + + Stufe 7 + + + Stufe 8 + + + Stufe 9 + + + Einzug von links + + + Rahmen und Schattierung + + + Optionen + + + Geben Sie die Höhe an + + + Mindestens + + + Genau + + + Reihenhöhe ist + + + Zeilenumbruch über Seiten zulassen + + + Wiederholen Sie dies als Kopfzeile oben auf jeder Seite + + + Vertikale Ausrichtung + + + oben + + + Unterseite + + + Standard-Zellenränder + + + Standardzellenabstand + + + Lassen Sie den Abstand zwischen den Zellen zu + + + Zellränder + + + Gleich wie der ganze Tisch + + + Grenzen + + + Keiner + + + Stil + + + Breite + + + Höhe + + + Brief + + + Tabloid + + + Legal + + + Erklärung + + + Executive + + + A3 + + + A4 + + + A5 + + + B4 + + + B5 + + + Benutzerdefiniertes Format + + + Unterschiedlich ungerade und gerade + + + Andere erste Seite + + + Vom Rand + + + Header + + + Fusszeile + + + Ränder + + + Papier + + + Layout + + + Orientierung + + + Landschaft + + + Porträt + + + Seitenzahlen anzeigen + + + Seitenzahlen nach rechts ausrichten. + + + Nichts + + + Tab Leader + + + Ebenen anzeigen + + + Verwenden Sie Hyperlinks anstelle von Seitenzahlen + + + Erstellen Sie das Inhaltsverzeichnis von + + + Stile + + + Verfügbare Stile + + + TOC-Ebene + + + Überschrift + + + Überschrift 1 + + + Überschrift 2 + + + Überschrift 3 + + + Überschrift 4 + + + Überschrift 5 + + + Überschrift 6 + + + Überschrift 7 + + + Überschrift 8 + + + Überschrift 9 + + + List Paragraph + + + Normal + + + Gliederungsebenen + + + Tabelleneingabefelder + + + Ändern + + + Farbe + + + Rahmen + + + Box + + + Alle + + + Benutzerdefiniert + + + Vorschau + + + Schattierung + + + Füllen + + + Gelten + + + Tabelleneigenschaften + + + Zellenoptionen + + + Tabellenoptionen + + + Tabelle einfügen + + + Anzahl der Spalten + + + Zeilenanzahl + + + Anzuzeigender Text + + + Adresse + + + Hyperlink einfügen + + + Hyperlink bearbeiten + + + Einfügen + + + Allgemeines + + + Vertiefung + + + Vor dem Text + + + Besondere + + + Erste Linie + + + Hängend + + + Nach dem Text + + + Durch + + + Vor + + + Zeilenabstand + + + Nach + + + Beim + + + Mehrere + + + Abstand + + + Neue Mehrebenenliste definieren + + + Listenebene + + + Wählen Sie die zu ändernde Ebene + + + Niveau + + + Zahlenformat + + + Zahlenstil für diese Ebene + + + Geben Sie die Formatierung für die Nummer ein + + + Beginne bei + + + Liste danach neu starten + + + Position + + + Text einrücken um + + + Ausgerichtet um + + + Folgen Sie der Nummer mit + + + Tabulatorzeichen + + + Platz + + + Arabisch + + + UpRoman + + + LowRoman + + + UpLetter + + + LowLetter + + + Nummer + + + Führende Null + + + Kugel + + + Ordinal + + + Ordinaler Text + + + Für den Osten + + + Kein Neustart + + + Schriftart + + + Schriftstil + + + Unterstreichen Sie Stil + + + Schriftfarbe + + + Auswirkungen + + + Durchgestrichen + + + Hochgestellt + + + Index + + + Doppelt durchgestrichen + + + Normal + + + Fett gedruckt + + + Kursiv + + + Ausschneiden + + + Kopieren + + + Einfügen + + + Hyperlink + + + Öffnen Sie den Hyperlink + + + Hyperlink kopieren + + + Hyperlink entfernen + + + Absatz + + + Verknüpft (Absatz und Zeichen) + + + Charakter + + + Zellen verbinden + + + Oben einfügen + + + Unten einfügen + + + Links einfügen + + + Rechts einfügen + + + Löschen + + + Tabelle löschen + + + Zeile löschen + + + Spalte löschen + + + Dateiname + + + Formattyp + + + Speichern + + + Navigation + + + Ergebnisse + + + Ersetzen + + + Alles ersetzen + + + Wir haben alle ersetzt + + + Finden + + + Überschriften + + + Keine Treffer + + + Alles erledigt + + + Ergebnis + + + von + + + Instanzen + + + mit + + + Klicken Sie hier, um dem Link zu folgen + + + Nummerierung fortsetzen + + + Name des Lesezeichens + + + Schliessen + + + Neustart um + + + Eigenschaften + + + Name + + + Artart + + + Stil basiert auf + + + Stil für folgenden Absatz + + + Formatierung + + + Nummerierung und Aufzählungszeichen + + + Nummerierung + + + Feld aktualisieren + + + Feld bearbeiten + + + Lesezeichen + + + Seiteneinrichtung + + + Keine Lesezeichen gefunden + + + Format + + + Neuen Stil erstellen + + + Stil ändern + + + Neu + + + Aufzählungszeichen + + + Verwenden Sie Lesezeichen + + + Inhaltsverzeichnis + + + AutoFit + + + AutoFit to Contents + + + AutoFit to Window + + + Feste Spaltenbreite + + + Zurücksetzen + + + Gross- / Kleinschreibung + + + Ganze Wörter + + + Hinzufügen + + + Gehe zu + + + Suchen nach + + + Ersetzen mit + + + Inhaltsverzeichnis 1 + + + Inhaltsverzeichnis 2 + + + Inhaltsverzeichnis 3 + + + Inhaltsverzeichnis 4 + + + Inhaltsverzeichnis 5 + + + Inhaltsverzeichnis 6 + + + Inhaltsverzeichnis 7 + + + Inhaltsverzeichnis 8 + + + Inhaltsverzeichnis 9 + + + Rechts nach links + + + Links nach rechts + + + Richtung + + + Tischrichtung + + + Von rechts einrücken + + + Fügen Sie keinen Abstand zwischen den Absätzen der gleichen Stile ein + + + Das Passwort stimmt nicht überein + + + Bearbeitung einschränken + + + Formatierungsbeschränkungen + + + Formatierung zulassen + + + Bearbeitungsbeschränkungen + + + Schreibgeschützt + + + Ausnahmen (optional) + + + Wählen Sie Teile des Dokuments aus und wählen Sie Benutzer aus, die diese frei bearbeiten dürfen. + + + Jeder + + + Weitere Benutzer + + + Benutzer hinzufügen + + + Ja, Schutz erzwingen + + + Starten Sie die Durchsetzung des Schutzes + + + Benutzer eingeben + + + Benutzer + + + Neues Passwort eingeben + + + Geben Sie das neue Passwort zur Bestätigung erneut ein + + + Ihre Berechtigungen + + + Dieses Dokument ist vor unbeabsichtigter Bearbeitung geschützt. + + + Sie können Text nur mit bestimmten Stilen formatieren. + + + Stoppen Sie den Schutz + + + Passwort + + + Rechtschreibeditor + + + Rechtschreibung + + + Rechtschreibprüfung + + + Fehler unterstreichen + + + Ignorieren + + + Alles ignorieren + + + Zum Wörterbuch hinzufügen + + + Veränderung + + + Ändere Alles + + + Vorschläge + + + Das Passwort ist inkorrekt + + + Fehler beim Herstellen der Verbindung mit dem Webserver + + + Markieren Sie die Regionen, die ich bearbeiten kann + + + Alle Regionen anzeigen, die ich bearbeiten kann + + + Nächste Region suchen, die ich bearbeiten kann + + + Quellformatierung beibehalten + + + Zielformatierung anpassen + + + Nur Text + + + Bemerkungen + + + Geben Sie Ihren Kommentar ein + + + Post + + + Antworten + + + Neuer Kommentar + + + Bearbeiten + + + Entschlossenheit + + + Wieder öffnen + + + Keine Kommentare in diesem Dokument + + + Mehr + + + Geben Sie hier Ihren Kommentar ein + + + Nächster Kommentar + + + Vorheriger Kommentar + + + Nicht veröffentlichte Kommentare + + + Hinzugefügt Kommentare nicht gepostet. Wenn Sie fortfahren, wird dieser Kommentar verworfen. + + + Keine Überschrift gefunden! + + + Dieses Dokument hat keine Überschriften. Bitte fügen Sie Überschriften hinzu und versuchen Sie es erneut. + + + Mehr Optionen + + + Klicken Sie hier, um diesen Kommentar anzuzeigen + + + Dropdown-Formularfeld + + + Dropdown-Elemente + + + Elemente in der Dropdown-Liste + + + HINZUFÜGEN + + + ENTFERNEN + + + Feldeinstellungen + + + Tooltip + + + Dropdown aktiviert + + + Kontrollkästchen Formularfeld + + + Kontrollkästchengröße + + + Auto + + + Standardwert + + + Nicht geprüft + + + Überprüft + + + Kontrollkästchen aktiviert + + + Textformularfeld + + + Art + + + Standardtext + + + Maximale Länge + + + Textformat + + + Ausfüllen aktiviert + + + Standardnummer + + + Standarddatum + + + Datumsformat + + + Diese Aktion wird nicht als Änderung markiert. Wollen Sie fortfahren? + + + Kann nicht verfolgt werden + + + Akzeptieren + + + Ablehnen + + + Vorherige Änderungen + + + Nächste Änderungen + + + Eingefügt + + + Gelöscht + + + Änderungen + + + Akzeptiere alle + + + Alles ablehnen + + + Keine Änderungen + + + Änderungen akzeptieren + + + Änderungen ablehnen + + + Benutzer + + + Aussicht + + + Dokumentschutz aufheben + + + Formulare dürfen nur in dieser Region ausgefüllt werden. + + + Witwen-/Waisenkontrolle + + + Einzüge und Abstände + + + Zeilen- und Seitenumbrüche + + + Halte die Linien zusammen + + + Einmal ignorieren + + + Weiter so + + + QuickInfo-Text + + + Quellformatierung beibehalten + + + Zielformatierung anpassen + + + Sie können nur Kommentare in diesen Bereich einfügen. + + + Die Anzahl der Zeilen muss zwischen 1 und 32767 liegen + + + Die Anzahl der Spalten muss zwischen 1 und 63 liegen + + + Information + + + Punkt + + + Strich kleine Lücke + + + Strich Punkt + + + Dünne dicke kleine Lücke + + + Dicke dünne kleine Lücke + + + Dicke dünne mittlere Lücke + + + Dicke dünne große Lücke + + + Einfach gewellt + + + Doppelt wellig + + + Einsatz + + + Strich große Lücke + + + Strich Punkt Punkt + + + Verdreifachen + + + Dünn dick dünn kleine Lücke + + + Dünn dick dünn mittel Lücke + + + Dünn dick dünn große Lücke + + + Strichpunkt gestrichen + + + Gravieren3D + + + Dick + + + Anfang + + + Emboss3D + + + Dünne dicke große Lücke + + + Dünne dicke mittlere Lücke + + + Normaler Text + + + Datum + + + Großbuchstaben + + + Kleinbuchstaben + + + Fall ändern + + + Großbuchstaben + + + Kleinbuchstaben + + + Satzfall + + + Schreiben Sie jedes Wort groß + + + Gehäuse umschalten + + + FirstCapital + + + Titelkoffer + + + Bewegen von + + + Ziehen nach + + + px + + + Sie können in dieser Region bearbeiten. + + +Abschnittsumbruch (nächste Seite) + + +Seitenumbruch + + +Spaltenumbruch + + +Einer + + +Zwei + + +Drei + + +Voreinstellungen + + +Säulen + + +Teilen Sie Ihren Text in zwei oder mehr Spalten auf + + +Linie zwischen Spalte + + +Breite und Abstand + + +Gleiche Spaltenbreite + + +Spalte + + +Abschnittsumbruch (fortlaufend) + + + Aufgrund der Sicherheitsrichtlinie des Browsers ist das Einfügen aus der Zwischenablage des Systems eingeschränkt. Alternativ verwenden Sie die Tastenkombination + + + Nicht mehr anzeigen + + +Säulen + + +Zeigen Sie die ausgeblendeten Zeichen wie Leerzeichen, Tabulatoren, Absatzmarken und Umbrüche an. (Strg + *) + + + Regulär + + + Fett Kursiv + + + Neu + + + Öffnen + + + Rückgängig machen + + + Redo + + + Bild + + + Tabelle + + + Verknüpfung + + + Lesezeichen + + + Inhaltsverzeichnis + + + Überschrift - - - - 1 + + + Überschrift - - - - 2 + + + Überschrift - - - - 3 + + + Header + + + Fusszeile + + + Seiteneinrichtung + + + Seitennummer + + + Brechen + + + Finden + + + Überschriften + + + Lokale Zwischenablage + + + Bearbeitung einschränken + + + Hochladen vom Computer + + + Über die URL + + + Kopfzeile Fußzeile + + + Optionen + + + Ebenen + + + Unterschiedliche erste Seite + + + Unterschiedliche Kopf- und Fußzeilen für gerade und ungerade Seiten. + + + Verschiedene gerade und ungerade Seiten + + + Link zur vorherigen + + + Unterschiedliche Kopf- und Fußzeile für die erste Seite. + + + Position + + + Kopfzeile von oben + + + Fußzeile von unten + + + Abstand vom oberen Rand der Seite zum oberen Rand der Kopfzeile. + + + Abstand vom unteren Rand der Seite zum unteren Rand der Fußzeile. + + + Seitenverhältnis + + + W + + + H + + + Breite + + + Höhe + + + Text + + + Alternativer Text + + + Absatz + + + Füllen + + + Füllfarbe + + + Rahmenstil + + + Außengrenzen + + + Alle Grenzen + + + Innerhalb der Grenzen + + + Linke Grenze + + + Innerhalb der vertikalen Grenze + + + Rechter Rand + + + Oberer Rand + + + Innerhalb der horizontalen Grenze + + + Untere Grenze + + + Randfarbe + + + Rahmenbreite + + + Zelle + + + Zellen verbinden + + + Einfügen / Löschen + + + Spalten links einfügen + + + Spalten rechts einfügen + + + Zeilen darüber einfügen + + + Zeilen darunter einfügen + + + Zeilen löschen + + + Spalten löschen + + + Cell Margin + + + oben + + + Unterseite + + + Links + + + Rechts + + + Text ausrichten + + + Oben ausrichten + + + Boden ausrichten + + + Im Zentrum anordnen + + + Anzahl der Überschriften- oder Gliederungsebenen, die im Inhaltsverzeichnis angezeigt werden sollen. + + + Seitenzahlen anzeigen + + + Seitenzahlen im Inhaltsverzeichnis anzeigen. + + + Seitenzahlen nach rechts ausrichten. + + + Richten Sie die Seitenzahlen im Inhaltsverzeichnis nach rechts aus. + + + Verwenden Sie Hyperlinks + + + Verwenden Sie Hyperlinks anstelle von Seitenzahlen. + + + Schriftart + + + Schriftgröße + + + Schriftfarbe + + + Hervorhebungsfarbe für Text + + + Löschen Sie alle Formatierungen + + + Fett (Strg + B) + + + Kursiv (Strg + I) + + + Unterstreichen (Strg + U) + + + Durchgestrichen + + + Hochgestellt (Strg + Umschalt ++) + + + Tiefgestellt (Strg + =) + + + Links ausrichten (Strg + L) + + + Zentrum (Strg + E) + + + Rechts ausrichten (Strg + R) + + + Ausrichten (Strg + J) + + + Einzug verkleinern + + + Einzug vergrößern + + + Zeilenabstand + + + Aufzählungszeichen + + + Nummerierung + + + Stile + + + Stile verwalten + + + Seite + + + von + + + Eine Seite einpassen + + + Rechtschreibprüfung + + + Fehler unterstreichen + + + Seitenbreite anpassen + + + Aktualisieren + + + Abbrechen + + + Einfügen + + + Keine Grenze + + + Erstellen Sie ein neues Dokument. + + + Öffnen Sie ein Dokument. + + + Machen Sie die letzte Operation rückgängig (Strg + Z). + + + Wiederholen Sie die letzte Operation (Strg + Y). + + + Fügen Sie ein Inline-Bild aus einer Datei ein. + + + Fügen Sie eine Tabelle in das Dokument ein. + + + Erstellen Sie in Ihrem Dokument einen Link für den schnellen Zugriff auf Webseiten und Dateien (Strg + K). + + + Fügen Sie ein Lesezeichen an einer bestimmten Stelle in dieses Dokument ein. + + + Verschaffen Sie sich einen Überblick über Ihr Dokument, indem Sie ein Inhaltsverzeichnis hinzufügen. + + + Fügen Sie den Header hinzu oder bearbeiten Sie ihn. + + + Fügen Sie die Fußzeile hinzu oder bearbeiten Sie sie. + + + Öffnen Sie das Dialogfeld zur Seiteneinrichtung. + + + Seitenzahlen hinzufügen. + + + Suchen Sie nach Text im Dokument (Strg + F). + + + Die aktuelle Seitenzahl im Dokument. Klicken oder tippen Sie, um zu einer bestimmten Seite zu navigieren. + + + Schreibgeschützt + + + Schutzmaßnahmen + + + Fehler beim Herstellen der Verbindung mit dem Webserver + + + Single + + + Doppelt + + + Neuer Kommentar + + + Bemerkungen + + + Drucklayout + + + Web-Layout + + + Zwischen der internen Zwischenablage und der Systemzwischenablage wechseln. + Der Zugriff auf die Systemzwischenablage über ein Skript wird aufgrund der Sicherheitsrichtlinien des Browsers verweigert. Stattdessen + 1. Sie können die interne Zwischenablage zum Ausschneiden, Kopieren und Einfügen innerhalb der Komponente aktivieren. + 2. Sie können die Tastenkombinationen (Strg + X, Strg + C und Strg + V) zum Ausschneiden verwenden , kopieren und einfügen mit System-Zwischenablage. + + + Textform + + + Kontrollkästchen + + + Dropdown-Liste + + + Felder aktualisieren + + + Querverweisfelder aktualisieren. + + + Verfolgen Sie die im Dokument vorgenommenen Änderungen. + + + Änderungen verfolgen + + + Zoomstufe + + + Fußnote einfügen (Alt + Strg + F). + + + Endnote einfügen (Alt + Strg + D). + + + Kommentare einfügen + + + Formularfelder + + + Information + + + Alle Kappen + + + Einfügen + + + Einfügen + + + Formulare ausfüllen + + + Verfolgte Änderungen + + + Wenn Sie diese Änderung im Dokumentschutz vornehmen, ignoriert Word alle Ausnahmen in diesem Dokument. + + + Sie können in dieser Region Änderungen vornehmen, aber alle Änderungen werden nachverfolgt + + + Das ausgewählte Dateiformat wird nicht unterstützt. Bitte wählen Sie ein gültiges Format. + + + Beim Öffnen dieses Dokuments ist ein Problem aufgetreten + + + Möchten Sie die ignorierten Ausnahmen entfernen? + + + Jawohl + + + Nein + + + Eigenschaftenbereich anzeigen + + + Eigenschaftenbereich ausblenden + + + Kontinuierlich + + + Spalte + + + Buchseite + + + Nächste Seite + + + Seitenumbrüche + + + Abschnittsumbrüche + + + Die Adresse dieser Website ist ungültig. Überprüfen Sie die Adresse und versuchen Sie es erneut. + + + Wählen Sie die andere Aufgabe + + + Wählen Sie die Anschlussposition aus + + + Links + + + Recht + + + Exportieren Sie die Anmerkung in eine XFDF-Datei + + + Importieren Sie Anmerkungen aus der XFDF-Datei + + + Information + + + Gestapelte Linie + + + 100% gestapelte Linie + + + Keiner + + + Wird geladen... + + + OK + + + Abbrechen + + + Zwischensummen nicht anzeigen + + + Nur Zwischensummenspalten anzeigen + + + Nur Zwischensummenzeilen anzeigen + + + Zwischensummen anzeigen + + + Zwischensummenposition + + + Single + + + Auto + + + Zeilenpager + + + Zeilen pro Seite + + + Spaltenpager + + + Spalten pro Seite + + + Gehen Sie zur ersten Seite + + + Gehen Sie zur letzten Seite + + + Gehen Sie zur nächsten Seite + + + Zurück zur letzten Seite + + + Zeit auswählen + + + Zeitfilter + + + Das gleiche wie vorher + + + Abschnitt + + + Ungerade Seitenkopfzeile + + + Ungerade Seitenfußzeile + + + Gerader Seitenkopf + + + Gleichmäßige Fußzeile + + + Kopfzeile der ersten Seite + + + Fußzeile der ersten Seite + + + und + + + Ok + + + Titel + + + Beschreibung + + + Alt-Text + + + Ok + + + Nicht unterstützte Datei + + + Die abgelegte Datei wird nicht unterstützt. + + + Legen Sie Ihr Bild hier ab oder + + +Tab-Stopp-Position + + +Standard-Tabstopps + + +Tabstopps müssen gelöscht werden + + +Tabs + + +Satz + + +Klar + + +Alles löschen + + +Dezimal + + +Bar + + +Ausrichtung + + +Führer + + +Alle + + +Unterer Rand + + +Erster Zeileneinzug + + +Hängender Einzug + + +Linker Einzug + + +Linker Rand + + +Tabellenspalte verschieben + + +Rechter Einzug + + +Rechter Rand + + +Oberer Rand + + +Linke Registerkarte + + +Mittlere Registerkarte + + +Rechte Registerkarte + + +Dezimaltabelle + + +Bar-Registerkarte + + + Anmerkung + + + Verwerfen + + + Begradigen + + + Kombiniert + + + Beginnt nicht mit + + + Endet nicht mit + + + Gruppe sperren + + + Gruppe entsperren + + + Sperrregel + + + Regel freischalten + + + Klongruppe + + + Klonregel + + + Speichern als + + + Schließen + + + Herunterladen + + + Bildgröße: + + + Benutzerdefiniert + + + Gut + + + Großartig + + + Höchste + + + Qualität + + + Die Bildqualitätsoption ist nur für das JPEG-Format verfügbar + + + Bildname + + + Format + + + Z-Reihenfolge + + + In den Vordergrund bewegen + + + Voran bringen + + + In den Hintergrund bewegen + + + nach hinten bewegen + + + Umrissfarbe + + + Redigieren + + + Pixelieren + + + Pixelgröße + + + Aktuelle Farben + + + und + + + Hören Sie auf zu antworten + + + {0}, {1} und {2} andere tippen gerade + + + {0} tippt + + + {0} und {1} tippen + + + {0}, {1} und {2} andere tippen gerade + + + Inline-Code + + + Die Spracherkennung wurde abgebrochen. + + + Kein Mikrofon erkannt. Stellen Sie sicher, dass Ihr Mikrofon angeschlossen ist. + + + Ein unbekannter Fehler ist aufgetreten. + + + Netzwerkfehler aufgetreten. Überprüfen Sie Ihre Internetverbindung. + + + Keine Sprache erkannt. Bitte sprechen Sie in das Mikrofon. + + + Mikrofonzugriff verweigert. Erlauben Sie Mikrofonberechtigungen. + + + Der Spracherkennungsdienst ist in diesem Kontext nicht erlaubt. + + + Der Browser unterstützt die SpeechRecognition API nicht. + + + Drücken Sie, um zu sprechen und Ihre Worte zu transkribieren + + + Drücken Sie, um das Sprechen zu beenden und die Transkription zu stoppen + + + Zuhören starten + + + Zuhören beenden + + + Solide + + + Gestrichelt + + + Gepunktet + + \ No newline at end of file diff --git a/KB-Samples/LargeDiagram/Resources/SfResources.en-US.resx b/KB-Samples/LargeDiagram/Resources/SfResources.en-US.resx new file mode 100644 index 00000000..2c970002 --- /dev/null +++ b/KB-Samples/LargeDiagram/Resources/SfResources.en-US.resx @@ -0,0 +1,6794 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + text/microsoft-resx + + + 2.0 + + + System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + Request failed + + + No records found + + + Today + + + Request failed + + + No records found + + + Choose a date + + + Today + + + Apply + + + Cancel + + + Custom Range + + + Days + + + End Date + + + Choose a date range + + + Selected Days + + + Start Date + + + Choose a date and time + + + Today + + + Day + + + Month + + + Year + + + Hour + + + Minute + + + Second + + + DayOfWeek + + + Request failed + + + No records found + + + No records found + + + Request failed + + + Select All + + + Unselect All + + + No records found + + + Request failed + + + No records found + + + +${count} more.. + + + Select All + + + ${count} selected + + + Unselect All + + + Decrement value + + + Increment value + + + Choose a time + + + Abort + + + Browse... + + + Cancel + + + Clear + + + Delete file + + + Or drop files here + + + File upload canceled + + + Uploading + + + File type is not allowed + + + File name is not allowed + + + File size is too large + + + File size is too small + + + Pause + + + File upload paused + + + Ready to upload + + + Remove + + + Unable to remove file + + + File removed successfully + + + Resume + + + Retry + + + Upload + + + File failed to upload + + + File uploaded successfully + + + Count + + + Daily + + + Day(s) + + + End + + + every + + + First + + + Fourth + + + Last + + + Month + + + Month Expander + + + Monthly + + + Month Position + + + Month(s) + + + Month Week + + + Never + + + None + + + On + + + Day + + + Repeat + + + Repeat every + + + Repeat Interval + + + Second + + + day(s) + + + month(s) + + + on + + + Repeats + + + time(s) + + + until + + + week(s) + + + year(s) + + + Third + + + Until + + + Weekly + + + Week(s) + + + Year Expander + + + Yearly + + + Year(s) + + + Add title + + + Agenda + + + Alert + + + All day + + + Begin From + + + Events cannot be scheduled within the blocked time range. + + + Cancel + + + Cancel + + + Close + + + The duration of the event must be shorter than how frequently it occurs. Shorten the duration, or change the recurrence pattern in the recurrence event editor. + + + Create + + + Day + + + Delete + + + Delete + + + Are you sure you want to delete this event? + + + Delete Event + + + Are you sure you want to delete the selected events? + + + Delete Multiple Events + + + Entire Series + + + Delete Event + + + Description + + + Edit + + + How would you like to change the appointment in the series? + + + Edit Event + + + Following Events + + + Edit Recurrence + + + Entire Series + + + Edit Event + + + There are no events scheduled on this day. + + + End + + + End Time + + + Ends At + + + End Time zone + + + The entered date value is invalid. + + + Location + + + Look for more + + + Month + + + Month Agenda + + + more + + + More Details + + + More Events + + + New Event + + + Next + + + No + + + No events + + + No Records + + + (No Title) + + + Occurrence + + + Ok + + + Previous + + + Recurrence + + + Recurring Event + + + Repeat + + + Repeats + + + Two occurrences of the same event cannot occur on the same day. + + + Save + + + Save + + + Items selected + + + Search Time zone + + + Series + + + Do you want to cancel the changes made to specific instances of this series and match it to the whole series again? + + + Showing events until + + + Start + + + Start Time + + + The selected end date occurs before the start date. + + + Start Time zone + + + Subject + + + Timeline Day + + + Timeline Month + + + Timeline Week + + + Timeline Work Week + + + Timeline Year + + + Time zone + + + Title + + + Today + + + Week + + + Week Agenda + + + Work Week + + + Work Week Agenda + + + The recurrence pattern is not valid. + + + Yes + + + Year + + + Decrease + + + Increase + + + Optional + + + Close + + + Previous Slide + + + Next Slide + + + Slide + + + of + + + Stop auto animation + + + Start auto animation + + + Slide show + + + Table + + + Row + + + Cell + + + OK + + + Cancel + + + Size + + + Preferred width + + + Points + + + Percent + + + Measure in + + + Alignment + + + Left + + + Center + + + Right + + + Justify + + + Outline Level + + + Body Text + + + Level 1 + + + Level 2 + + + Level 3 + + + Level 4 + + + Level 5 + + + Level 6 + + + Level 7 + + + Level 8 + + + Level 9 + + + Indent from left + + + Borders and Shading + + + Options + + + Specify height + + + At least + + + Exactly + + + Row height is + + + Allow row to break across pages + + + Repeat as header row at the top of each page + + + Vertical alignment + + + Top + + + Bottom + + + Default cell margins + + + Default cell spacing + + + Allow spacing between cells + + + Cell margins + + + Same as the whole table + + + Borders + + + None + + + Style + + + Width + + + Height + + + Letter + + + Tabloid + + + Legal + + + Statement + + + Executive + + + A3 + + + A4 + + + A5 + + + B4 + + + B5 + + + Custom size + + + Different odd and even + + + Different first page + + + From edge + + + Header + + + Footer + + + Margins + + + Paper + + + Layout + + + Orientation + + + Landscape + + + Portrait + + + Show page numbers + + + Right align page numbers. + + + Nothing + + + Tab leader + + + Show levels + + + Use hyperlinks instead of page numbers + + + Build table of contents from + + + Styles + + + Available styles + + + TOC level + + + Heading + + + Heading 1 + + + Heading 2 + + + Heading 3 + + + Heading 4 + + + Heading 5 + + + Heading 6 + + + Heading 7 + + + Heading 8 + + + Heading 9 + + + List Paragraph + + + Normal + + + Outline levels + + + Table entry fields + + + Modify + + + Color + + + Setting + + + Box + + + All + + + Custom + + + Preview + + + Shading + + + Fill + + + Apply to + + + Table Properties + + + Cell Options + + + Table Options + + + Insert Table + + + Number of columns + + + Number of rows + + + Text to display + + + Address + + + Insert Hyperlink + + + Edit Hyperlink + + + Insert + + + General + + + Indentation + + + Before text + + + Special + + + First line + + + Hanging + + + After text + + + By + + + Before + + + Line spacing + + + After + + + At + + + Multiple + + + Spacing + + + Define new Multilevel list + + + List level + + + Choose level to modify + + + Level + + + Number format + + + Number style for this level + + + Enter formatting for number + + + Start at + + + Restart list after + + + Position + + + Text indent at + + + Aligned at + + + Follow number with + + + Tab character + + + Space + + + Arabic + + + UpRoman + + + LowRoman + + + UpLetter + + + LowLetter + + + Number + + + Leading zero + + + Bullet + + + Ordinal + + + Ordinal Text + + + For East + + + No Restart + + + Font + + + Font style + + + Underline style + + + Font color + + + Effects + + + Strikethrough + + + Superscript + + + Subscript + + + Double strikethrough + + + Regular + + + Bold + + + Italic + + + Cut + + + Copy + + + Paste + + + Hyperlink + + + Open Hyperlink + + + Copy Hyperlink + + + Remove Hyperlink + + + Paragraph + + + Linked(Paragraph and Character) + + + Character + + + Merge Cells + + + Insert Above + + + Insert Below + + + Insert Left + + + Insert Right + + + Delete + + + Delete Table + + + Delete Row + + + Delete Column + + + File Name + + + Format Type + + + Save + + + Navigation + + + Results + + + Replace + + + Replace All + + + We replaced all + + + Find + + + Headings + + + No matches + + + All Done + + + Result + + + of + + + instances + + + with + + + Click to follow link + + + Continue Numbering + + + Bookmark name + + + Close + + + Restart At + + + Properties + + + Name + + + Style type + + + Style based on + + + Style for following paragraph + + + Formatting + + + Numbering and Bullets + + + Numbering + + + Update Field + + + Edit Field + + + Bookmark + + + Page Setup + + + No bookmarks found + + + Format + + + Create New Style + + + Modify Style + + + New + + + Bullets + + + Use bookmarks + + + Table of Contents + + + AutoFit + + + AutoFit to Contents + + + AutoFit to Window + + + Fixed Column Width + + + Reset + + + Match case + + + Whole words + + + Add + + + Go To + + + Search for + + + Replace with + + + TOC 1 + + + TOC 2 + + + TOC 3 + + + TOC 4 + + + TOC 5 + + + TOC 6 + + + TOC 7 + + + TOC 8 + + + TOC 9 + + + Right-to-left + + + Left-to-right + + + Direction + + + Table direction + + + Indent from right + + + Don't add space between the paragraphs of the same styles + + + The password don't match + + + Restrict Editing + + + Formatting restrictions + + + Allow formatting + + + Editing restrictions + + + Read only + + + Exceptions (optional) + + + Select parts of the document and choose users who are allowed to freely edit them. + + + Everyone + + + More users + + + Add Users + + + Yes, Start Enforcing Protection + + + Start Enforcing Protection + + + Enter User + + + Users + + + Enter new password + + + Reenter new password to confirm + + + Your permissions + + + This document is protected from unintentional editing. + + + You may format text only with certain styles. + + + Stop Protection + + + Password + + + Spelling Editor + + + Spelling + + + Spell Check + + + Underline errors + + + Ignore + + + Ignore All + + + Add to Dictionary + + + Change + + + Change All + + + Suggestions + + + The password is incorrect + + + Error in establishing connection with web server + + + Highlight the regions I can edit + + + Show All Regions I Can Edit + + + Find Next Region I Can Edit + + + Keep source formatting + + + Match destination formatting + + + Text only + + + Comments + + + Type your comment + + + Post + + + Reply + + + New Comment + + + Edit + + + Resolve + + + Reopen + + + No comments in this document + + + more + + + Type your comment here + + + Next Comment + + + Previous Comment + + + Un-posted comments + + + Added comments not posted. If you continue, that comment will be discarded. + + + No Heading Found! + + + This document has no headings. Please add headings and try again. + + + More Options + + + Click to see this comment + + + Drop Down Form Field + + + Drop-down items + + + Items in drop-down list + + + ADD + + + REMOVE + + + Field settings + + + Tooltip + + + Drop-down enabled + + + Check Box Form Field + + + Check box size + + + Auto + + + Default value + + + Not checked + + + Checked + + + Check box enabled + + + Text Form Field + + + Type + + + Default text + + + Maximum length + + + Text format + + + Fill-in enabled + + + Default number + + + Default date + + + Date format + + + This action wont be marked as change. Do you want to continue? + + + Cannot be tracked + + + Accept + + + Reject + + + Previous Changes + + + Next Changes + + + Inserted + + + Deleted + + + Changes + + + Accept all + + + Reject all + + + No Changes + + + Accept Changes + + + Reject Changes + + + User + + + View + + + Unprotect Document + + + You may only fill in forms in this region. + + + Indents and Spacing + + + Line and Page Breaks + + + Pagination + + + Widow/Orphan control + + + Keep with next + + + Keep lines together + + + ScreenTip text + + + Keep source formatting + + + Match destination formatting + + + You may only insert comments into this region. + + + Number of rows must be between 1 and 32767 + + + Number of columns must be between 1 and 63 + + + Information + + + Dot + + + DashSmallGap + + + DashDot + + + ThinThickSmallGap + + + ThickThinSmallGap + + + ThickThinMediumGap + + + ThickThinLargeGap + + + SingleWavy + + + DoubleWavy + + + Inset + + + DashLargeGap + + + DashDotDot + + + Triple + + + ThinThickThinSmallGap + + + ThinThickThinMediumGap + + + ThinThickThinLargeGap + + + DashDotStroked + + + Engrave3D + + + Thick + + + Outset + + + Emboss3D + + + ThinThickLargeGap + + + ThinThickMediumGap + + + Regular text + + + Date + + + Uppercase + + + Lowercase + + + FirstCapital + + + Titlecase + + + Move From + + + Move To + + + px + + + You may edit in this region. + + +Section Break (Next Page) + + +Page Break + + +Column Break + + +One + + +Two + + +Three + + +Presets + + +Columns + + +Split your text into two or more columns + + +Line between column + + +Width and Spacing + + +Equal column width + + +Column + + +Section Break (Continuous) + + + Due to browser’s security policy, paste from system clipboard is restricted. Alternatively use the keyboard shortcut + + + Don't show again + + +Columns + + +Show the hidden characters like spaces, tab, paragraph marks, and breaks.(Ctrl + *) + + + Regular + + + BoldItaic + + + New + + + Open + + + Undo + + + Redo + + + Image + + + Table + + + Link + + + Bookmark + + + Table of Contents + + + HEADING - - - - 1 + + + HEADING - - - - 2 + + + HEADING - - - - 3 + + + Header + + + Footer + + + Page Setup + + + Page Number + + + Break + + + Find + + + Headings + + + Local Clipboard + + + Restrict Editing + + + Upload from computer + + + By URL + + + Header and Footer + + + Options + + + Levels + + + Different First Page + + + Different header and footer for odd and even pages. + + + Different Odd and Even Pages + + + Link to Previous + + + Different header and footer for first page. + + + Position + + + Header from Top + + + Footer from Bottom + + + Distance from top of the page to top of the header. + + + Distance from bottom of the page to bottom of the footer. + + + Aspect ratio + + + W + + + H + + + Width + + + Height + + + Text + + + AlternativeText + + + Paragraph + + + Fill + + + Fill color + + + Border Style + + + Outside borders + + + All borders + + + Inside borders + + + Left border + + + Inside vertical border + + + Right border + + + Top border + + + Inside horizontal border + + + Bottom border + + + Border color + + + Border width + + + Cell + + + Merge cells + + + Insert / Delete + + + Insert columns to the left + + + Insert columns to the right + + + Insert rows above + + + Insert rows below + + + Delete rows + + + Delete columns + + + Cell Margin + + + Top + + + Bottom + + + Left + + + Right + + + Align Text + + + Align top + + + Align bottom + + + Align center + + + Number of heading or outline levels to be shown in table of contents. + + + Show page numbers + + + Show page numbers in table of contents. + + + Right align page numbers. + + + Right align page numbers in table of contents. + + + Use hyperlinks + + + Use hyperlinks instead of page numbers. + + + Font + + + Font Size + + + Font color + + + Text highlight color + + + Clear all formatting + + + Bold (Ctrl+B) + + + Italic (Ctrl+I) + + + Underline (Ctrl+U) + + + Strikethrough + + + Superscript (Ctrl+Shift++) + + + Subscript (Ctrl+=) + + + Align left (Ctrl+L) + + + Center (Ctrl+E) + + + Align right (Ctrl+R) + + + Justify (Ctrl+J) + + + Decrease indent + + + Increase indent + + + Line spacing + + + Bullets + + + Numbering + + + Styles + + + Manage Styles + + + Page + + + of + + + Fit one page + + + Spell Check + + + Underline errors + + + Fit page width + + + Update + + + Cancel + + + Insert + + + No Border + + + Create a new document. + + + Open a document. + + + Undo the last operation (Ctrl+Z). + + + Redo the last operation (Ctrl+Y). + + + Insert inline picture from a file. + + + Insert a table into the document. + + + Create a link in your document for quick access to web pages and files (Ctrl+K). + + + Insert a bookmark in a specific place in this document. + + + Provide an overview of your document by adding a table of contents. + + + Add or edit the header. + + + Add or edit the footer. + + + Open the page setup dialog. + + + Add page numbers. + + + Find text in the document (Ctrl+F). + + + The current page number in the document. Click or tap to navigate specific page. + + + Read only + + + Protections + + + Error in establishing connection with web server + + + Single + + + Double + + + New comment + + + Comments + + + Print layout + + + Web layout + + + Toggle between the internal clipboard and system clipboard. Access to system clipboard through script is denied due to browsers security policy. Instead, +1. You can enable internal clipboard to cut, copy and paste within the component. +2. You can use the keyboard shortcuts (Ctrl+X, Ctrl+C and Ctrl+V) to cut, copy and paste with system clipboard. + + + Text Form + + + Check Box + + + Drop-Down + + + Update Fields + + + Update cross reference fields. + + + Keep track of the changes made in the document. + + + Track Changes + + + Zoom Level + + + Insert Footnote (Alt+Ctrl+F). + + + Insert Endnote (Alt+Ctrl+D). + + + Insert Comments + + + Form Fields + + + Information + + + All caps + + + Insert Footnote + + + Insert Endnote + + + Change case + + + UPPERCASE + + + Lowercase + + + Sentence case + + + Capitalize Each Word + + + Toggle case + + + Add Condition + + + Add to Column + + + Add to Filter + + + Add to Row + + + Add to Value + + + After + + + After Or Equal To + + + Aggregate + + + Alert + + + All + + + All Fields + + + All Values + + + and + + + Apply + + + Area + + + Ascending + + + Avg + + + Bar + + + Base field + + + Base item + + + Before + + + Before Or Equal To + + + Begins With + + + Between + + + (Blank) + + + by + + + Calculated Field + + + A calculation field already exists in this name. Do you want to replace it? + + + Drag and drop fields to formula + + + Drag field to formula + + + Calculated field cannot be place in any other region except value axis. + + + Example: ('Sum(Order_Count)' + 'Sum(In_Stock)') * 250 + + + A field already exists in this name. Please enter a different name. + + + Add fields and edit formula here. + + + Enter the field name + + + Example: [Measures].[Order Quantity] + ([Measures].[Order Quantity] * 0.10) + + + Drag and drop fields to create an expression. And, if you want to edit the existing the calculated fields! You can achieve it by simply selecting the field under 'Calculated Members'. + + + Cancel + + + Chart + + + Clear + + + Clear + + + Close + + + Collapse + + + Column + + + Drop column here + + + Columns + + + Conditional Formatting + + + Conditional formatting + + + Contains + + + Copy + + + Count + + + Create Calculated Field + + + CSV + + + Currency + + + Currency Symbol + + + Custom + + + Custom Format + + + Enter custom format string + + + Date + + + Show the items for which the date + + + Days + + + Decimal Places + + + Delete + + + Delete a current report + + + Descending + + + Details + + + Difference From + + + Dimension + + + Distinct Count + + + Does Not Begin With + + + Does Not Contain + + + Does Not End With + + + Does Not Equal + + + Do not show grand totals + + + Drag + + + Drill Through + + + Cannot show the raw items of calculated fields. + + + Edit + + + No records to display + + + No reports found!! + + + Ending at + + + Ends With + + + Enter date + + + Enter a report name + + + Enter value + + + Equals + + + Error + + + e.g: + + + Excel + + + Expand + + + Export + + + Expression + + + False + + + Field Caption + + + Field caption + + + The field you are moving cannot be placed in that area of the report + + + Field Name + + + Field name : + + + Field Type + + + Filter + + + Drop filter here + + + Filtered + + + Filters + + + Format + + + Format String + + + Format Type + + + Formula + + + Grand Total + + + Grand totals + + + Greater Than + + + Greater Than Or Equal To + + + Group + + + Enter the caption to display in header + + + Enter the caption for group field + + + Grouping + + + Group name + + + Hours + + + Index + + + Interval by + + + Invalid Format. + + + Invalid formula. + + + Cannot group that selection. + + + JPEG + + + Label + + + Show the items for which the label + + + Left + + + Less Than + + + Less Than Or Equal To + + + Line + + + Load + + + Loading... + + + Manage Records + + + Max + + + MDX Query + + + Measure + + + Member + + + more items. Search to refine further. + + + Min + + + Minutes + + + Months + + + More... + + + Multiple items + + + Create a new report + + + Do you want to save changes to this report? + + + No format found!!! + + + Enter a value + + + No matches + + + Not Between + + + Not Equals + + + No value + + + null + + + Number + + + Number Formatting + + + of + + + OK + + + Out of Range + + + Parent Hierarchy + + + PDF + + + Percent + + + Percentage + + + % of Column Total + + + % of Difference From + + + % of Grand Total + + + % of Parent Column Total + + + % of Parent Row Total + + + % of Parent Total + + + % of Row Total + + + PNG + + + Polar + + + Population StDev + + + Population Var + + + Product + + + Qtr + + + Quarters + + + Quarter Year + + + Remove + + + Are you sure want to delete this report? + + + Rename a current report + + + Report list + + + Report Name : + + + Right + + + Row + + + Drop row here + + + Rows + + + Running Totals + + + Sample Report + + + Sample StDev + + + Sample Var + + + Save as current report + + + Save a report + + + Scatter + + + Search + + + Seconds + + + Selected items + + + Select groups + + + Show grand totals columns only + + + Show field list + + + Show grand totals + + + Show grand totals rows only + + + Show table + + + Sort + + + Standard + + + Starting at + + + Sub totals + + + Sum + + + Summaries values by + + + Summarize values by + + + SVG + + + Symbol Position + + + Total + + + True + + + undefined + + + Ungroup + + + Please enter vaild report name!!! + + + Value + + + Drop value here + + + Value field settings + + + Values + + + Show the items for which + + + Warning + + + Years + + + Multiple Axis + + + Chart Type Settings + + + Chart Type + + + Yes + + + No + + + Number Formatting... + + + Conditional Formatting... + + + Are you sure you want to delete this calculated field? + + + Stacked Area + + + Stacked Column + + + Stacked Bar + + + Step Line + + + Step Area + + + Spline Area + + + Spline + + + 100% Stacked Column + + + 100% Stacked Bar + + + 100% Stacked Area + + + Bubble + + + Pareto + + + Radar + + + Edit calculated field + + + Clear edited field info + + + Example: C, P, 0000 %, ###0.##0#, etc. + + + Show Legend + + + Enter the field caption + + + Sort data order + + + Sort ascending order + + + Sort descending order + + + A report named + + + already exists. Do you want to replace it? + + + Pivot Field List + + + Field List + + + Add field here + + + Choose field + + + Drag fields between axes below: + + + Add + + + Defer Layout Update + + + Pie + + + Pyramid + + + Doughnut + + + Funnel + + + Stacked + + + Multiple Axis Mode + + + Median + + + Bottom + + + Grand totals position + + + Top + + + Apply to Grand Total + + + Image Not Found + + + Pan + + + Reset + + + Zoom + + + Zoom in + + + Zoom out + + + Pan + + + Reset + + + Zoom + + + Zoom in + + + Zoom out + + + Reset Zoom + + + Apply + + + Cancel + + + Switch Mode + + + Toggle format + + + ColorPicker + + + SplitButton + + + Request failed + + + Move All From + + + Move All To + + + Move Down + + + Move From + + + Move To + + + Move Up + + + No records found + + + Select All + + + Unselect All + + + Search List Item + + + Add Condition + + + Add Group + + + AND + + + Between + + + Contains + + + Delete group + + + Remove this condition + + + EDIT + + + Empty + + + Ends With + + + Equal + + + Greater Than + + + Greater Than Or Equal + + + In + + + Less Than + + + Less Than Or Equal + + + Not Between + + + Not Empty + + + Not Equal + + + Not In + + + OR + + + Other Fields + + + REMOVE + + + Select a field + + + Select operator + + + Enter Value + + + Select Value + + + Choose a Range + + + Select a date + + + Starts With + + + Summary View + + + This field is required + + + Is Null + + + Is Not Null + + + Does Not Start With + + + Does Not End With + + + Does Not Contain + + + Lock Group + + + Unlock Group + + + Lock Rule + + + Unlock Rule + + + Clone Group + + + Clone Rule + + + X + + + Y + + + W + + + H + + + Bring To Front + + + Copy + + + Cut + + + Group + + + Grouping + + + Move Forward + + + Order + + + Paste + + + Redo + + + Select All + + + Send Backward + + + Send To Back + + + Undo + + + Ungroup + + + Close + + + Close + + + Close + + + Save + + + Cancel + + + Loading... + + + Click to edit + + + Click to edit + + + Double click to edit + + + Small + + + Small + + + Brightness + + + Browse + + + Zoom Out + + + Zoom In + + + Crop and Transform + + + Crop Selection + + + Annotation + + + Transform + + + Finetune + + + Filter + + + Brightness + + + Contrast + + + Hue + + + Saturation + + + Exposure + + + Opacity + + + Blur + + + Font Family + + + Font Size + + + Font Color + + + Stroke Color + + + Stroke Width + + + Fill Color + + + Apply + + + Discard + + + Reset + + + Save + + + Undo + + + Redo + + + Default + + + Chrome + + + Cold + + + Warm + + + Grayscale + + + Sepia + + + Invert + + + Custom + + + Square + + + Circle + + + Pen + + + Line + + + Rectangle + + + Ellipse + + + Path + + + Add Text + + + Rotate Left + + + Rotate Right + + + Horizontal Flip + + + Vertical Flip + + + Bold + + + Italic + + + X-Small + + + Small + + + Medium + + + Large + + + X-Large + + + Duplicate + + + Remove + + + Edit Text + + + Start + + + End + + + None + + + Arrow Solid + + + None + + + Bar + + + Arrow + + + Arrow Solid + + + Circle + + + Circle Solid + + + Square + + + Square Solid + + + Confirm Save Changes + + + Do you want to save the changes you made to the image? + + + Yes + + + No + + + Unsupported file + + + The dropped file is unsupported. + + + OK + + + Drag and drop your image here or + + + Drop your image here or + + + Browse here... + + + Supports: + + + Resize + + + Width + + + Height + + + Maintain non aspect ratio + + + Maintain aspect ratio + + + Horizontal Flip + + + Vertical Flip + + + Transparency + + + Frame + + + None + + + Mat + + + Bevel + + + Line + + + Inset + + + Hook + + + Color + + + Size + + + Offset + + + Radius + + + Amount + + + W + + + H + + + Border + + + Solid + + + Dashed + + + Dotted + + + Gradient Color + + + Straighten + + + Annotation + + + Save As + + + Close + + + Download + + + Image Size: + + + Custom + + + Good + + + Great + + + Highest + + + Quality + + + The image quality option is only available for JPEG format + + + Image name + + + Format + + + Z-Order + + + Bring To Front + + + Bring Forward + + + Send To Back + + + Send Backward + + + items + + + item + + + No cards to display + + + Min + + + Max + + + Cards Selected + + + Add New Card + + + Edit Card Details + + + Delete Card + + + Are you sure you want to delete this card? + + + Save + + + Delete + + + Cancel + + + Yes + + + No + + + Rich Text Editor + + + Markdown Editor + + + Number Format List + + + None + + + Number + + + Upper Alpha + + + Lower Alpha + + + Upper Roman + + + Lower Roman + + + Lower Greek + + + Bullet Format List + + + None + + + Circle + + + Square + + + Disc + + + Paragraph + + + Code + + + Quotation + + + Heading 1 + + + Heading 2 + + + Heading 3 + + + Heading 4 + + + Heading 5 + + + Heading 6 + + + Heading 7 + + + Heading 8 + + + Heading 9 + + + Segoe UI + + + Arial + + + Georgia + + + Impact + + + Tahoma + + + Times New Roman + + + Verdana + + + Alignments + + + Align Left + + + Align Center + + + Align Right + + + Align Justify + + + Font Name + + + Font Size + + + Font Color + + + Background Color + + + Bold + + + Italic + + + Underline + + + Strikethrough + + + Clear Format + + + Clear All + + + Cut + + + Copy + + + Paste + + + Bulleted List + + + Numbered List + + + Increase Indent + + + Decrease Indent + + + Undo + + + Redo + + + Superscript + + + Subscript + + + Insert Hyperlink + + + Open Link + + + Edit Link + + + Remove Link + + + Insert Image + + + Replace + + + Align + + + Image Caption + + + Remove + + + Insert Link + + + Display + + + Alternative text + + + Change Size + + + Maximize + + + Maximize + + + Minimize + + + Lower Case + + + Upper Case + + + Print + + + Formats + + + Code View + + + Preview + + + ViewSide + + + Insert Code + + + Display text + + + Title + + + Web address + + + Enter a title + + + https://example.com + + + Open link in new window + + + Insert Link + + + Insert + + + Cancel + + + Update + + + Insert Image + + + You can also provide a link from the web + + + Please provide a URL for your image + + + Drop image here or browse to upload + + + Click here to upload + + + Alternate Text + + + Alternative Text + + + Browse + + + Click here to upload + + + Drop a video file or browse to upload + + + Paste embedded code here + + + Web URL + + + Embedded code + + + Width + + + Height + + + Click here to upload + + + Drop a audio file or browse to upload + + + https://example.com/image.png + + + Caption + + + Image Size + + + Height + + + Width + + + Enter text + + + Insert table + + + Insert Table + + + Width + + + Cell Padding + + + Cell Spacing + + + Number of columns + + + Number of rows + + + Row + + + Column + + + Table Cell Horizontal Align + + + Vertical Align + + + Create Table + + + Remove Table + + + Header Row + + + Delete Table + + + Table Cell Background + + + Table Edit Properties + + + Styles + + + Insert Column Left + + + Insert Column Right + + + Delete Column + + + Insert Row Before + + + Insert Row After + + + Delete Row + + + Edit Table + + + Heading + + + Col + + + Insert Link + + + Edit Image + + + Align Left + + + Align Center + + + Align Right + + + Align Justify + + + Inline + + + Break + + + Insert row before + + + Insert row after + + + Delete row + + + Insert column left + + + Insert column right + + + Delete column + + + Align Top + + + Align Middle + + + Align Bottom + + + Dashed Borders + + + Alternate Rows + + + Paste Options + + + Choose the formatting action + + + Plain Text + + + Clean Format + + + Keep Format + + + OK + + + Cancel + + + Replace + + + Remove + + + Display + + + Replace + + + Align + + + Remove + + + Display + + + Dimension + + + Open in new window + + + Open in new window + + + Unsupported file format + + + PDF Viewer + + + Cancel + + + Download File + + + Download + + + This document is password protected. Please enter a password. + + + File Corrupted + + + The file is corrupted and cannot be opened. + + + Fit Height + + + Fit Page + + + Fit Width + + + Automatic + + + Show First Page + + + Go To First Page + + + Go To Previous Page + + + Go To Next Page + + + Go to Last Page + + + Go To Page Number Textbox + + + Page Zoom Out + + + Page Zoom In + + + Zoom Ratio Combo + + + Submit Form Button. Click this button to save the form field values as a JSON file. + + + Search Text + + + Shapes DropDown Button + + + Shapes DropDown Popup Opened + + + Line Menu Item 1 of 5 + + + Arrow Menu Item 2 of 5 + + + Rectangle Menu Item 3 of 5 + + + Circle Menu Item 4 of 5 + + + Polygon Menu Item 5 of 5 + + + Calibrate Shapes Dropdown Button + + + Calibrate Shapes DropDown Popup Opened + + + Distance Menu Item 1 of 5 + + + Perimeter Menu Item 2 of 5 + + + Area Menu Item 3 of 5 + + + Radius Menu Item 4 of 5 + + + Volume Menu Item 5 of 5 + + + Stamp Dropdown Button, collapsed + + + Dynamic Stamp 1 of 4 + + + Approved Stamp 1 of 6 + + + Not Approved Stamp 3 of 6 + + + Confidential Stamp 2 of 6 + + + Received Stamp 4 of 6 + + + Reviewed Stamp 5 of 6 + + + Revised Stamp 6 of 6 + + + Sign Here Stamp 2 of 4 + + + Accepted Stamp 1 of 5 + + + Initial Here Stamp 2 of 5 + + + Rejected Stamp 3 of 5 + + + SignHere Stamp 4 of 5 + + + Witness Stamp 5 of 5 + + + Standard Business Stamp 3 of 4 + + + Approved Stamp 1 of 12 + + + Completed Stamp 2 of 12 + + + Confidential Stamp 3 of 12 + + + Draft Stamp 4 of 12 + + + Final Stamp 5 of 12 + + + For Comment Stamp 6 of 12 + + + For Public Release Stamp 7 of 12 + + + Information Only Stamp 8 of 12 + + + Not Approved Stamp 9 of 12 + + + Not For Public Release Stamp 10 of 12 + + + Preliminary Results Stamp 11 of 12 + + + Void Stamp 12 of 12 + + + Custom Stamp 4 of 4 + + + Insert Signature + + + Draw Freehand + + + Font Family Combo Edit + + + Font Size Combo Edit + + + Font Color Combo Edit + + + Text Align Combo Edit + + + Text Align Toolbar Popup Opened + + + Align Left Menu Item 1 of 4 + + + Align Right Menu Item 2 of 4 + + + Align Center Menu Item 3 of 4 + + + Justify Menu Item 4 of 4 + + + Text Properties Combo Edit + + + Text Property Toolbar Popup Opened + + + Bold Icon Menu Item 1 of 4 + + + Italic Icon Menu Item 2 of 4 + + + StrikeOut Icon Menu Item 3 of 4 + + + Underline Icon Menu Item 4 of 4 + + + Fill Color Combo Edit + + + Stroke Color Combo Edit + + + Thickness Slider + + + Opacity Slider + + + Close Annotation Toolbar Button + + + Incorrect Password. Please try again. + + + Show Next Page + + + Show Previous Page + + + OK + + + Open File + + + Current Page Number + + + Show Last Page + + + Zoom + + + Zoom In + + + Zoom Out + + + Page Thumbnails + + + Bookmarks + + + Print File + + + Password Required + + + Copy + + + Text Selection Tool + + + Pan Mode + + + Find Text + + + Find in document + + + Match case + + + Apply + + + Go To Page + + + Viewer has finished searching the document. No matches were found. + + + Viewer has finished searching the document. No more matches were found. + + + No matches found + + + No more matches found + + + Undo + + + Redo + + + Add or Edit Annotations + + + Highlight Text + + + Underline Text + + + Strikethrough Text + + + Squiggly Text + + + Delete Annotation + + + Opacity + + + Change Color + + + Change Opacity + + + Highlight + + + Underline + + + Strikethrough + + + Squiggly + + + Something went wrong. Please try again or refresh the page. + + + Client-side error is found. Please check the custom headers provided in the AjaxRequestSettings property and web action methods in the ServerActionSettings property. + + + Access to the document is restricted due to cors policy. please check the document. + + + Open + + + First Page + + + Previous Page + + + Next Page + + + Last Page + + + Zoom In + + + Zoom Out + + + Selection + + + Pan + + + Print + + + Search + + + Edit Annotation + + + Add or Edit Form Fields + + + Edit Form Fields + + + Textbox + + + Password + + + Checkbox + + + Radio Button + + + Drop Down + + + List Box + + + Button + + + Delete Form Field + + + Signature + + + Initial + + + Save + + + General + + + Appearance + + + Options + + + Name + + + Tooltip + + + Value + + + Field Visibility + + + Read Only + + + Checked + + + Selected + + + Required + + + Multiline + + + Format + + + Max Length + + + Fill + + + Border + + + Thickness + + + Item Name + + + Item Value + + + Item List + + + Up + + + Down + + + Border Thickness + + + Font Style + + + Alignment + + + Border Color + + + Visible + + + Visible Not Printable + + + Hidden Printable + + + Hidden + + + Helvetica + + + Courier + + + Symbol + + + Times New Roman + + + Line Thickness + + + Line Properties + + + Start Arrow + + + End Arrow + + + Line Style + + + Fill Color + + + Line Color + + + None + + + Open Arrow + + + Closed Arrow + + + Round Arrow + + + Square Arrow + + + Diamond Arrow + + + Cut + + + Paste + + + Delete + + + Properties + + + Add Stamp + + + Add Shapes + + + Change Stroke Color + + + Change Border Thickness + + + Add Line + + + Add Arrow + + + Add Rectangle + + + Add Circle + + + Add Polygon + + + Add Comments + + + Comments + + + No Comments Yet + + + Accepted + + + Completed + + + Cancelled + + + Rejected + + + Leader Length + + + Scale Ratio + + + Calibrate + + + Calibrate Distance + + + Calibrate Perimeter + + + Calibrate Area + + + Calibrate Radius + + + Calibrate Volume + + + Depth + + + Closed + + + Round + + + Square + + + Diamond + + + Edit + + + Comment + + + Comment Panel + + + Set Status + + + Post + + + Page + + + Add a Comment + + + Add a Reply + + + Import Annotations + + + Export Annotations + + + Add + + + Clear + + + Bold + + + Italic + + + Strikethroughs + + + Underlines + + + Superscript + + + Subscript + + + Align Left + + + Align Right + + + Center + + + Justify + + + Font Color + + + Text Align + + + Font Style + + + Draw Signature + + + Create + + + Font Family + + + Font Size + + + Free Text + + + Invalid JSON file type or file name; please select a valid JSON file + + + Imported JSON file is not found in the desired location + + + Export annotations action has failed; please ensure annotations are added properly + + + DRAW + + + TYPE + + + UPLOAD + + + BROWSE + + + Save Signature + + + Save Initial + + + Enter your name + + + Dynamic + + + Standard Business + + + Custom Stamp + + + Revised + + + Reviewed + + + Received + + + Approved + + + Confidential + + + Not Approved + + + Witness + + + Initial Here + + + Sign Here + + + Draft + + + Final + + + For Public Release + + + Not For Public Release + + + For Comment + + + Void + + + Preliminary Results + + + Information Only + + + Submit Form + + + of + + + This PDF Viewer requires Server-side processing to render the PDF files through the web service. You must configure the ServiceURL to proceed with PDF Viewer + + + Close + + + Add Signature + + + Add Initial + + + Draw Ink + + + New folder + + + Upload + + + Delete + + + Rename + + + Download + + + Cut + + + Copy + + + Paste + + + Sort by + + + Refresh + + + item selected + + + items selected + + + View + + + Details + + + Select all + + + Open + + + New folder + + + Upload + + + Delete + + + Rename + + + Download + + + Cut + + + Copy + + + Paste + + + Sort by + + + Refresh + + + Clear selection + + + View + + + Details + + + Select all + + + Name + + + Size + + + Modified + + + Date created + + + Path + + + Modified + + + Created + + + Location + + + Type + + + Permission + + + Ascending + + + Descending + + + None + + + Large icons + + + Details + + + Search + + + OK + + + Cancel + + + Yes + + + No + + + Create + + + Save + + + Folder + + + Enter your folder name + + + Rename + + + Enter your new name + + + Rename Confirmation + + + If you change a file name extension, the file might become unstable. Are you sure you want to change it? + + + Delete File + + + Are you sure you want to delete this file? + + + Delete Folder + + + Are you sure you want to delete this folder? + + + Delete Multiple Items + + + Are you sure you want to delete these {0} items? + + + File/Folder exists + + + {0} already exists. Do you want to rename and paste? + + + Upload Files + + + Error + + + The file or folder name cannot be empty. + + + The file or folder name {0} contains invalid characters. Please use a different name. Valid file or folder names cannot end with a dot or space. + + + A file or folder with the name {0} already exists. + + + Cannot rename {0} to {1}: destination already exists. + + + This folder is empty + + + Drag files here to upload + + + No results found + + + Try with different keywords + + + No results found + + + Try with different filter + + + The destination folder is the subfolder of the source folder. + + + Access Denied + + + You don't have permission to access this folder. + + + File Already Exists + + + A file with this name already exists in this folder. What would you like to do? + + + Keep both + + + Replace + + + Skip + + + Do this for all current items + + + KB + + + {0} is not accessible. you need permission to perform the {1} action. + + + NetworkError: Failed to send on XMLHTTPRequest: Failed to load + + + ServerError: Invalid response from + + + Above + + + Add + + + New Task + + + Baseline End Date + + + Baseline Start Date + + + Below + + + Cancel + + + Child + + + Collapse All + + + Are you sure you want to Delete Record? + + + Are you sure you want to remove dependency link? + + + Indent + + + Outdent + + + Convert + + + CSV Export + + + Custom Columns + + + day + + + days + + + Delete + + + Delete Dependency + + + Delete Task + + + Dependency + + + Duration + + + Edit + + + Task Information + + + No records to display + + + End Date + + + Enter the value + + + Event markers + + + Excel Export + + + Expand All + + + Finish + + + FS + + + FF + + + From + + + General + + + hour + + + hours + + + ID + + + Lag + + + Left task label + + + Milestone + + + minute + + + minutes + + + Name + + + Next Timespan + + + Notes + + + Offset + + + Ok + + + Previous Timespan + + + Progress + + + Resource ID + + + Resources + + + Right task label + + + Save + + + Save + + + Search + + + Start + + + SS + + + SF + + + Start Date + + + task + + + You moved '{0}' to finish after '{1}' finishes and the two tasks are linked. As the result, the links cannot be honored. Select one action below to perform + + + You moved '{0}' away from '{1}' and the two tasks are linked. As the result, the links cannot be honored. Select one action below to perform + + + You moved '{0}' to finish after '{1}'starts and the two tasks are linked. As the result, the links cannot be honored. Select one action below to perform + + + You moved '{0}' to start after '{1}' starts and the two tasks are linked. As the result, the links cannot be honored. Select one action below to perform + + + You moved '{0}' to finish before '{1}' finishes and the two tasks are linked. As the result, the links cannot be honored. Select one action below to perform + + + You moved '{0}' to start before '{1}' finishes and the two tasks are linked. As the result, the links cannot be honored. Select one action below to perform + + + You moved '{0}' away from '{1}' to starts and the two tasks are linked. As the result, the links cannot be honored. Select one action below to perform + + + You moved '{0}' to start before '{1}' starts and the two tasks are linked. As the result, the links cannot be honored. Select one action below to perform + + + Task Information + + + Task Link + + + tasks + + + Timeline cell + + + To + + + To Milestone + + + To Task + + + Type + + + Update + + + Write Notes + + + Zoom In + + + Zoom Out + + + Zoom To Fit + + + AutoFit Column + + + AutoFit All Columns + + + Sort Ascending + + + Sort Descending + + + Task Mode + + + Auto + + + Manual + + + SubTasks Start Date + + + SubTasks End Date + + + Duration + + + Work + + + H + + + D + + + M + + + Min + + + Custom Columns + + + Task Type + + + Critical Path + + + Segments + + + Split Task + + + Merge Task + + + Unassigned Tasks + + + No records to display + + + true + + + false + + + Invalid Filter Data + + + Drag a column header here to group its column + + + Click here to ungroup + + + Grouping is disabled for this column + + + \'s filter bar cell + + + DataSource must not be empty at initial load since columns are generated from dataSource in AutoGenerate Column Grid + + + Add + + + Edit + + + Cancel + + + Update + + + Delete + + + Print + + + PDF Export + + + Excel Export + + + Word Export + + + CSV Export + + + Search + + + Columns + + + Save + + + Back + + + item + + + items + + + No records selected for edit operation + + + No records selected for delete operation + + + Save + + + OK + + + Cancel + + + Details of + + + Add New Record + + + Are you sure you want to save changes? + + + Unsaved changes will be lost. Are you sure you want to continue? + + + Are you sure you want to Delete Record? + + + Are you sure you want to Cancel the changes? + + + Choose Column + + + search columns + + + No Matches Found + + + Filter + + + Clear + + + Null + + + Not Null + + + Empty + + + Not Empty + + + Like + + + Starts With + + + Ends With + + + Contains + + + Does Not Start With + + + Does Not End With + + + Does Not Contain + + + Equal + + + Not Equal + + + Less Than + + + Less Than Or Equal + + + Greater Than + + + Greater Than Or Equal + + + Choose a Date + + + Enter the value + + + Copy + + + Group by this column + + + Ungroup by this column + + + Autofit all columns + + + Autofit this column + + + Export + + + First Page + + + Last Page + + + Previous Page + + + Next Page + + + Sort Ascending + + + Sort Descending + + + Sorted in ascending order + + + Sorted in descending order + + + Edit Record + + + Delete Record + + + Filter + + + Select All + + + Add current selection to filter + + + Blanks + + + True + + + False + + + No Matches Found + + + Clear Filter + + + Number Filters + + + Text Filters + + + Date Filters + + + DateTime Filters + + + Match Case + + + Between + + + Custom Filter + + + Enter the value + + + Choose a date + + + AND + + + OR + + + Show rows where: + + + Row checkbox + + + Filter Icon + + + Column Menu Icon + + + Group Button + + + Ungroup Button + + + Column Header + + + Filter checkbox + + + Header checkbox + + + Sort + + + Ascending + + + Descending + + + None + + + is template cell + + + Press Enter to Sort + + + Press Alt Down to open filter Menu + + + Press Alt Down to open Column Menu + + + Column Menu + + + Press Ctrl space to group + + + is group caption cell + + + column header undefined + + + sort the grouped column + + + Close + + + Filter Operator + + + Filter Value + + + Select row + + + Page + + + Pages + + + of + + + Pager external message + + + pages + + + Pager dropdown + + + Goto Page + + + {0} of {1} pages + + + ({0} items) + + + Go to first page + + + Go to last page + + + Go to next page + + + Go to previous page + + + Go to next pager + + + Go to previous pager + + + Items per page + + + Items + + + All + + + items + + + Filling in forms + + + Tracked changes + + + If you make this change in document protection, Word will ignore all the exceptions in this document. + + + You may edit in this region, but all change will be tracked + + + The file format you have selected isn't supported. Please choose valid format. + + + There was a problem in opening this document + + + Do you want to remove the ignored exceptions? + + + Yes + + + No + + + Show properties pane + + + Hide properties pane + + + Continuous + + + Column + + + Page + + + Next Page + + + Page Breaks + + + Section Breaks + + + The address of this site is not valid. Check the address and try again. + + + OK + + + Choose the another task + + + Select the connector position + + + Left + + + Right + + + Export annotations to XFDF file + + + Import annotations from XFDF file + + + Information + + + Stacked Line + + + 100% Stacked Line + + + None + + + Loading... + + + OK + + + Cancel + + + Do not show subtotals + + + Show subtotals columns only + + + Show subtotals rows only + + + Show subtotals + + + Subtotals position + + + Single + + + Auto + + + Row pager + + + Rows per page + + + Column pager + + + Columns per page + + + Go to first page + + + Go to last page + + + Go to next page + + + Go to previous page + + + Choose a Time + + + Time Filters + + + Same as Previous + + + Section + + + Odd Page Header + + + Odd Page Footer + + + Even Page Header + + + Even Page Footer + + + First Page Header + + + First Page Footer + + + and + + + Title + + + Description + + + Alt Text + + +Tab stop position + + +Default tab stops + + +Tab stops to be cleared + + +Tabs + + +Set + + +Clear + + +Clear All + + +Decimal + + +Bar + + +Alignment + + +Leader + + +All + + +Bottom Margin + + +First Line Indent + + +Hanging Indent + + +Left Indent + + +Left Margin + + +Move Table Column + + +Right Indent + + +Right Margin + + +Top Margin + + +Left Tab + + +Center Tab + + +Right Tab + + +Decimal Tab + + +Bar Tab + + + Combined + + + Outline Color + + + Redact + + + Pixelate + + + Pixel Size + + + Recent Colors + + + and + + + Stop Responding + + + {0}, {1}, and {2} others are typing + + + {0} is typing + + + {0} and {1} are typing + + + {0}, {1}, and {2} other are typing + + + Inline Code + + + Speech recognition was aborted. + + + No microphone detected. Ensure your microphone is connected. + + + An unknown error occurred. + + + Network error occurred. Check your internet connection. + + + No speech detected. Please speak into the microphone. + + + Microphone access denied. Allow microphone permissions. + + + Speech recognition service is not allowed in this context. + + + The browser does not support the SpeechRecognition API. + + + Press to start speaking and transcribe your words + + + Press to stop speaking and end transcription + + + Start listening + + + Stop listening + + + Solid + + + Dashed + + + Dotted + + diff --git a/KB-Samples/LargeDiagram/Resources/SfResources.fr.resx b/KB-Samples/LargeDiagram/Resources/SfResources.fr.resx new file mode 100644 index 00000000..96059978 --- /dev/null +++ b/KB-Samples/LargeDiagram/Resources/SfResources.fr.resx @@ -0,0 +1,6794 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + text/microsoft-resx + + + 2.0 + + + System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + Demande échoué + + + Aucun enregistrement trouvé + + + Aujourd'hui + + + Demande échoué + + + Aucun enregistrement trouvé + + + Choisissez une date + + + Aujourd'hui + + + Appliquer + + + Annuler + + + Plage personnalisée + + + Journées + + + Date de fin + + + Choisissez une plage de dates + + + Jours sélectionnés + + + Date de début + + + Choisissez une date et une heure + + + Aujourd'hui + + + Jour + + + Mois + + + An + + + Heure + + + Minute + + + Seconde + + + Jour de la semaine + + + Demande échoué + + + Aucun enregistrement trouvé + + + Aucun enregistrement trouvé + + + Demande échoué + + + Tout sélectionner + + + Tout déselectionner + + + Aucun enregistrement trouvé + + + Demande échoué + + + Aucun enregistrement trouvé + + + +${count} de plus .. + + + Tout sélectionner + + + ${count} sélectionné + + + Tout déselectionner + + + Décrémenter la valeur + + + Incrémenter la valeur + + + Choisissez une heure + + + Avorter + + + Parcourir... + + + Annuler + + + Effacer + + + Supprimer le fichier + + + Ou déposez des fichiers ici + + + Téléchargement du fichier annulé + + + Téléchargement + + + Le type de fichier n'est pas autorisé + + + Le nom de fichier n'est pas autorisé + + + La taille du fichier est trop grande + + + La taille du fichier est trop petite + + + Pause + + + Téléchargement du fichier interrompu + + + Prêt à télécharger + + + Retirer + + + Impossible de supprimer le fichier + + + Fichier supprimé avec succès + + + Reprendre + + + Retenter + + + Télécharger + + + Échec du téléchargement du fichier + + + Fichier téléchargé avec succès + + + Nouveau dossier + + + Téléverser + + + Supprimer + + + Renommer + + + Télécharger + + + Couper + + + Copie + + + Coller + + + Trier par + + + Rafraîchir + + + élément sélectionné + + + éléments sélectionnés + + + Vue + + + Détails + + + Tout sélectionner + + + Ouvert + + + Nouveau dossier + + + Télécharger + + + Supprimer + + + Renommer + + + Télécharger + + + Couper + + + Copie + + + Coller + + + Trier par + + + Rafraîchir + + + Effacer la sélection + + + Vue + + + Détails + + + Tout sélectionner + + + Nom + + + Taille + + + Modifié + + + Date créée + + + Chemin + + + Modifié + + + Créé + + + Emplacement + + + Type + + + Autorisation + + + Ascendant + + + Descendant + + + Aucun + + + Grandes icônes + + + Détails + + + Chercher + + + D'accord + + + Annuler + + + Oui + + + Non + + + Créer + + + sauvegarder + + + Dossier + + + Entrez le nom de votre dossier + + + Renommer + + + Entrez votre nouveau nom + + + Renommer la confirmation + + + Si vous modifiez une extension de nom de fichier, le fichier peut devenir instable. Voulez-vous vraiment le modifier? + + + Supprimer le fichier + + + Voulez-vous vraiment supprimer ce fichier? + + + Supprimer le dossier + + + Voulez-vous vraiment supprimer ce dossier? + + + Supprimer plusieurs éléments + + + Voulez-vous vraiment supprimer ces {0} éléments? + + + Le fichier / dossier existe + + + {0} existe déjà. Voulez-vous renommer et coller? + + + Télécharger des fichiers + + + Erreur + + + Le nom du fichier ou du dossier ne peut pas être vide. + + + Le nom de fichier ou de dossier {0} contient des caractères non valides. Veuillez utiliser un nom différent. Les noms de fichiers ou de dossiers valides ne peuvent pas se terminer par un point ou un espace. + + + Un fichier ou un dossier portant le nom {0} existe déjà. + + + Impossible de renommer {0} en {1}: la destination existe déjà. + + + Ce dossier est vide + + + Faites glisser les fichiers ici pour les télécharger + + + Aucun résultat trouvé + + + Essayez avec différents mots clés + + + Aucun résultat trouvé + + + Essayez avec un filtre différent + + + Le dossier de destination est le sous-dossier du dossier source. + + + Accès refusé + + + Vous n'êtes pas autorisé à accéder à ce dossier. + + + Le fichier existe déjà + + + Un fichier portant ce nom existe déjà dans ce dossier. Qu'est-ce que tu aimerais faire? + + + Garde les deux + + + Remplacer + + + Sauter + + + Faites ceci pour tous les articles actuels + + + Ko + + + {0} n'est pas accessible. vous avez besoin d'une autorisation pour effectuer l'action {1}. + + + NetworkError: échec d'envoi sur XMLHTTPRequest: échec de chargement + + + ServerError: réponse non valide de + + + La poêle + + + Réinitialiser + + + Réinitialiser le zoom + + + Zoom + + + Agrandir + + + Dézoomer + + + Diminution + + + Augmenter + + + Facultative + + + Image non trouvée + + + Zoom + + + Agrandir + + + Dézoomer + + + Réinitialiser + + + La poêle + + + Aucun enregistrement à afficher + + + Identifiant + + + Nom + + + Date de début + + + Date de fin + + + Durée + + + Le progrès + + + Dépendance + + + Remarques + + + Date de début de référence + + + Date de fin de référence + + + Type + + + Décalage + + + Ressources + + + ID de ressource + + + journée + + + heure + + + minute + + + journées + + + heures + + + minutes + + + Général + + + Colonnes personnalisées + + + Rédiger des notes + + + Nouvelle tâche + + + Informations sur la tâche + + + sauvegarder + + + Ajouter + + + Éditer + + + Mise à jour + + + Supprimer + + + Annuler + + + Chercher + + + tâche + + + Tâches + + + Agrandir + + + Dézoomer + + + Zoom pour s'adapter + + + Exportation Excel + + + Exportation CSV + + + Développer tout + + + Réduire tout + + + Période suivante + + + Période précédente + + + D'accord + + + Voulez-vous vraiment supprimer l'enregistrement? + + + De + + + À + + + Lien de tâche + + + Décalage + + + Début + + + DD + + + DT + + + Terminer + + + TD + + + TT + + + Entrez la valeur + + + Vous avez déplacé «{0}» pour commencer avant la fin de «{1}» et les deux tâches sont liées. Par conséquent, les liens ne peuvent pas être honorés. Sélectionnez une action ci-dessous pour effectuer + + + Vous avez déplacé '{0}' de '{1}' et les deux tâches sont liées. Par conséquent, les liens ne peuvent pas être honorés. Sélectionnez une action ci-dessous pour effectuer + + + Vous avez déplacé '{0}' pour démarrer avant le démarrage de '{1}' et les deux tâches sont liées. Par conséquent, les liens ne peuvent pas être honorés. Sélectionnez une action ci-dessous pour effectuer + + + Vous avez déplacé '{0}' pour démarrer après le démarrage de '{1}' et les deux tâches sont liées. Par conséquent, les liens ne peuvent pas être honorés. Sélectionnez une action ci-dessous pour effectuer + + + Vous avez déplacé '{0}' pour terminer avant la fin de '{1}' et les deux tâches sont liées. Par conséquent, les liens ne peuvent pas être honorés. Sélectionnez une action ci-dessous pour effectuer + + + Vous avez déplacé «{0}» pour terminer une fois «{1}» terminé et les deux tâches sont liées. Par conséquent, les liens ne peuvent pas être honorés. Sélectionnez une action ci-dessous pour effectuer + + + Vous avez déplacé '{0}' de '{1}' vers le début et les deux tâches sont liées. Par conséquent, les liens ne peuvent pas être honorés. Sélectionnez une action ci-dessous pour effectuer + + + Vous avez déplacé '{0}' pour terminer après le démarrage de '{1}' et les deux tâches sont liées. Par conséquent, les liens ne peuvent pas être honorés. Sélectionnez une action ci-dessous pour effectuer + + + Informations sur la tâche + + + Supprimer la tâche + + + Supprimer la dépendance + + + Convertir + + + sauvegarder + + + Au dessus + + + Au dessous de + + + Enfant + + + Étape importante + + + À la tâche + + + Vers Milestone + + + Marqueurs d'événement + + + Étiquette de tâche gauche + + + Étiquette de tâche droite + + + Cellule de chronologie + + + Voulez-vous vraiment supprimer le lien de dépendance? + + + Retrait + + + Outdent + + + Ajustement automatique de la colonne + + + Ajuster automatiquement toutes les colonnes + + + Trier par ordre croissant + + + Trier par ordre décroissant + + + Mode tâche + + + Auto + + + Manuel + + + Date de début des sous-tâches + + + Date de fin des sous-tâches + + + Durée + + + Travailler + + + H + + + + + + M + + + Min + + + Colonnes personnalisées + + + Type de tâche + + + Chemin critique + + + Segments + + + Tâche fractionnée + + + Fusionner la tâche + + + Tâches non attribuées + + + Appliquer + + + Annuler + + + Mode de commutation + + + Basculer le format + + + Pipette à couleurs + + + Bouton partagé + + + Demande échoué + + + Tout déplacer de + + + Déplacer tout vers + + + Descendre + + + Déplacer de + + + Déménager à + + + Déplacer vers le haut + + + Aucun enregistrement trouvé + + + Tout sélectionner + + + Tout déselectionner + + + Élément de la liste de recherche + + + Exemple: C, P, 0000%, ### 0. ## 0 #, etc. + + + Trier l'ordre des données + + + Trier par ordre décroissant + + + Liste des champs de pivot + + + Liste de champ + + + Ajouter un champ ici + + + Choisissez un champ + + + Faites glisser les champs entre les axes ci-dessous: + + + Ajouter + + + Différer la mise à jour de la mise en page + + + Afficher la légende + + + Entrez la légende du champ + + + Trier par ordre croissant + + + Un rapport nommé + + + existe déjà. Voulez-vous le remplacer? + + + Ajouter une condition + + + Ajouter à la colonne + + + Ajouter au filtre + + + Ajouter à la ligne + + + Ajouter à la valeur + + + Après + + + Après ou égal à + + + Agrégat + + + Alerte + + + Tout + + + Tous les champs + + + Toutes les valeurs + + + et + + + Appliquer + + + Zone + + + Ascendant + + + Moy + + + Bar + + + Champ de base + + + Élément de base + + + Avant + + + Avant ou égal à + + + Commence par + + + Entre + + + (Vide) + + + par + + + Champ calculé + + + Un champ de calcul existe déjà sous ce nom. Voulez-vous le remplacer? + + + Glissez et déposez les champs dans la formule + + + Faites glisser le champ vers la formule + + + Le champ calculé ne peut être placé dans aucune autre région à l'exception de l'axe des valeurs. + + + Exemple: ('Sum (Order_Count)' + 'Sum (In_Stock)') * 250 + + + Un champ existe déjà sous ce nom. Veuillez saisir un nom différent. + + + Ajoutez des champs et modifiez la formule ici. + + + Entrez le nom du champ + + + Exemple: [Mesures]. [Quantité de commande] + ([Mesures]. [Quantité de commande] * 0,10) + + + Faites glisser et déposez des champs pour créer une expression. Et, si vous souhaitez modifier les champs calculés existants ! Vous pouvez y parvenir en sélectionnant simplement le champ sous « Membres calculés ». + + + Annuler + + + Graphique + + + Effacer + + + Effacer + + + Fermer + + + Effondrer + + + Colonne + + + Déposer la colonne ici + + + Colonnes + + + Mise en forme conditionnelle + + + Mise en forme conditionnelle + + + Contient + + + Copie + + + Compter + + + Créer un champ calculé + + + CSV + + + Devise + + + Symbole de la monnaie + + + Douane + + + Format personnalisé + + + Entrez une chaîne de format personnalisé + + + Date + + + Afficher les éléments pour lesquels la date + + + Journées + + + Décimales + + + Supprimer + + + Supprimer un rapport actuel + + + Descendant + + + Détails + + + Différence de + + + Dimension + + + Nombre distinct + + + Ne commence pas par + + + Ne contient pas + + + Ne se termine pas par + + + N'est pas égal + + + Ne pas afficher les totaux généraux + + + Traîne + + + Percer à travers + + + Impossible d'afficher les éléments bruts des champs calculés. + + + Éditer + + + Aucun enregistrement à afficher + + + Aucun rapport trouvé !! + + + Se terminant à + + + Se termine par + + + Entrez la date + + + Entrez un nom de rapport + + + Entrez une valeur + + + Équivaut à + + + Erreur + + + par exemple: + + + Excel + + + Développer + + + Exportation + + + Expression + + + Faux + + + Légende de champ + + + Légende du champ + + + Le champ que vous déplacez ne peut pas être placé dans cette zone du rapport + + + Nom de domaine + + + Nom de domaine : + + + Type de champ + + + Filtre + + + Déposer le filtre ici + + + Filtré + + + Filtres + + + Format + + + Format de chaîne + + + Type de format + + + Formule + + + somme finale + + + Totaux généraux + + + Plus grand que + + + Plus grand ou égal à + + + Groupe + + + Entrez la légende à afficher dans l'en-tête + + + Entrez la légende pour le champ de groupe + + + Regroupement + + + Nom de groupe + + + Heures + + + Indice + + + Intervalle de + + + Format invalide. + + + Formule non valide. + + + Impossible de regrouper cette sélection. + + + JPEG + + + Étiquette + + + Afficher les éléments pour lesquels l'étiquette + + + La gauche + + + Moins que + + + Inférieur ou égal à + + + Ligne + + + Charge + + + Chargement... + + + Gérer les enregistrements + + + Max + + + Requête MDX + + + Mesure + + + Membre + + + Plus d'articles. Rechercher pour affiner davantage. + + + Min + + + Minutes + + + Mois + + + Plus... + + + Articles multiples + + + Créer un nouveau rapport + + + Voulez-vous enregistrer les modifications apportées à ce rapport ? + + + Aucun format trouvé !!! + + + Entrez une valeur + + + Pas de correspondance + + + Pas entre + + + Pas égal + + + Aucune valeur + + + nul + + + Nombre + + + Formatage des nombres + + + de + + + D'accord + + + Hors de portée + + + Hiérarchie parente + + + PDF + + + Pour cent + + + Pourcentage + + + % du total de la colonne + + + % de différence par rapport à + + + % du grand total + + + % du total de la colonne parent + + + % du total de la ligne parent + + + % du total des parents + + + % du total des lignes + + + PNG + + + Polaire + + + La population de StDev + + + Population Var + + + Produit + + + Qtr + + + Quartiers + + + Trimestre année + + + Retirer + + + Voulez-vous vraiment supprimer ce rapport? + + + Renommer un rapport actuel + + + Liste des rapports + + + Nom du rapport: + + + Droite + + + Rangée + + + Déposer la ligne ici + + + Lignes + + + Totaux en cours d'exécution + + + Rapport par défaut + + + Exemple StDev + + + Échantillon Var + + + Enregistrer en tant que rapport actuel + + + Enregistrer un rapport + + + Dispersion + + + Chercher + + + Secondes + + + Éléments sélectionnés + + + Sélectionnez des groupes + + + Afficher uniquement les colonnes des totaux généraux + + + Afficher la liste des champs + + + Afficher les totaux généraux + + + Afficher uniquement les lignes des totaux généraux + + + Afficher le tableau + + + Trier + + + la norme + + + À partir de + + + Sous-totaux + + + Somme + + + Résume les valeurs par + + + Résumez les valeurs en + + + SVG + + + Position du symbole + + + Total + + + Vrai + + + indéfini + + + Dissocier + + + Veuillez entrer le nom du rapport vaild !!! + + + Valeur + + + Déposer la valeur ici + + + Paramètres de champ de valeur + + + Valeurs + + + Afficher les articles pour lesquels + + + avertissement + + + Ans + + + Axes multiples + + + Paramètres de type de graphique + + + Type de graphique + + + Oui + + + Non + + + Formatage des nombres ... + + + Mise en forme conditionnelle... + + + Voulez-vous vraiment supprimer ce champ calculé? + + + Zone empilée + + + Colonne empilée + + + Bar empilé + + + Step Line + + + Zone de l'étape + + + Zone de spline + + + Spline + + + 100% Colonne empilée + + + Barre 100% empilée + + + Zone 100% empilée + + + Bulle + + + Pareto + + + Radar + + + Modifier le champ calculé + + + Effacer les informations des champs modifiés + + + Tarte + + + Pyramide + + + Donut + + + Entonnoir + + + Empilé + + + Mode d'axes multiples + + + Médian + + + Bas + + + Position des totaux généraux + + + Haut + + + Appliquer au Grand Total + + + Ajouter une condition + + + Ajouter un groupe + + + ET + + + Entre + + + Contient + + + Supprimer le groupe + + + Supprimer cette condition + + + ÉDITER + + + Vide + + + Se termine par + + + Égal + + + Plus grand que + + + Meilleur que ou égal + + + Dans + + + Moins que + + + Inférieur ou égal + + + Pas entre + + + Ne contient pas + + + Pas vide + + + Inégal + + + Pas dedans + + + OU + + + Autres domaines + + + RETIRER + + + Sélectionnez un champ + + + Sélectionnez un opérateur + + + Entrez une valeur + + + Sélectionnez la valeur + + + Choisissez une gamme + + + Sélectionnez une date + + + Commence avec + + + Vue récapitulative + + + Ce champ est requis + + + Fermer + + + Fermer + + + Fermer + + + sauvegarder + + + Annuler + + + Chargement... + + + Cliquez pour modifier + + + Cliquez pour modifier + + + Double-cliquez pour modifier + + + Petite + + + Petite + + + Luminosité + + + Parcourir + + + Dézoomer + + + Agrandir + + + Rogner et transformer + + + Couper Sélection + + + Annotation + + + Transformer + + + Affiner + + + Filtre + + + Luminosité + + + Contraste + + + Teinte + + + Saturation + + + Exposition + + + Opacité + + + Flou + + + Famille de polices + + + Taille de police + + + Couleur de la police + + + Couleur Tracé + + + Largeur du trait + + + La couleur de remplissage + + + Réinitialiser + + + sauvegarder + + + annuler + + + Refaire + + + Défaut + + + Chrome + + + Froid + + + Chaleureux + + + Echelle de gris + + + Sépia + + + Inverser + + + Douane + + + Carré + + + Cercle + + + Stylo + + + Ligne + + + Rectangle + + + Ellipse + + + Chemin + + + Ajouter du Texte + + + Rotation à gauche + + + Rotation à droite + + + Horizontal Flip (Retournement horizontal) + + + Vertical Flip (Retournement vertical) + + + Audacieux + + + Italique + + + X-Petit + + + Petite + + + Moyen + + + Grande + + + Très grande + + + Duplicata + + + Retirer + + + Modifier le texte + + + Début + + + Fin + + + Aucun + + + Flèche vers le haut - Solide + + + Aucun + + + Bar + + + Flèche + + + Flèche vers le haut - Solide + + + Cercle + + + Cercle solide + + + Carré + + + Square Solide + + + Confirmez Enregistrer les modifications + + + Voulez-vous enregistrer les modifications que vous avez apportées à l'image ? + + + Oui + + + Non + + + redimensionner + + + largeur + + + hauteur + + + Maintenir le non-rapport d'aspect + + + Conserver les proportions + + + retournement horizontal + + + retournement vertical + + + transparence + + + Faites glisser et déposez votre image ici ou + + + Parcourez ici... + + + Les soutiens: + + + cadre + + + aucun + + + tapis + + + biseau + + + doubler + + + encart + + + crochet + + + couleur + + + taille + + + compenser + + + rayon + + + montant + + + W + + + H + + + Frontière + + + Solide + + + En pointillés + + + Pointé + + + Dégradé de couleur + + + articles + + + article + + + Aucune carte à afficher + + + Min + + + Max + + + Cartes sélectionnées + + + Ajouter une nouvelle carte + + + Modifier les détails de la carte + + + Supprimer la carte + + + Voulez-vous vraiment supprimer cette carte? + + + sauver + + + Effacer + + + Annuler + + + Oui + + + Non + + + Éditeur de texte enrichi + + + Éditeur Markdown + + + Liste des formats de nombres + + + Rien + + + Nombre + + + Alpha supérieur + + + Alpha inférieur + + + Romain supérieur + + + Roman inférieur + + + Grec inférieur + + + Liste au format puces + + + Rien + + + Cercle + + + Carré + + + Disque + + + Paragraphe + + + Code + + + Citation + + + Titre 1 + + + Titre 2 + + + Titre 3 + + + Titre 4 + + + Titre 5 + + + Titre 6 + + + Titre 7 + + + Titre 8 + + + Titre 9 + + + Segoe UI + + + Arial + + + Georgia + + + Impact + + + Tahoma + + + Times New Roman + + + Verdana + + + Alignments + + + Alignez à gauche + + + Aligner le centre + + + Aligner à droite + + + Aligner Justifier + + + Nom de police + + + Taille de police + + + Couleur de la police + + + Couleur de l'arrière plan + + + Audacieux + + + Italique + + + Souligner + + + Barré + + + Effacer le format + + + Tout effacer + + + Couper + + + Copier + + + Coller + + + Liste à puces + + + Liste numérotée + + + Augmenter le retrait + + + Diminuer le retrait + + + annuler + + + Refaire + + + Exposant + + + Indice + + + Insérer un lien hypertexte + + + Ouvrir le lien + + + Modifier le lien + + + Supprimer le lien + + + Insérer une image + + + Remplacer + + + Aligner + + + Légende + + + Retirer + + + Insérer un lien + + + Afficher + + + Texte alternatif + + + Changer la taille + + + Maximiser + + + Maximiser + + + Minimiser + + + Minuscules + + + Majuscules + + + Impression + + + Les formats + + + Affichage du code + + + Aperçu + + + Vue latérale + + + Insérer le code + + + Afficher le texte + + + Titre + + + Adresse web + + + Entrez un titre + + + https://example.com + + + Ouvre le lien dans une nouvelle fenêtre + + + Insérer un lien + + + Insérer + + + Annuler + + + Mise à jour + + + Insérer une image + + + Vous pouvez également fournir un lien à partir du Web + + + Veuillez fournir une URL pour votre image + + + Déposer l'image ici ou parcourir pour télécharger + + + Cliquez ici pour télécharger + + + Texte alternatif + + + Texte alternatif + + + Parcourir + + + Cliquez ici pour télécharger + + + Déposez un fichier vidéo ou parcourez pour le télécharger + + + Collez le code intégré ici + + + URL Web + + + Code intégré + + + Largeur + + + Hauteur + + + Cliquez ici pour télécharger + + + Déposez un fichier audio ou parcourez pour le télécharger + + + https://example.com/image.png + + + Légende + + + Taille de l'image + + + la taille + + + Largeur + + + Entrez du texte + + + Insérer un tableau + + + Insérer un tableau + + + Largeur + + + Rembourrage cellulaire + + + Espacement des cellules + + + Le nombre de colonnes + + + Nombre de rangées + + + Rangée + + + Colonne + + + Alignement horizontal des cellules du tableau + + + Alignement vertical + + + Créer une table + + + Supprimer le tableau + + + Ligne d'en-tête + + + Supprimer le tableau + + + Fond de cellule de tableau + + + Propriétés de modification du tableau + + + modes + + + Insérer une colonne à gauche + + + Insérer une colonne à droite + + + Supprimer la colonne + + + Insérer une ligne avant + + + Insérer une ligne après + + + Supprimer la ligne + + + Modifier le tableau + + + Titre + + + Col + + + Insérer un lien + + + Éditer l'image + + + Alignez à gauche + + + Aligner le centre + + + Aligner à droite + + + Aligner Justifier + + + En ligne + + + Pause + + + Insérer une ligne avant + + + Insérer une ligne après + + + Supprimer la ligne + + + Insérer la colonne à gauche + + + Insérer une colonne à droite + + + Supprimer la colonne + + + Aligner en haut + + + Aligner au milieu + + + Aligner en bas + + + Bordures pointillées + + + Lignes alternatives + + + Coller le format + + + Choisissez l'action de formatage + + + Texte brut + + + Nettoyer + + + Garder + + + D'accord + + + Annuler + + + Remplacer + + + Retirer + + + Affichage + + + Remplacer + + + Aligner + + + Retirer + + + Affichage + + + Dimension + + + Ouvrir dans une nouvelle fenêtre + + + Ouvrir dans une nouvelle fenêtre + + + Format de fichier non pris en charge + + + X + + + Oui + + + W + + + H + + + Mettre au premier plan + + + Copie + + + Couper + + + Groupe + + + Regroupement + + + Avance + + + Commande + + + Coller + + + Refaire + + + Tout sélectionner + + + Envoyer vers l'arrière + + + Envoyer au fond + + + annuler + + + Dissocier + + + Aucun enregistrement à afficher + + + vrai + + + faux + + + Données de filtre non valides + + + Faites glisser un en-tête de colonne ici pour regrouper sa colonne + + + Cliquez ici pour dissocier + + + Le regroupement est désactivé pour cette colonne + + + Cellule de barre de filtre "s + + + DataSource ne doit pas être vide lors du chargement initial car les colonnes sont générées à partir de dataSource dans AutoGenerate Column Grid + + + Ajouter + + + Éditer + + + Annuler + + + Mise à jour + + + Supprimer + + + Impression + + + Exportation PDF + + + Exportation Excel + + + Exportation de mots + + + Exportation CSV + + + Chercher + + + Colonnes + + + Sauvegarder + + + Précédent + + + article + + + articles + + + Aucun enregistrement sélectionné pour l'opération d'édition + + + Aucun enregistrement sélectionné pour l'opération de suppression + + + sauvegarder + + + D'accord + + + Annuler + + + Les détails de + + + Ajouter un nouvel enregistrement + + + Voulez-vous vraiment enregistrer les modifications? + + + Les modifications non enregistrées seront perdues. Es-tu sur de vouloir continuer? + + + Voulez-vous vraiment supprimer l'enregistrement? + + + Voulez-vous vraiment annuler les modifications? + + + Choisissez la colonne + + + colonnes de recherche + + + Aucun résultat + + + Filtre + + + Clair + + + Nul + + + Pas nul + + + Vide + + + Pas vide + + + Comme + + + Commence avec + + + Se termine par + + + Contient + + + Ne commence pas par + + + Ne se termine pas par + + + Ne contient pas + + + Égal + + + Inégal + + + Moins que + + + Inférieur ou égal + + + Plus grand que + + + Meilleur que ou égal + + + Choisissez une date + + + Entrez la valeur + + + Copie + + + Regrouper par cette colonne + + + Dissocier par cette colonne + + + Ajuster automatiquement toutes les colonnes + + + Ajuster automatiquement cette colonne + + + Exportation + + + Première page + + + Dernière page + + + Page précédente + + + Page suivante + + + Trier par ordre croissant + + + Trier par ordre décroissant + + + Triés par ordre croissant + + + Triés par ordre décroissant + + + Modifier l'enregistrement + + + Supprimer l'enregistrement + + + Filtre + + + Tout sélectionner + + + Ajouter la sélection actuelle au filtre + + + Blancs + + + Vrai + + + Faux + + + Aucun résultat + + + Effacer le filtre + + + Filtres numériques + + + Filtres de texte + + + Filtres de date + + + Filtres DateTime + + + Cas de correspondance + + + Entre + + + Filtre personnalisé + + + Entrez la valeur + + + Choisissez une date + + + ET + + + OU + + + Afficher les lignes où: + + + Case à cocher Ligne + + + Icône de filtre + + + Icône de menu de colonne + + + Bouton de groupe + + + Bouton Dissocier + + + En-tête de colonne + + + Case à cocher Filtrer + + + Case à cocher d'en-tête + + + Trier + + + Ascendant + + + Descendant + + + Aucun + + + est une cellule modèle + + + Cliquez sur Entrée pour + + + Appuyez sur Alt Down pour ouvrir le menu du filtre + + + Appuyez sur Alt Down pour ouvrir le menu Colonne + + + Menu de colonne + + + Appuyez sur Ctrl espace pour regrouper + + + est la cellule de légende de groupe + + + en-tête de colonne non défini + + + trier la colonne groupée + + + fermer + + + Opérateur de filtre + + + Valeur du filtre + + + Sélectionner une ligne + + + Page + + + PAGES + + + de + + + Message externe du pager + + + PAGES + + + Liste déroulante du téléavertisseur + + + Aller à la page + + + {0} de {1} pages + + + ({0} éléments) + + + Aller à la première page + + + Aller à la dernière page + + + Aller à la page suivante + + + Aller à la page précédente + + + Aller au téléavertisseur suivant + + + Aller au téléavertisseur précédent + + + objets par page + + + Articles + + + Tout + + + articles + + + Compter + + + du quotidien + + + Journées) + + + Fin + + + chaque + + + Premier + + + Quatrième + + + Dernier + + + Mois + + + Expander mois + + + Mensuel + + + Position du mois + + + Mois) + + + Mois Semaine + + + Jamais + + + Aucun + + + Répéter sur + + + journée + + + Répéter + + + Répétez tous les + + + Intervalle de répétition + + + Seconde + + + journées) + + + mois) + + + sur + + + Répète + + + fois) + + + jusqu'à + + + semaines) + + + ans) + + + Troisième + + + Jusqu'à + + + Hebdomadaire + + + Semaines) + + + Expander année + + + Annuel + + + Ans) + + + Ajouter un titre + + + Ordre du jour + + + Alerte + + + Toute la journée + + + Commencer à partir de + + + Les événements ne peuvent pas être planifiés dans l'intervalle de temps bloqué. + + + Annuler + + + Annuler + + + Fermer + + + La durée de l'événement doit être plus courte que sa fréquence. Raccourcissez la durée ou modifiez le modèle de récurrence dans l'éditeur d'événements de récurrence. + + + Créer + + + journée + + + Supprimer + + + Supprimer + + + Voulez-vous vraiment supprimer cet événement? + + + Cet evènement + + + Voulez-vous vraiment supprimer les événements sélectionnés? + + + Supprimer plusieurs événements + + + Série entière + + + Supprimer l'événement + + + La description + + + Éditer + + + Comment aimeriez-vous changer le rendez-vous de la série? + + + Cet evènement + + + Événements suivants + + + Modifier la récurrence + + + Série entière + + + Modifier l'événement + + + Aucun événement n'est prévu ce jour-là. + + + Fin + + + Heure de fin + + + Fin à + + + Fin du fuseau horaire + + + La valeur de date entrée n'est pas valide. + + + Emplacement + + + Cherchez plus + + + Mois + + + Agenda du mois + + + plus + + + Plus de détails + + + Plus d'événements + + + Nouvel évènement + + + Prochain + + + Non + + + Pas d'événements + + + Pas d'enregistrements + + + (Pas de titre) + + + Occurrence + + + D'accord + + + précédent + + + Récurrence + + + Événement récurrent + + + Répéter + + + Répète + + + Deux occurrences du même événement ne peuvent pas se produire le même jour. + + + sauvegarder + + + sauvegarder + + + Articles sélectionnés + + + fuseau horaire de recherche + + + Séries + + + Voulez-vous annuler les modifications apportées à des instances spécifiques de cette série et les associer à nouveau à l'ensemble de la série? + + + Affichage des événements jusqu'au + + + Début + + + Heure de début + + + La date de fin sélectionnée se produit avant la date de début. + + + Démarrer le fuseau horaire + + + Matière + + + Jour de la chronologie + + + Mois de la chronologie + + + Semaine chronologique + + + Semaine de travail + + + Année de la chronologie + + + Fuseau horaire + + + Titre + + + Aujourd'hui + + + La semaine + + + Agenda de la semaine + + + Semaine de travail + + + Agenda de la semaine de travail + + + Le modèle de récurrence n'est pas valide. + + + Oui + + + Année + + + Fermer + + + Diapositive précédente + + + Diapositive suivante + + + Faire glisser + + + de + + + Arrêter l'animation automatique + + + Démarrer l'animation automatique + + + diaporama + + + Visionneuse PDF + + + Annuler + + + Télécharger un fichier + + + Télécharger + + + Ce document est protégé par mot de passe. Veuillez entrer un mot de passe. + + + Fichier corrompu + + + Le fichier est corrompu et ne peut pas être ouvert. + + + Hauteur d'ajustement + + + Ajuster la page + + + Largeur de coupe + + + Automatique + + + Afficher la première page + + + Aller à la première page + + + Aller à la page précédente + + + Aller à la page suivante + + + Aller à la dernière page + + + Aller à la zone de texte du numéro de page + + + Réduire le zoom de la page + + + Agrandir le zoom de la page + + + Combo de rapport de zoom + + + Soumettre le bouton de formulaire. Cliquez sur ce bouton pour enregistrer les valeurs des champs de formulaire sous forme de fichier JSON. + + + Rechercher du texte + + + Bouton déroulant des formes + + + Popup déroulant des formes ouvert + + + Élément de menu ligne 1 de 5 + + + Élément de menu flèche 2 de 5 + + + Élément de menu rectangle 3 de 5 + + + Élément de menu cercle 4 de 5 + + + Élément de menu polygone 5 de 5 + + + Bouton déroulant de calibration des formes + + + Popup déroulant de calibration des formes ouvert + + + Élément de menu distance 1 de 5 + + + Élément de menu périmètre 2 de 5 + + + Élément de menu surface 3 de 5 + + + Élément de menu rayon 4 de 5 + + + Élément de menu volume 5 de 5 + + + Bouton déroulant de tampon, réduit + + + Tampon dynamique 1 de 4 + + + Tampon approuvé 1 de 6 + + + Tampon non approuvé 3 de 6 + + + Tampon confidentiel 2 de 6 + + + Tampon reçu 4 de 6 + + + Tampon révisé 5 de 6 + + + Tampon révisé 6 de 6 + + + Tampon signer ici 2 de 4 + + + Tampon accepté 1 de 5 + + + Tampon initial ici 2 de 5 + + + Tampon rejeté 3 de 5 + + + Tampon signer ici 4 de 5 + + + Tampon témoin 5 de 5 + + + Tampon d'entreprise standard 3 de 4 + + + Tampon approuvé 1 de 12 + + + Tampon complété 2 de 12 + + + Tampon confidentiel 3 de 12 + + + Tampon brouillon 4 de 12 + + + Tampon final 5 de 12 + + + Tampon pour commentaire 6 de 12 + + + Tampon pour publication publique 7 de 12 + + + Tampon uniquement pour information 8 de 12 + + + Tampon non approuvé 9 de 12 + + + Tampon non destiné à la publication publique 10 de 12 + + + Tampon résultats préliminaires 11 de 12 + + + Tampon nul 12 de 12 + + + Tampon personnalisé 4 sur 4 + + + Insérer une signature + + + Dessiner à main levée + + + Édition de la famille de police + + + Édition de la taille de police + + + Édition de la couleur de police + + + Édition de l'alignement du texte + + + Fenêtre contextuelle d'alignement du texte ouverte + + + Aligner à gauche Éléments de menu 1 sur 4 + + + Aligner à droite Éléments de menu 2 sur 4 + + + Aligner au centre Éléments de menu 3 sur 4 + + + Justifier Éléments de menu 4 sur 4 + + + Édition des propriétés de texte + + + Fenêtre contextuelle des propriétés de texte ouverte + + + Éléments de menu d'icône gras 1 sur 4 + + + Éléments de menu d'icône italique 2 sur 4 + + + Éléments de menu d'icône barrée 3 sur 4 + + + Éléments de menu d'icône soulignée 4 sur 4 + + + Édition de la couleur de remplissage + + + Édition de la couleur de contour + + + Curseur d'épaisseur + + + Curseur d'opacité + + + Fermer le bouton de la barre d'outils d'annotation + + + Mot de passe incorrect. Veuillez réessayer. + + + Afficher la page suivante + + + Afficher la page précédente + + + D'accord + + + Fichier ouvert + + + Numéro de page actuel + + + Afficher la dernière page + + + Zoom + + + Agrandir + + + Dézoomer + + + Vignettes de page + + + Signets + + + Imprimer le fichier + + + Mot de passe requis + + + Copie + + + Outil de sélection de texte + + + Mode panoramique + + + Rechercher du texte + + + Rechercher dans le document + + + Cas de correspondance + + + Appliquer + + + Aller à la page + + + La visionneuse a terminé la recherche du document. Aucune correspondance n'a été trouvée. + + + La visionneuse a terminé la recherche du document. Aucune autre correspondance n'a été trouvée. + + + Aucune correspondance trouvée + + + Aucune autre correspondance trouvée + + + annuler + + + Refaire + + + Ajouter ou modifier des annotations + + + Texte surligné + + + Souligner le texte + + + Texte barré + + + Texte ondulé + + + Supprimer l'annotation + + + Opacité + + + Changer de couleur + + + Changer l'opacité + + + Surligner + + + Souligner + + + Barré + + + Ondulé + + + Quelque chose s'est mal passé. Veuillez réessayer ou actualiser la page. + + + Une erreur côté client a été trouvée. Veuillez vérifier les en-têtes personnalisés fournis dans la propriété AjaxRequestSettings et les méthodes d'action Web dans la propriété ServerActionSettings. + + + L'accès au document est restreint en raison de la politique du cors. Veuillez vérifier le document. + + + Ouverte + + + Première page + + + Page précédente + + + Page suivante + + + Dernière page + + + Agrandir + + + Dézoomer + + + Sélection + + + La poêle + + + Impression + + + Chercher + + + Modifier l'annotation + + + Ajouter ou modifier les champs du formulaire + + + Modifier les champs du formulaire + + + Zone de texte + + + Mot de passe + + + Case à cocher + + + Bouton radio + + + Déroulante + + + Boîte de liste + + + Bouton + + + Supprimer le champ du formulaire + + + Signature + + + Initiale + + + Enregistrer + + + Général + + + Apparence + + + Options + + + Nom + + + Info-bulle + + + Valeur + + + Visibilité du champ + + + Lecture seule + + + Coché + + + Sélectionné + + + Requis + + + Multi-lignes + + + Format + + + Longueur maximale + + + Remplir + + + Bordure + + + Épaisseur + + + Nom de l'élément + + + Valeur de l'élément + + + Liste des éléments + + + Haut + + + Bas + + + Épaisseur de la bordure + + + Style de police + + + Alignement + + + Couleur de la bordure + + + Visible + + + Visible mais non imprimable + + + Caché mais imprimable + + + Caché + + + Helvetica + + + Courier + + + Symbole + + + Times New Roman + + + Épaisseur de ligne + + + Propriétés de ligne + + + Flèche de départ + + + Flèche de fin + + + Style de ligne + + + La couleur de remplissage + + + Couleur de la ligne + + + Aucune + + + Flèche ouverte + + + Flèche fermée + + + Flèche ronde + + + Flèche carrée + + + Flèche de diamant + + + Couper + + + Coller + + + Effacer + + + Propriétés + + + Ajouter un tampon + + + Ajouter des formes + + + Changer la couleur du trait + + + Modifier l'épaisseur de la bordure + + + Ajouter une ligne + + + Ajouter une flèche + + + Ajouter un rectangle + + + Ajouter un cercle + + + Ajouter un polygone + + + Ajoutez des commentaires + + + commentaires + + + Aucun commentaire pour l'instant + + + Accepté + + + Terminé + + + Annulé + + + Rejetée + + + Longueur de ligne de repère + + + Rapport d'échelle + + + Étalonner + + + Calibrer la distance + + + Calibrer le périmètre + + + Étalonner la zone + + + Calibrer le rayon + + + Calibrer le volume + + + Profondeur + + + Fermée + + + Ronde + + + Carrée + + + diamant + + + Éditer + + + Commentaire + + + Panneau de commentaires + + + Définir le statut + + + Publier + + + Page + + + Ajouter un commentaire + + + Ajouter une réponse + + + Importer des annotations + + + Exporter les annotations + + + Ajouter + + + Claire + + + Audacieuse + + + Italique + + + Barrés + + + Souligne + + + Exposante + + + Indice + + + Alignez à gauche + + + Aligner à droite + + + Centre + + + Justifier + + + Couleur de la police + + + Aligner le texte + + + Le style de police + + + Dessiner la signature + + + Créer + + + Famille de polices + + + Taille de police + + + Texte libre + + + Type ou nom de fichier JSON non valide; veuillez sélectionner un fichier JSON valide + + + Le fichier JSON importé est introuvable à l'emplacement souhaité + + + L'action d'exportation des annotations a échoué; veuillez vous assurer que les annotations sont ajoutées correctement + + + TIRER + + + TAPER + + + TÉLÉCHARGER + + + FEUILLETER + + + Enregistrer la signature + + + Enregistrer l'initiale + + + Entrez votre nom + + + Dynamique + + + Affaires standard + + + Tampon personnalisé + + + modifié + + + Révisé + + + A reçu + + + Approuvée + + + Confidentielle + + + Non approuvé + + + Témoin + + + Vos initiales ici + + + Signez ici + + + Brouillon + + + Finale + + + Pour diffusion publique + + + Pas pour diffusion publique + + + Pour commentaire + + + Annuler + + + Résultats préliminaires + + + Information seulement + + + Soumettre le formulaire + + + de + + + Cette visionneuse PDF nécessite un traitement côté serveur pour afficher les fichiers PDF via le service Web. Vous devez configurer l'URL du service pour continuer avec la visionneuse PDF + + + Fermer + + + Dessiner de l'encre + + + Ajouter une initiale + + + Dessiner de l'encre + + + Table + + + Rangée + + + Cellule + + + D'accord + + + Annuler + + + Taille + + + Largeur préférée + + + Points + + + Pour cent + + + Mesurer en + + + Alignement + + + La gauche + + + Centre + + + Droite + + + Justifier + + + Niveau de plan + + + Le corps du texte + + + Niveau 1 + + + Niveau 2 + + + Niveau 3 + + + Niveau 4 + + + Niveau 5 + + + Niveau 6 + + + Niveau 7 + + + Niveau 8 + + + Niveau 9 + + + Retrait de gauche + + + Bordures et ombrage + + + Les options + + + Précisez la hauteur + + + Au moins + + + Exactement + + + La hauteur de ligne est + + + Autoriser la ligne à traverser les pages + + + Répéter comme ligne d'en-tête en haut de chaque page + + + Alignement vertical + + + Haut + + + Bas + + + Marges de cellule par défaut + + + Espacement des cellules par défaut + + + Autoriser l'espacement entre les cellules + + + Marges des cellules + + + Identique à toute la table + + + Les frontières + + + Aucun + + + Style + + + Largeur + + + la taille + + + Lettre + + + Tabloïde + + + Légal + + + Déclaration + + + Exécutif + + + A3 + + + A4 + + + A5 + + + B4 + + + B5 + + + Format personnalisé + + + Différent impair et pair + + + Première page différente + + + Du bord + + + Entête + + + Bas de page + + + Marges + + + Papier + + + Disposition + + + Orientation + + + Paysage + + + Portrait + + + Afficher les numéros de page + + + Aligner à droite les numéros de page. + + + Rien + + + Repère de tabulation + + + Afficher les niveaux + + + Utilisez des hyperliens au lieu des numéros de page + + + Créer une table des matières à partir de + + + modes + + + Styles disponibles + + + Niveau COT + + + Titre + + + Rubrique 1 + + + Rubrique 2 + + + Rubrique 3 + + + Rubrique 4 + + + Rubrique 5 + + + Rubrique 6 + + + Rubrique 7 + + + Rubrique 8 + + + Rubrique 9 + + + Paragraphe de liste + + + Ordinaire + + + Niveaux de contour + + + Champs de saisie de table + + + Modifier + + + Couleur + + + Réglage + + + Boîte + + + Tout + + + Douane + + + Aperçu + + + Ombres + + + Remplir + + + Postuler à + + + Propriétés du tableau + + + Options de cellule + + + Options de table + + + Insérer un tableau + + + Le nombre de colonnes + + + Nombre de rangées + + + Texte à afficher + + + Adresse + + + Insérer un lien hypertexte + + + Modifier l'hyperlien + + + Insérer + + + Général + + + Échancrure + + + Avant le texte + + + Spécial + + + Première ligne + + + Pendaison + + + Après le texte + + + Par + + + Avant + + + Interligne + + + Après + + + À + + + Plusieurs + + + Espacement + + + Définir une nouvelle liste à plusieurs niveaux + + + Niveau liste + + + Choisissez le niveau à modifier + + + Niveau + + + Format de nombre + + + Style de nombre pour ce niveau + + + Entrez la mise en forme du nombre + + + Commencer à + + + Redémarrez la liste après + + + Position + + + Retrait du texte à + + + Aligné à + + + Suivez le numéro avec + + + Caractère de tabulation + + + Espace + + + arabe + + + UpRoman + + + LowRoman + + + UpLetter + + + LowLetter + + + Nombre + + + Zéro en tête + + + Balle + + + Ordinal + + + Texte ordinal + + + Pour l'Est + + + Pas de redémarrage + + + Police de caractère + + + Le style de police + + + Souligner le style + + + Couleur de la police + + + Effets + + + Barré + + + Exposant + + + Indice + + + Barré double + + + Ordinaire + + + Audacieux + + + Italique + + + Couper + + + Copie + + + Coller + + + Hyperlien + + + Ouvrir l'hyperlien + + + Copier l'hyperlien + + + Supprimer l'hyperlien + + + Paragraphe + + + Lié (paragraphe et caractère) + + + Personnage + + + Fusionner des cellules + + + Insérer au-dessus + + + Insérer ci-dessous + + + Insérer à gauche + + + Insérer à droite + + + Supprimer + + + Supprimer le tableau + + + Supprimer la ligne + + + Supprimer la colonne + + + Nom de fichier + + + Type de format + + + sauvegarder + + + La navigation + + + Résultats + + + Remplacer + + + Remplace tout + + + Nous avons remplacé tous + + + Trouver + + + Rubriques + + + Pas de correspondance + + + Terminé + + + Résultat + + + de + + + instances + + + avec + + + Cliquez pour suivre le lien + + + Continuer la numérotation + + + Nom du signet + + + Fermer + + + Redémarrer à + + + Propriétés + + + Nom + + + Type de style + + + Style basé sur + + + Style pour le paragraphe suivant + + + Mise en page + + + Numérotation et puces + + + Numérotage + + + Champ de mise à jour + + + Modifier le champ + + + Signet + + + Mise en page + + + Aucun signet trouvé + + + Format + + + Créer un nouveau style + + + Modifier le style + + + Nouveau + + + Balles + + + Utiliser des signets + + + Table des matières + + + Ajustement automatique + + + Ajustement automatique au contenu + + + Ajustement automatique à la fenêtre + + + Largeur de colonne fixe + + + Réinitialiser + + + Cas de correspondance + + + Mots entiers + + + Ajouter + + + Aller à + + + Rechercher + + + Remplacer par + + + TOC 1 + + + TOC 2 + + + TOC 3 + + + TOC 4 + + + TOC 5 + + + TOC 6 + + + TOC 7 + + + TOC 8 + + + TOC 9 + + + De droite à gauche + + + De gauche à droite + + + Direction + + + Direction de la table + + + Retrait à droite + + + N'ajoutez pas d'espace entre les paragraphes des mêmes styles + + + Le mot de passe ne correspond pas + + + Restreindre l'édition + + + Restrictions de formatage + + + Autoriser la mise en forme + + + Modification des restrictions + + + Lecture seulement + + + Exceptions (facultatif) + + + Sélectionnez des parties du document et choisissez les utilisateurs autorisés à les modifier librement. + + + Toutes les personnes + + + Plus d'utilisateurs + + + Ajouter des utilisateurs + + + Oui, commencez à appliquer la protection + + + Commencer à appliquer la protection + + + Entrez l'utilisateur + + + Utilisateurs + + + Entrez un nouveau mot de passe + + + Entrez à nouveau le nouveau mot de passe pour confirmer + + + Vos autorisations + + + Ce document est protégé contre toute modification involontaire. + + + Vous ne pouvez formater le texte qu'avec certains styles. + + + Arrêter la protection + + + Mot de passe + + + Éditeur d'orthographe + + + Orthographe + + + Vérification orthographique + + + Souligner les erreurs + + + Ignorer + + + Ignorer tout + + + Ajouter au dictionnaire + + + Changement + + + Change tout + + + Suggestions + + + Le mot de passe est incorrect + + + Erreur lors de l'établissement de la connexion avec le serveur Web + + + Mettez en surbrillance les régions que je peux modifier + + + Afficher toutes les régions que je peux modifier + + + Rechercher la prochaine région que je peux modifier + + + Conserver le formatage source + + + Faire correspondre la mise en forme de la destination + + + Texte seulement + + + commentaires + + + Tapez votre commentaire + + + Publier + + + Répondre + + + Nouveau commentaire + + + Éditer + + + Résoudre + + + Rouvrir + + + Aucun commentaire dans ce document + + + plus + + + Tapez votre commentaire ici + + + Commentaire suivant + + + Commentaire précédent + + + Commentaires non publiés + + + Ajout de commentaires non publiés. Si vous continuez, ce commentaire sera ignoré. + + + Aucune rubrique trouvée! + + + Ce document n'a pas de titres. Veuillez ajouter des titres et réessayer. + + + Plus d'options + + + Cliquez pour voir ce commentaire + + + Champ de formulaire déroulant + + + Articles déroulants + + + Éléments dans la liste déroulante + + + AJOUTER + + + RETIRER + + + Réglages sur place + + + Info-bulle + + + Liste déroulante activée + + + Champ de formulaire de case à cocher + + + Cochez la taille + + + Auto + + + Valeur par défaut + + + Non vérifié + + + Vérifié + + + Case à cocher activée + + + Champ de formulaire texte + + + Type + + + Texte par défaut + + + Longueur maximale + + + Format texte + + + Remplissage activé + + + Numéro par défaut + + + Date par défaut + + + Format de date + + + Cette action ne sera pas marquée comme un changement. Voulez-vous continuer? + + + Ne peut pas être suivi + + + J'accepte + + + Rejeter + + + Modifications précédentes + + + Prochaines modifications + + + Inséré + + + Effacé + + + Changements + + + Accepter tout + + + Tout rejeter + + + Aucun changement + + + Accepter les modifications + + + Refuser les modifications + + + Utilisatrice + + + Vue + + + Déprotéger le document + + + Vous ne pouvez remplir des formulaires que dans cette région. + + + Contrôle des veuves/orphelins + + + Retraits et espacement + + + Sauts de ligne et de page + + + Gardez les lignes ensemble + + + Ignorer une fois + + + Continuer avec le suivant + + + Texte de l'info-bulle + + + Conserver la mise en forme source + + + Faire correspondre le format de destination + + + Vous ne pouvez insérer des commentaires que dans cette région. + + + Le nombre de lignes doit être compris entre 1 et 32767 + + + Le nombre de colonnes doit être compris entre 1 et 63 + + + Informations + + + Point + + + Tiret petit écart + + + Tiret Point + + + Mince Épais Petit espace + + + Épais Mince Petit Écart + + + Épais Mince Moyen Écart + + + Épais Mince Grand Espace + + + Simple ondulé + + + Double ondulé + + + Encart + + + Tiret grand écart + + + Tiret Point Point + + + Tripler + + + Mince Épais Mince Petit espace + + + Mince Épais Mince Moyen Écart + + + Mince Épais Mince Grand Espace + + + Tiret Point Stroke + + + Graver3D + + + Épais + + + Début + + + Gaufrage 3D + + + Mince Épais Grand espace + + + Fin Épais Moyen Écart + + + Texte normal + + + Date + + + Majuscule + + + Minuscule + + + Première capitale + + + Casse du titre + + + Déplacer de + + + Déménager à + + + pixels + + + Vous pouvez éditer dans cette région. + + +Saut de section (page suivante) + + +Saut de page + + +Saut de colonne + + +Une + + +Deux + + +Trois + + +Préconfigurations + + +Colonnes + + +Divisez votre texte en deux colonnes ou plus + + +Ligne entre colonne + + +Largeur et espacement + + +Largeur de colonne égale + + +Colonne + + +Saut de section (continu) + + + En raison de la politique de sécurité du navigateur, le collage à partir du presse-papiers du système est limité. Sinon, utilisez le raccourci clavier + + + Ne plus afficher + + +Colonnes + + +Afficher les caractères cachés comme les espaces, les tabulations, les marques de paragraphe et les sauts.(Ctrl + *) + + + Régulier + + + Gras italique + + + Nouveau + + + Ouvert + + + annuler + + + Refaire + + + Image + + + Table + + + Lien + + + Signet + + + Table des matières + + + Titre - - - - 1 + + + Titre - - - - 2 + + + Titre - - - - 3 + + + Entête + + + Bas de page + + + Mise en page + + + Numéro de page + + + Pause + + + Trouver + + + Rubriques + + + Presse-papiers local + + + Restreindre l'édition + + + Télécharger d'un ordinateur + + + Par URL + + + En-tête et pied de page + + + Les options + + + Les niveaux + + + Première page différente + + + En-tête et pied de page différents pour les pages paires et impaires. + + + Pages paires et impaires différentes + + + Lien vers le précédent + + + En-tête et pied de page différents pour la première page. + + + Position + + + En-tête du haut + + + Pied de page du bas + + + Distance du haut de la page au haut de l'en-tête. + + + Distance du bas de la page au bas du pied de page. + + + Ratio d'aspect + + + W + + + H + + + Largeur + + + la taille + + + Texte alternatif + + + Texte + + + Paragraphe + + + Remplir + + + La couleur de remplissage + + + Style de bordure + + + Hors frontières + + + Toutes les frontières + + + Frontières intérieures + + + Bordure gauche + + + Bordure verticale intérieure + + + Bordure droite + + + Bordure supérieure + + + Bordure horizontale intérieure + + + Bordure inférieure + + + Couleur de la bordure + + + Largeur de la bordure + + + Cellule + + + Fusionner des cellules + + + Insérer / supprimer + + + Insérer des colonnes à gauche + + + Insérer des colonnes à droite + + + Insérer des lignes au-dessus + + + Insérer des lignes ci-dessous + + + Supprimer des lignes + + + Supprimer des colonnes + + + Marge cellulaire + + + Haut + + + Bas + + + La gauche + + + Droite + + + Aligner le texte + + + Aligner le haut + + + Aligner en bas + + + Aligner le centre + + + Nombre de niveaux de titre ou de plan à afficher dans la table des matières. + + + Afficher les numéros de page + + + Afficher les numéros de page dans la table des matières. + + + Aligner à droite les numéros de page. + + + Alignez à droite les numéros de page dans la table des matières. + + + Utilisez des hyperliens + + + Utilisez des hyperliens au lieu des numéros de page. + + + Police de caractère + + + Taille de police + + + Couleur de la police + + + Couleur de surbrillance du texte + + + Effacer toute mise en forme + + + Gras (Ctrl + B) + + + Italique (Ctrl + I) + + + Souligné (Ctrl + U) + + + Barré + + + Exposant (Ctrl + Shift ++) + + + Indice (Ctrl + =) + + + Aligner à gauche (Ctrl + L) + + + Centre (Ctrl + E) + + + Aligner à droite (Ctrl + R) + + + Justifier (Ctrl + J) + + + Diminuer le retrait + + + Augmenter le retrait + + + Interligne + + + Balles + + + Numérotage + + + modes + + + Gérer les styles + + + Page + + + de + + + Ajuster une page + + + Vérification orthographique + + + Souligner les erreurs + + + Ajuster la largeur de la page + + + Mise à jour + + + Annuler + + + Insérer + + + Pas de frontière + + + Créez un nouveau document. + + + Ouvrez un document. + + + Annule la dernière opération (Ctrl + Z). + + + Refait la dernière opération (Ctrl + Y). + + + Insérez une image en ligne à partir d'un fichier. + + + Insérer un tableau dans le document. + + + Créez un lien dans votre document pour un accès rapide aux pages Web et aux fichiers (Ctrl + K). + + + Insérez un signet à un endroit spécifique de ce document. + + + Donnez un aperçu de votre document en ajoutant une table des matières. + + + Ajoutez ou modifiez l'en-tête. + + + Ajoutez ou modifiez le pied de page. + + + Ouvrez la boîte de dialogue de mise en page. + + + Ajoutez des numéros de page. + + + Recherchez du texte dans le document (Ctrl + F). + + + Numéro de page actuel dans le document. Cliquez ou appuyez sur pour parcourir une page spécifique. + + + Lecture seulement + + + Protections + + + Erreur lors de l'établissement de la connexion avec le serveur Web + + + Célibataire + + + Double + + + Nouveau commentaire + + + commentaires + + + Disposition d'impression + + + mise en page Web + + + Basculez entre le presse-papiers interne et le presse-papiers système. L'accès au presse-papiers système via un script est refusé en raison de la politique de sécurité des navigateurs. Au lieu de cela, +1. Vous pouvez activer le presse-papiers interne pour couper, copier et coller dans le composant. +2. Vous pouvez utiliser les raccourcis clavier (Ctrl + X, Ctrl + C et Ctrl + V) pour couper , copiez et collez avec le presse-papiers du système. + + + Formulaire texte + + + Case à cocher + + + Menu déroulant + + + Champs de mise à jour + + + Mettre à jour les champs de référence croisée. + + + Gardez une trace des modifications apportées au document. + + + Suivi des modifications + + + Le niveau de zoom + + + Insérer une note de bas de page (Alt + Ctrl + F). + + + Insérer une note de fin (Alt + Ctrl + D). + + + Insérer des commentaires + + + Champs de formulaire + + + Information + + + Toutes en majuscules + + + Insérer + + + Insérer + + + Remplir des formulaires + + + Modifications suivies + + + Si vous apportez cette modification à la protection du document, Word ignorera toutes les exceptions dans ce document. + + + Vous pouvez effectuer des modifications dans cette région, mais toutes les modifications seront suivies + + + Le format de fichier que vous avez sélectionné n'est pas pris en charge. Veuillez choisir un format valide. + + + Un problème est survenu lors de l'ouverture de ce document + + + Voulez-vous supprimer les exceptions ignorées ? + + + Oui + + + Non + + + Afficher le volet des propriétés + + + Masquer le volet des propriétés + + + Continu + + + Colonne + + + Page + + + Page suivante + + + Sauts de page + + + Sauts de section + + + L'adresse de ce site n'est pas valide. Vérifie l'adresse et essaye de nouveau. + + + D'ACCORD + + + Changer de cas + + + MAJUSCULE + + + Minuscule + + + Cas de peine + + + Mettre chaque mot en majuscule + + + Basculer le cas + + + Choisissez l'autre tâche + + + Sélectionnez la position du connecteur + + + La gauche + + + Droite + + + Exporter l'annotation vers un fichier XFDF + + + Importer des annotations à partir d'un fichier XFDF + + + Informations + + + Ligne empilée + + + 100% Ligne empilée + + + Aucune + + + Chargement... + + + D'accord + + + Annuler + + + Ne pas afficher les sous-totaux + + + Afficher uniquement les colonnes de sous-totaux + + + Afficher uniquement les lignes de sous-totaux + + + Afficher les sous-totaux + + + Position des sous-totaux + + + Seul + + + Auto + + + Téléavertisseur de ligne + + + Lignes par page + + + Téléavertisseur de colonne + + + Colonnes par page + + + Aller à la première page + + + Aller à la dernière page + + + Aller à la page suivant + + + Aller à la page précédente + + + Choisissez un horaire + + + Filtres temporels + + + Identique au précédent + + + Section + + + En-tête de page impaire + + + Pied de page impair + + + En-tête de page pair + + + Pied de page pair + + + En-tête de la première page + + + Pied de page de la première page + + + et + + + Titre + + + Description + + + Texte alternatif + + + D'accord + + + Fichier non supporté + + + Le fichier supprimé n'est pas pris en charge. + + + Déposez votre image ici ou + + +Position d'arrêt de tabulation + + +Taquets de tabulation par défaut + + +Les taquets de tabulation doivent être effacés + + +Onglets + + +Ensemble + + +Clair + + +Tout effacer + + +Décimal + + +Bar + + +Alignement + + +Chef + + +Tous + + +Marge inférieure + + +Retrait de première ligne + + +Retrait suspendu + + +Retrait gauche + + +Marge de gauche + + +Déplacer la colonne du tableau + + +Retrait à droite + + +Marge droite + + +Marge supérieure + + +Onglet gauche + + +Onglet Centre + + +Onglet droit + + +Onglet décimal + + +Onglet barre + + + Appliquer + + + Annotation + + + Jeter + + + Est nul + + + Est non nulle + + + Redresser + + + Combiné + + + Ne commence pas par + + + Ne se termine pas par + + + Groupe de verrouillage + + + Déverrouiller le groupe + + + Règle de verrouillage + + + Règle de déverrouillage + + + Groupe de clones + + + Règle de clonage + + + Enregistrer sous + + + Fermer + + + Télécharger + + + Taille de l'image: + + + Douane + + + Bien + + + Super + + + Le plus élevé + + + Qualité + + + L'option de qualité d'image n'est disponible que pour le format JPEG + + + Nom de l'image + + + Format + + + Ordre Z + + + Mettre au premier plan + + + Avancer + + + Envoyer au fond + + + Envoyer vers l'arrière + + + Couleur du contour + + + Rédiger + + + Pixeliser + + + Taille des pixels + + + Couleurs récentes + + + et + + + Arrêtez de répondre + + + {0}, {1} et {2} autres personnes sont en train d'écrire + + + {0} est en train d'écrire + + + {0} et {1} sont en train d'écrire + + + {0}, {1} et {2} autres sont en train d'écrire + + + Code en ligne + + + La reconnaissance vocale a été interrompue. + + + Aucun microphone détecté. Assurez-vous que votre microphone est connecté. + + + Une erreur inconnue s'est produite. + + + Erreur réseau survenue. Vérifiez votre connexion Internet. + + + Aucune parole détectée. Veuillez parler dans le microphone. + + + Accès au microphone refusé. Autorisez les permissions du microphone. + + + Le service de reconnaissance vocale n'est pas autorisé dans ce contexte. + + + Le navigateur ne prend pas en charge l'API SpeechRecognition. + + + Appuyez pour commencer à parler et transcrire vos mots + + + Appuyez pour arrêter de parler et mettre fin à la transcription + + + Commencer l'écoute + + + Arrêter l'écoute + + + Solide + + + En pointillés + + + Pointé + + \ No newline at end of file diff --git a/KB-Samples/LargeDiagram/Resources/SfResources.resx b/KB-Samples/LargeDiagram/Resources/SfResources.resx new file mode 100644 index 00000000..c15c1789 --- /dev/null +++ b/KB-Samples/LargeDiagram/Resources/SfResources.resx @@ -0,0 +1,5001 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + text/microsoft-resx + + + 2.0 + + + System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + Request failed + + + No records found + + + Today + + + Request failed + + + No records found + + + Choose a date + + + Today + + + Apply + + + Cancel + + + Custom Range + + + Days + + + End Date + + + Choose a date range + + + Selected Days + + + Start Date + + + Choose a date and time + + + Today + + + Request failed + + + No records found + + + Request failed + + + No records found + + + +${count} more.. + + + Select All + + + ${count} selected + + + Unselect All + + + Decrement value + + + Increment value + + + Choose a time + + + Abort + + + Browse... + + + Cancel + + + Clear + + + Delete file + + + Or drop files here + + + File upload canceled + + + Uploading + + + File type is not allowed + + + File size is too large + + + File size is too small + + + Pause + + + File upload paused + + + Ready to upload + + + Remove + + + Unable to remove file + + + File removed successfully + + + Resume + + + Retry + + + Upload + + + File failed to upload + + + File uploaded successfully + + + Count + + + Daily + + + Day(s) + + + End + + + every + + + First + + + Fourth + + + Last + + + Month + + + Month Expander + + + Monthly + + + Month Position + + + Month(s) + + + Month Week + + + Never + + + None + + + On + + + Day + + + Repeat + + + Repeat every + + + Repeat Interval + + + Second + + + day(s) + + + month(s) + + + on + + + Repeats + + + time(s) + + + until + + + week(s) + + + year(s) + + + Third + + + Until + + + Weekly + + + Week(s) + + + Year Expander + + + Yearly + + + Year(s) + + + Add title + + + Agenda + + + Alert + + + All day + + + Begin From + + + Events cannot be scheduled within the blocked time range. + + + Cancel + + + Cancel + + + Close + + + The duration of the event must be shorter than how frequently it occurs. Shorten the duration, or change the recurrence pattern in the recurrence event editor. + + + Create + + + Day + + + Delete + + + Delete + + + Are you sure you want to delete this event? + + + Delete Event + + + Are you sure you want to delete the selected events? + + + Delete Multiple Events + + + Entire Series + + + Delete Event + + + Description + + + Edit + + + How would you like to change the appointment in the series? + + + Edit Event + + + Following Events + + + Edit Recurrence + + + Entire Series + + + Edit Event + + + There are no events scheduled on this day. + + + End + + + End Time + + + Ends At + + + End Time zone + + + The entered date value is invalid. + + + Location + + + Month + + + Month Agenda + + + more + + + More Details + + + New Event + + + Next + + + No + + + No events + + + No Records + + + (No Title) + + + Occurrence + + + Ok + + + Previous + + + Recurrence + + + Repeat + + + Repeats + + + Two occurrences of the same event cannot occur on the same day. + + + Save + + + Save + + + Items selected + + + Search Time zone + + + Series + + + Do you want to cancel the changes made to specific instances of this series and match it to the whole series again? + + + Start + + + Start Time + + + The selected end date occurs before the start date. + + + Start Time zone + + + Subject + + + Timeline Day + + + Timeline Month + + + Timeline Week + + + Timeline Work Week + + + Timeline Year + + + Time zone + + + Title + + + Today + + + Week + + + Week Agenda + + + Work Week + + + Work Week Agenda + + + The recurrence pattern is not valid. + + + Yes + + + Decrease + + + Increase + + + Close + + + Table + + + Row + + + Cell + + + OK + + + Cancel + + + Size + + + Preferred width + + + Points + + + Percent + + + Measure in + + + Alignment + + + Left + + + Center + + + Right + + + Justify + + + Indent from left + + + Borders and Shading + + + Options + + + Specify height + + + At least + + + Exactly + + + Row height is + + + Allow row to break across pages + + + Repeat as header row at the top of each page + + + Vertical alignment + + + Top + + + Bottom + + + Default cell margins + + + Default cell spacing + + + Allow spacing between cells + + + Cell margins + + + Same as the whole table + + + Borders + + + None + + + Style + + + Width + + + Height + + + Letter + + + Tabloid + + + Legal + + + Statement + + + Executive + + + A3 + + + A4 + + + A5 + + + B4 + + + B5 + + + Custom size + + + Different odd and even + + + Different first page + + + From edge + + + Header + + + Footer + + + Margins + + + Paper + + + Layout + + + Orientation + + + Landscape + + + Portrait + + + Show page numbers + + + Right align page numbers + + + Nothing + + + Tab leader + + + Show levels + + + Use hyperlinks instead of page numbers + + + Build table of contents from + + + Styles + + + Available styles + + + TOC level + + + Heading + + + Heading 1 + + + Heading 2 + + + Heading 3 + + + Heading 4 + + + Heading 5 + + + Heading 6 + + + List Paragraph + + + Normal + + + Outline levels + + + Table entry fields + + + Modify + + + Color + + + Setting + + + Box + + + All + + + Custom + + + Preview + + + Shading + + + Fill + + + Apply to + + + Table Properties + + + Cell Options + + + Table Options + + + Insert Table + + + Number of columns + + + Number of rows + + + Text to display + + + Address + + + Insert Hyperlink + + + Edit Hyperlink + + + Insert + + + General + + + Indentation + + + Before text + + + Special + + + First line + + + Hanging + + + After text + + + By + + + Before + + + Line spacing + + + After + + + At + + + Multiple + + + Spacing + + + Define new Multilevel list + + + List level + + + Choose level to modify + + + Level + + + Number format + + + Number style for this level + + + Enter formatting for number + + + Start at + + + Restart list after + + + Position + + + Text indent at + + + Aligned at + + + Follow number with + + + Tab character + + + Space + + + Arabic + + + UpRoman + + + LowRoman + + + UpLetter + + + LowLetter + + + Number + + + Leading zero + + + Bullet + + + Ordinal + + + Ordinal Text + + + For East + + + No Restart + + + Font + + + Font style + + + Underline style + + + Font color + + + Effects + + + Strikethrough + + + Superscript + + + Subscript + + + Double strikethrough + + + Regular + + + Bold + + + Italic + + + Cut + + + Copy + + + Paste + + + Hyperlink + + + Open Hyperlink + + + Copy Hyperlink + + + Remove Hyperlink + + + Paragraph + + + Linked(Paragraph and Character) + + + Character + + + Merge Cells + + + Insert Above + + + Insert Below + + + Insert Left + + + Insert Right + + + Delete + + + Delete Table + + + Delete Row + + + Delete Column + + + File Name + + + Format Type + + + Save + + + Navigation + + + Results + + + Replace + + + Replace All + + + We replaced all + + + Find + + + No matches + + + All Done + + + Result + + + of + + + instances + + + with + + + Click to follow link + + + Continue Numbering + + + Bookmark name + + + Close + + + Restart At + + + Properties + + + Name + + + Style type + + + Style based on + + + Style for following paragraph + + + Formatting + + + Numbering and Bullets + + + Numbering + + + Update Field + + + Edit Field + + + Bookmark + + + Page Setup + + + No bookmarks found + + + Format + + + Create New Style + + + Modify Style + + + New + + + Bullets + + + Use bookmarks + + + Table of Contents + + + AutoFit + + + AutoFit to Contents + + + AutoFit to Window + + + Fixed Column Width + + + Reset + + + Match case + + + Whole words + + + Add + + + Go To + + + Search for + + + Replace with + + + TOC 1 + + + TOC 2 + + + TOC 3 + + + TOC 4 + + + TOC 5 + + + TOC 6 + + + TOC 7 + + + TOC 8 + + + TOC 9 + + + Right-to-left + + + Left-to-right + + + Direction + + + Table direction + + + Indent from right + + + Don't add space between the paragraphs of the same styles + + + The password don't match + + + Restrict Editing + + + Formatting restrictions + + + Allow formatting + + + Editing restrictions + + + Read only + + + Exceptions (optional) + + + Select parts of the document and choose users who are allowed to freely edit them. + + + Everyone + + + More users + + + Add Users + + + Yes, Start Enforcing Protection + + + Start Enforcing Protection + + + Enter User + + + Users + + + Enter new password + + + Reenter new password to confirm + + + Your permissions + + + This document is protected from unintentional editing.You may edit in this region. + + + You may format text only with certain styles. + + + Stop Protection + + + Password + + + Spelling Editor + + + Spelling + + + Spell Check + + + Underline errors + + + Ignore + + + Ignore All + + + Add to Dictionary + + + Change + + + Change All + + + Suggestions + + + The password is incorrect + + + Error in establishing connection with web server + + + Highlight the regions I can edit + + + Show All Regions I Can Edit + + + Find Next Region I Can Edit + + + Keep source formatting + + + Match destination formatting + + + Text only + + + Comments + + + Type your comment + + + Post + + + Reply + + + New Comment + + + Edit + + + Resolve + + + Reopen + + + No comments in this document + + + more + + + Type your comment here + + + Next Comment + + + Previous Comment + + + Un-posted comments + + + Added comments not posted. If you continue, that comment will be discarded. + + + No Heading Found! + + + This document has no headings. Please add headings and try again. + + + More Options + + + Click to see this comment + + + Drop Down Form Field + + + Drop-down items + + + Items in drop-down list + + + ADD + + + REMOVE + + + Field settings + + + Tooltip + + + Drop-down enabled + + + Check Box Form Field + + + Check box size + + + Auto + + + Default value + + + Not checked + + + Checked + + + Check box enabled + + + Text Form Field + + + Type + + + Default text + + + Maximum length + + + Text format + + + Fill-in enabled + + + Default number + + + Default date + + + Date format + + + This action wont be marked as change. Do you want to continue? + + + Cannot be tracked + + + Accept + + + Reject + + + Previous Changes + + + Next Changes + + + Inserted + + + Deleted + + + Changes + + + Accept all + + + Reject all + + + No Changes + + + Accept Changes + + + Reject Changes + + + User + + + View + + + Unprotect Document + + + This document is protected from unintentional editing. You may only fill in forms in this region. + + + Indents and Spacing + + + Line and Page Breaks + + + Pagination + + + Widow/Orphan control + + + Keep with next + + + Keep lines together + + + New + + + Open + + + Undo + + + Redo + + + Image + + + Table + + + Link + + + Bookmark + + + Table of Contents + + + HEADING - - - - 1 + + + HEADING - - - - 2 + + + HEADING - - - - 3 + + + Header + + + Footer + + + Page Setup + + + Page Number + + + Break + + + Find + + + Local Clipboard + + + Restrict Editing + + + Upload from computer + + + By URL + + + Page Break + + + Section Break + + + Header and Footer + + + Options + + + Levels + + + Different First Page + + + Different header and footer for odd and even pages. + + + Different Odd and Even Pages + + + Different header and footer for first page. + + + Position + + + Header from Top + + + Footer from Bottom + + + Distance from top of the page to top of the header. + + + Distance from bottom of the page to bottom of the footer. + + + Aspect ratio + + + W + + + H + + + Width + + + Height + + + Text + + + Paragraph + + + Fill + + + Fill color + + + Border Style + + + Outside borders + + + All borders + + + Inside borders + + + Left border + + + Inside vertical border + + + Right border + + + Top border + + + Inside horizontal border + + + Bottom border + + + Border color + + + Border width + + + Cell + + + Merge cells + + + Insert / Delete + + + Insert columns to the left + + + Insert columns to the right + + + Insert rows above + + + Insert rows below + + + Delete rows + + + Delete columns + + + Cell Margin + + + Top + + + Bottom + + + Left + + + Right + + + Align Text + + + Align top + + + Align bottom + + + Align center + + + Number of heading or outline levels to be shown in table of contents. + + + Show page numbers + + + Show page numbers in table of contents. + + + Right align page numbers + + + Right align page numbers in table of contents. + + + Use hyperlinks + + + Use hyperlinks instead of page numbers. + + + Font + + + Font Size + + + Font color + + + Text highlight color + + + Clear all formatting + + + Bold (Ctrl+B) + + + Italic (Ctrl+I) + + + Underline (Ctrl+U) + + + Strikethrough + + + Superscript (Ctrl+Shift++) + + + Subscript (Ctrl+=) + + + Align left (Ctrl+L) + + + Center (Ctrl+E) + + + Align right (Ctrl+R) + + + Justify (Ctrl+J) + + + Decrease indent + + + Increase indent + + + Line spacing + + + Bullets + + + Numbering + + + Styles + + + Manage Styles + + + Page + + + of + + + Fit one page + + + Spell Check + + + Underline errors + + + Fit page width + + + Update + + + Cancel + + + Insert + + + No Border + + + Create a new document. + + + Open a document. + + + Undo the last operation (Ctrl+Z). + + + Redo the last operation (Ctrl+Y). + + + Insert inline picture from a file. + + + Insert a table into the document + + + Create a link in your document for quick access to web pages and files (Ctrl+K). + + + Insert a bookmark in a specific place in this document. + + + Provide an overview of your document by adding a table of contents. + + + Add or edit the header. + + + Add or edit the footer. + + + Open the page setup dialog. + + + Add page numbers. + + + Find text in the document (Ctrl+F). + + + The current page number in the document. Click or tap to navigate specific page. + + + Read only + + + Protections + + + Error in establishing connection with web server + + + Single + + + Double + + + New comment + + + Comments + + + Print layout + + + Web layout + + + Toggle between the internal clipboard and system clipboard. Access to system clipboard through script is denied due to browsers security policy. Instead, 1. You can enable internal clipboard to cut, copy and paste within the component. 2. You can use the keyboard shortcuts (Ctrl+X, Ctrl+C and Ctrl+V) to cut, copy and paste with system clipboard. + + + Text Form + + + Check Box + + + Drop-Down + + + Update Fields + + + Update cross reference fields + + + Keep track of the changes made in the document + + + Track Changes + + + Zoom Level + + + Insert Footnote (Alt+Ctrl+F). + + + Insert Endnote (Alt+Ctrl+D). + + + Insert Comments + + + Form Fields + + + Information + + + AllCaps + + + Insert Footnote + + + Insert Endnote + + + Add Condition + + + Add to Column + + + Add to Filter + + + Add to Row + + + Add to Value + + + After + + + After Or Equal To + + + Aggregate + + + Alert + + + All + + + All Fields + + + All Values + + + and + + + Apply + + + Area + + + Ascending + + + Avg + + + Bar + + + Base field + + + Base item + + + Before + + + Before Or Equal To + + + Begins With + + + Between + + + (Blank) + + + by + + + Calculated Field + + + A calculation field already exists in this name. Do you want to replace it? + + + Drag and drop fields to formula + + + Drag field to formula + + + Calculated field cannot be place in any other region except value axis. + + + Example: ('Sum(Order_Count)' + 'Sum(In_Stock)') * 250 + + + A field already exists in this name. Please enter a different name. + + + Add fields and edit formula here. + + + Enter the field name + + + Example: [Measures].[Order Quantity] + ([Measures].[Order Quantity] * 0.10) + + + Drag and drop fields to create an expression. And, if you want to edit the existing the calculated fields! Then you can achieve it by simply selecting the field under 'Calculated Members'. + + + Cancel + + + Chart + + + Clear + + + Clear + + + Close + + + Collapse + + + Column + + + Drop column here + + + Columns + + + Conditional Formatting + + + Conditional formatting + + + Contains + + + Copy + + + Count + + + Create Calculated Field + + + CSV + + + Currency + + + Currency Symbol + + + Custom + + + Custom Format + + + Enter custom format string + + + Date + + + Show the items for which the date + + + Days + + + Decimal Places + + + Delete + + + Delete a current report + + + Descending + + + Details + + + Difference From + + + Dimension + + + Distinct Count + + + Does Not Begin With + + + Does Not Contain + + + Does Not End With + + + Does Not Equal + + + Do not show grand totals + + + Do not show sub totals + + + Drag + + + Drill Through + + + Cannot show the raw items of calculated fields. + + + Edit + + + No records to display + + + No reports found!! + + + Ending at + + + Ends With + + + Enter date + + + Enter a report name + + + Enter value + + + Equals + + + Error + + + e.g: + + + Excel + + + Expand + + + Export + + + Expression + + + False + + + Field Caption + + + Field caption + + + The field you are moving cannot be placed in that area of the report + + + Field Name + + + Field name : + + + Field Type + + + Filter + + + Drop filter here + + + Filtered + + + Filters + + + Format + + + Format String + + + Format Type + + + Formula + + + Grand Total + + + Grand totals + + + Greater Than + + + Greater Than Or Equal To + + + Group + + + Enter the caption to display in header + + + Enter the caption for group field + + + Grouping + + + Group name + + + Hours + + + Index + + + Interval by + + + Invalid Format. + + + Invalid formula. + + + Cannot group that selection. + + + JPEG + + + Label + + + Show the items for which the label + + + Left + + + Less Than + + + Less Than Or Equal To + + + Line + + + Load + + + Manage Records + + + Max + + + MDX Query + + + Measure + + + Member + + + more items. Search to refine further. + + + Min + + + Minutes + + + Months + + + More... + + + Multiple items + + + Create a new report + + + Want to save changes to report? + + + No format found!!! + + + Enter a value + + + No matches + + + Not Between + + + Not Equals + + + No value + + + null + + + Number + + + Number Formatting + + + of + + + OK + + + Out of Range + + + Parent Hierarchy + + + PDF + + + Percent + + + Percentage + + + % of Column Total + + + % of Difference From + + + % of Grand Total + + + % of Parent Column Total + + + % of Parent Row Total + + + % of Parent Total + + + % of Row Total + + + PNG + + + Polar + + + Population StDev + + + Population Var + + + Product + + + Qtr + + + Quarters + + + Quarter Year + + + Remove + + + Are you sure want to delete this report? + + + Rename a current report + + + Report list + + + Report Name : + + + Right + + + Row + + + Drop row here + + + Rows + + + Running Totals + + + Sample report + + + Sample StDev + + + Sample Var + + + Save as current report + + + Save a report + + + Scatter + + + Search + + + Seconds + + + Selected items + + + Select groups + + + Show grand totals columns only + + + Show sub totals columns only + + + Show field list + + + Show grand totals + + + Show grand totals rows only + + + Show sub totals rows only + + + Show sub totals + + + Show table + + + Sort + + + Standard + + + Starting at + + + Sub totals + + + Sum + + + Summaries values by + + + Summarize values by + + + SVG + + + Symbol Position + + + Total + + + True + + + undefined + + + Ungroup + + + Please enter vaild report name!!! + + + Value + + + Drop value here + + + Value field settings + + + Values + + + Show the items for which + + + Warning + + + Years + + + Multiple Axis + + + Chart Type Settings + + + Chart Type + + + Yes + + + No + + + Number Formatting... + + + Conditional Formatting... + + + Are you sure you want to delete this calculated field? + + + Stacked Area + + + Stacked Column + + + Stacked Bar + + + Step Line + + + Step Area + + + Spline Area + + + Spline + + + 100% Stacked Column + + + 100% Stacked Bar + + + 100% Stacked Area + + + Bubble + + + Pareto + + + Radar + + + Edit calculated field + + + Clear edited field info + + + Example: C, P, 0000 %, ###0.##0#, etc. + + + Show Legend + + + Enter the field caption + + + Sort data order + + + Sort ascending order + + + Sort descending order + + + A report named + + + already exists. Do you want to replace it? + + + Pivot Field List + + + Field List + + + Add field here + + + Choose field + + + Drag fields between axes below: + + + Add + + + Defer Layout Update + + + Pie + + + Pyramid + + + Doughnut + + + Funnel + + + Stacked + + + Grouped + + + Multiple Axis Mode + + + Median + + + Pan + + + Reset + + + Zoom + + + Zoom in + + + Zoom out + + + Pan + + + Reset + + + Zoom + + + Zoom in + + + Zoom out + + + Reset Zoom + + + Apply + + + Cancel + + + Switch Mode + + + Request failed + + + Move All From + + + Move All To + + + Move Down + + + Move From + + + Move To + + + Move Up + + + No records found + + + Select All + + + Unselect All + + + Add Condition + + + Add Group + + + AND + + + Between + + + Contains + + + Delete group + + + Remove this condition + + + EDIT + + + Empty + + + Ends With + + + Equal + + + Greater Than + + + Greater Than Or Equal + + + In + + + Less Than + + + Less Than Or Equal + + + Not Between + + + Not Contains + + + Not Empty + + + Not Equal + + + Not In + + + OR + + + Other Fields + + + REMOVE + + + Select a field + + + Select operator + + + Enter Value + + + Starts With + + + Summary View + + + This field is required + + + X + + + Y + + + W + + + H + + + Bring To Front + + + Copy + + + Cut + + + Group + + + Grouping + + + Move Forward + + + Order + + + Paste + + + Redo + + + Select All + + + Send Backward + + + Send To Back + + + Undo + + + Ungroup + + + Close + + + Close + + + Save + + + Cancel + + + Loading... + + + Click to edit + + + Click to edit + + + Double click to edit + + + items + + + item + + + No cards to display + + + Min + + + Max + + + Cards Selected + + + Add New Card + + + Edit Card Details + + + Delete Card + + + Are you sure you want to delete this card? + + + Save + + + Delete + + + Cancel + + + Yes + + + No + + + None + + + Number + + + Upper Alpha + + + Lower Alpha + + + Upper Roman + + + Lower Roman + + + Lower Greek + + + None + + + Circle + + + Square + + + Disc + + + Paragraph + + + Code + + + Quotation + + + Heading 1 + + + Heading 2 + + + Heading 3 + + + Heading 4 + + + Heading 5 + + + Heading 6 + + + Segoe UI + + + Arial + + + Georgia + + + Impact + + + Tahoma + + + Times New Roman + + + Verdana + + + Alignments + + + Align Left + + + Align Center + + + Align Right + + + Align Justify + + + Font Name + + + Font Size + + + Font Color + + + Background Color + + + Bold + + + Italic + + + Underline + + + Strikethrough + + + Clear Format + + + Clear All + + + Cut + + + Copy + + + Paste + + + Bulleted List + + + Numbered List + + + Increase Indent + + + Decrease Indent + + + Undo + + + Redo + + + Superscript + + + Subscript + + + Insert Hyperlink + + + Open Link + + + Edit Link + + + Remove Link + + + Insert Image + + + Replace + + + Align + + + Image Caption + + + Remove + + + Insert Link + + + Display + + + Alternative Text + + + Change Size + + + Maximize + + + Maximize + + + Minimize + + + Lower Case + + + Upper Case + + + Print + + + Formats + + + Code View + + + Preview + + + ViewSide + + + Insert Code + + + Display Text + + + Title + + + Web Address + + + Enter a title + + + http://example.com + + + Open Link in New Window + + + Insert Link + + + Insert + + + Cancel + + + Update + + + Insert Image + + + You can also provide a link from the web + + + Please provide a URL for your image + + + Drop image here or browse to upload + + + Click here to upload + + + Alternate Text + + + Alternative Text + + + Browse + + + http://example.com/image.png + + + Caption + + + Image Size + + + Height + + + Width + + + Enter Text + + + Insert Table + + + Insert Table + + + Width + + + Cell Padding + + + Cell Spacing + + + Number of columns + + + Number of rows + + + Table Rows + + + Table Columns + + + Table Cell Horizontal Align + + + Table Cell Vertical Align + + + Create Table + + + Remove Table + + + Table Header + + + Table Remove + + + Table Cell Background + + + Table Edit Properties + + + Styles + + + Insert Column Left + + + Insert Column Right + + + Delete Column + + + Insert Row Before + + + Insert Row After + + + Delete Row + + + Edit Table + + + Heading + + + Col + + + Insert Link + + + Edit Image + + + Align Left + + + Align Center + + + Align Right + + + Align Justify + + + Inline + + + Break + + + Insert row before + + + Insert row after + + + Delete row + + + Insert column left + + + Insert column right + + + Delete column + + + Align Top + + + Align Middle + + + Align Bottom + + + Dashed Borders + + + Alternate Rows + + + Paste Options + + + Choose the formatting action + + + Plain Text + + + Clean Format + + + Keep Format + + + OK + + + Cancel + + + PDF Viewer + + + Cancel + + + Download File + + + Download + + + This document is password protected. Please enter a password. + + + File Corrupted + + + The file is corrupted and cannot be opened. + + + Fit Page + + + Fit Width + + + Automatic + + + Show first page + + + Incorrect Password. Please try again. + + + Show next page + + + Show previous page + + + OK + + + Open file + + + Current page number + + + Show last page + + + Zoom + + + Zoom In + + + Zoom Out + + + Page thumbnails + + + Bookmarks + + + Print File + + + Password Required + + + Copy + + + Text selection tool + + + Pan Mode + + + Find text + + + Find in document + + + Match case + + + Apply + + + Go To Page + + + Viewer has finished searching the document. No more matches were found + + + No Text Found + + + Undo + + + Redo + + + Add or Edit annotations + + + Highlight Text + + + Underline Text + + + Strikethrough Text + + + Delete annotation + + + Opacity + + + Change Color + + + Change Opacity + + + Highlight + + + Underline + + + Strike through + + + Web-service is not listening. PDF Viewer depends on web-service for all its features. Please start the web service to continue. + + + Client-side error is found. Please check the custom headers provided in the AjaxRequestSettings property and web action methods in the ServerActionSettings property. + + + Open + + + First Page + + + Previous Page + + + Next Page + + + Last Page + + + Zoom In + + + Zoom Out + + + Selection + + + Pan + + + Print + + + Search + + + Edit Annotation + + + Line Thickness + + + Line Properties + + + Start Arrow + + + End Arrow + + + Line Style + + + Fill Color + + + Line Color + + + None + + + Open Arrow + + + Closed Arrow + + + Round Arrow + + + Square Arrow + + + Diamond Arrow + + + Cut + + + Paste + + + Delete + + + Properties + + + Add Stamp + + + Add Shapes + + + Change Stroke Color + + + Change Border Thickness + + + Add Line + + + Add Arrow + + + Add Rectangle + + + Add Circle + + + Add Polygon + + + Add Comments + + + Comments + + + No Comments Yet + + + Accepted + + + Completed + + + Cancelled + + + Rejected + + + Leader Length + + + Scale Ratio + + + Calibrate + + + Calibrate Distance + + + Calibrate Perimeter + + + Calibrate Area + + + Calibrate Radius + + + Calibrate Volume + + + Depth + + + Closed + + + Round + + + Square + + + Diamond + + + Edit + + + Comment + + + Comment Panel + + + Set Status + + + Post + + + Page + + + Add a Comment + + + Add a Reply + + + Import Annotations + + + Export Annotations + + + Add + + + Clear + + + Bold + + + Italic + + + Strikethroughs + + + Underlines + + + Superscript + + + Subscript + + + Align Left + + + Align Right + + + Center + + + Justify + + + Font Color + + + Text Align + + + Font Style + + + Draw Signature + + + Create + + + Font Family + + + Font Size + + + Free Text + + + Invalid JSON file type or file name; please select a valid JSON file + + + Imported JSON file is not found in the desired location + + + Export annotations action has failed; please ensure annotations are added properly + + + DRAW + + + TYPE + + + UPLOAD + + + BROWSE + + + Save Signature + + + Enter your name + + + Dynamic + + + Standard Business + + + Custom Stamp + + + Revised + + + Reviewed + + + Received + + + Approved + + + Confidential + + + Not Approved + + + Witness + + + Initial Here + + + Sign Here + + + Draft + + + Final + + + For Public Release + + + Not For Public Release + + + For Comment + + + Void + + + Preliminary Results + + + Information Only + + + Submit Form + + + This PDF Viewer requires Server-side processing to render the PDF files through the web service. You must configure the ServiceURL to proceed with PDF Viewer. + + + New folder + + + Upload + + + Delete + + + Rename + + + Download + + + Cut + + + Copy + + + Paste + + + Sort by + + + Refresh + + + item selected + + + items selected + + + View + + + Details + + + Select all + + + Open + + + New folder + + + Upload + + + Delete + + + Rename + + + Download + + + Cut + + + Copy + + + Paste + + + Sort by + + + Refresh + + + Clear selection + + + View + + + Details + + + Select all + + + Name + + + Size + + + Modified + + + Date created + + + Path + + + Modified + + + Created + + + Location + + + Type + + + Permission + + + Ascending + + + Descending + + + None + + + Large icons + + + Details + + + Search + + + OK + + + Cancel + + + Yes + + + No + + + Create + + + Save + + + Folder + + + Enter your folder name + + + Rename + + + Enter your new name + + + Rename Confirmation + + + If you change a file name extension, the file might become unstable. Are you sure you want to change it? + + + Delete File + + + Are you sure you want to delete this file? + + + Delete Folder + + + Are you sure you want to delete this folder? + + + Delete Multiple Items + + + Are you sure you want to delete these {0} items? + + + File/Folder exists + + + {0} already exists. Do you want to rename and paste? + + + Upload Files + + + Error + + + The file or folder name cannot be empty. + + + The file or folder name {0} contains invalid characters. Please use a different name. Valid file or folder names cannot end with a dot or space. + + + A file or folder with the name {0} already exists. + + + Cannot rename {0} to {1}: destination already exists. + + + This folder is empty + + + Drag files here to upload + + + No results found + + + Try with different keywords + + + No results found + + + Try with different filter + + + The destination folder is the subfolder of the source folder. + + + Access Denied + + + You don't have permission to access this folder. + + + File Already Exists + + + A file with this name already exists in this folder. What would you like to do? + + + Keep both + + + Replace + + + Skip + + + Do this for all current items + + + KB + + + {0} is not accessible. you need permission to perform the {1} action. + + + NetworkError: Failed to send on XMLHTTPRequest: Failed to load + + + ServerError: Invalid response from + + + Above + + + Add + + + New Task + + + Baseline End Date + + + Baseline Start Date + + + Below + + + Cancel + + + Child + + + Collapse All + + + Are you sure you want to Delete Record? + + + Are you sure you want to remove dependency link? + + + Indent + + + Outdent + + + Convert + + + CSV Export + + + Custom Columns + + + day + + + days + + + Delete + + + Delete Dependency + + + Delete Task + + + Dependency + + + Duration + + + Edit + + + Task Information + + + No records to display + + + End Date + + + Enter the value + + + Event markers + + + Excel Export + + + Expand All + + + Finish + + + From + + + General + + + hour + + + hours + + + ID + + + Lag + + + Left task label + + + Milestone + + + minute + + + minutes + + + Name + + + Next Timespan + + + Notes + + + Offset + + + Ok + + + Previous Timespan + + + Progress + + + Resource ID + + + Resources + + + Right task label + + + Save + + + Save + + + Search + + + Start + + + Start Date + + + task + + + You moved '{0}' to finish after '{1}' finishes and the two tasks are linked. As the result, the links cannot be honored. Select one action below to perform + + + You moved '{0}' away from '{1}' and the two tasks are linked. As the result, the links cannot be honored. Select one action below to perform + + + You moved '{0}' to finish after '{1}'starts and the two tasks are linked. As the result, the links cannot be honored. Select one action below to perform + + + You moved '{0}' to start after '{1}' starts and the two tasks are linked. As the result, the links cannot be honored. Select one action below to perform + + + You moved '{0}' to finish before '{1}' finishes and the two tasks are linked. As the result, the links cannot be honored. Select one action below to perform + + + You moved '{0}' to start before '{1}' finishes and the two tasks are linked. As the result, the links cannot be honored. Select one action below to perform + + + You moved '{0}' away from '{1}' to starts and the two tasks are linked. As the result, the links cannot be honored. Select one action below to perform + + + You moved '{0}' to start before '{1}' starts and the two tasks are linked. As the result, the links cannot be honored. Select one action below to perform + + + Task Information + + + Task Link + + + tasks + + + Timeline cell + + + To + + + To Milestone + + + To Task + + + Type + + + Update + + + Write Notes + + + Zoom In + + + Zoom Out + + + Zoom To Fit + + + No records to display + + + true + + + false + + + Invalid Filter Data + + + Drag a column header here to group its column + + + Click here to ungroup + + + Grouping is disabled for this column + + + \'s filter bar cell + + + DataSource must not be empty at initial load since columns are generated from dataSource in AutoGenerate Column Grid + + + Add + + + Edit + + + Cancel + + + Update + + + Delete + + + Print + + + PDF Export + + + Excel Export + + + Word Export + + + CSV Export + + + Search + + + Columns + + + Save + + + item + + + items + + + No records selected for edit operation + + + No records selected for delete operation + + + Save + + + OK + + + Cancel + + + Details of + + + Add New Record + + + Are you sure you want to save changes? + + + Unsaved changes will be lost. Are you sure you want to continue? + + + Are you sure you want to Delete Record? + + + Are you sure you want to Cancel the changes? + + + Choose Column + + + search columns + + + No Matches Found + + + Filter + + + Clear + + + Starts With + + + Ends With + + + Contains + + + Equal + + + Not Equal + + + Less Than + + + Less Than Or Equal + + + Greater Than + + + Greater Than Or Equal + + + Choose a Date + + + Enter the value + + + Copy + + + Group by this column + + + Ungroup by this column + + + Autofit all columns + + + Autofit this column + + + Export + + + First Page + + + Last Page + + + Previous Page + + + Next Page + + + Sort Ascending + + + Sort Descending + + + Edit Record + + + Delete Record + + + Filter + + + Select All + + + Blanks + + + True + + + False + + + No Matches Found + + + Clear Filter + + + Number Filters + + + Text Filters + + + Date Filters + + + DateTime Filters + + + Match Case + + + Between + + + Custom Filter + + + Enter the value + + + Choose a date + + + AND + + + OR + + + Show rows where: + + + Filter menu dialog + + + Excel filter dialog + + + Edit dialog + + + Column chooser dialog + + + Column menu dialog + + + Customer filter dialog + + + {0} of {1} pages + + + ({0} items) + + + Go to first page + + + Go to last page + + + Go to next page + + + Go to previous page + + + Go to next pager + + + Go to previous pager + + + Items per page + + + Items + + + All + + \ No newline at end of file diff --git a/KB-Samples/LargeDiagram/Resources/SfResources.zh.resx b/KB-Samples/LargeDiagram/Resources/SfResources.zh.resx new file mode 100644 index 00000000..9258f769 --- /dev/null +++ b/KB-Samples/LargeDiagram/Resources/SfResources.zh.resx @@ -0,0 +1,6792 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + text/microsoft-resx + + + 2.0 + + + System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + 請求失敗 + + + 沒有找到記錄 + + + 今天 + + + 請求失敗 + + + 沒有找到記錄 + + + 選擇一個日期 + + + 今天 + + + 應用 + + + 取消 + + + 自訂範圍 + + + + + + 結束日期 + + + 選擇日期範圍 + + + 選定的日子 + + + 開始日期 + + + 選擇日期和時間 + + + 今天 + + + + + + + + + + + + 小时 + + + 分钟 + + + 第二 + + + 星期几 + + + 請求失敗 + + + 沒有找到記錄 + + + 沒有找到記錄 + + + 請求失敗 + + + 全選 + + + 全部取消選擇 + + + 沒有找到記錄 + + + 請求失敗 + + + 沒有找到記錄 + + + +${count}更多.. + + + 全選 + + + 已選擇${count}個 + + + 全部取消選擇 + + + 減量值 + + + 增量值 + + + 選擇一個時間 + + + 中止 + + + 瀏覽... + + + 取消 + + + 明確 + + + 刪除文件 + + + 或將文件放在此處 + + + 文件上傳已取消 + + + 上載中 + + + 不允許的文件類型 + + + 不允許的文件名 + + + 檔案太大 + + + 檔案太小 + + + 暫停 + + + 文件上傳已暫停 + + + 準備上傳 + + + 去掉 + + + 無法刪除文件 + + + 文件已成功刪除 + + + 恢復 + + + 重試 + + + 上載 + + + 文件上傳失敗 + + + 文件上傳成功 + + + 應用 + + + 取消 + + + 切換模式 + + + 切换格式 + + + 选色器 + + + 拆分按钮 + + + 請求失敗 + + + 全部移出 + + + 全部移至 + + + 下移 + + + + + + 搬去 + + + 提升 + + + 沒有找到記錄 + + + 全選 + + + 全部取消選擇 + + + 搜索列表项 + + + 添加條件 + + + 新增群組 + + + + + + 之間 + + + 包含 + + + 刪除群組 + + + 消除這種情況 + + + 編輯 + + + 空的 + + + 以。。結束 + + + 等於 + + + 比...更棒 + + + 大於等於 + + + + + + 少於 + + + 小於或等於 + + + 不介於 + + + 不包含 + + + 不是空的 + + + 不平等 + + + 不在 + + + 要么 + + + 其他領域 + + + 去掉 + + + 選擇一個領域 + + + 選擇運算符 + + + 輸入值 + + + 選擇值 + + + 選擇範圍 + + + 選擇日期 + + + 以。。開始 + + + 摘要視圖 + + + 這是必填欄 + + + 新建文件夾 + + + 上載 + + + 刪除 + + + 改名 + + + 下載 + + + + + + 複製 + + + + + + 排序方式 + + + 刷新 + + + 選擇的項目 + + + 選擇的項目 + + + 視圖 + + + 細節 + + + 全選 + + + 打開 + + + 新建文件夾 + + + 上載 + + + 刪除 + + + 改名 + + + 下載 + + + + + + 複製 + + + + + + 排序方式 + + + 刷新 + + + 清空選項 + + + 視圖 + + + 細節 + + + 全選 + + + 名稱 + + + 尺寸 + + + 改性 + + + 創建日期 + + + 路徑 + + + 改性 + + + 已建立 + + + 位置 + + + 類型 + + + 允許 + + + 上升 + + + 降序 + + + 没有 + + + 大圖標 + + + 細節 + + + 搜索 + + + + + + 取消 + + + + + + 沒有 + + + 創建 + + + 保存 + + + + + + 輸入您的文件夾名稱 + + + 改名 + + + 輸入你的新名字 + + + 重命名確認 + + + 如果更改文件擴展名,文件可能會變得不穩定。您確定要更改嗎? + + + 刪除文件 + + + 您確定要刪除此文件嗎? + + + 删除资料夹 + + + 您确定要删除此文件夹吗? + + + 删除多个项目 + + + 您确定要删除这{0}个项目吗? + + + 文件/文件夾存在 + + + {0}已經存在。您要重命名並粘貼嗎? + + + 上傳文件 + + + 錯誤 + + + 文件或文件夾名稱不能為空。 + + + 文件或文件夾名稱{0}包含無效字符。請使用其他名稱。有效的文件或文件夾名稱不能以點或空格結尾。 + + + 名稱為{0}的文件或文件夾已存在。 + + + 無法將{0}重命名為{1}:目標已經存在。 + + + 這個文件夾是空的 + + + 將文件拖到此處進行上傳 + + + 未找到結果 + + + 嘗試使用其他關鍵字 + + + 未找到結果 + + + 嘗試使用其他過濾器 + + + 目標文件夾是源文件夾的子文件夾。 + + + 拒絕訪問 + + + 您無權訪問此文件夾。 + + + 文件已存在 + + + 該文件夾中已經存在具有該名稱的文件。你想幹什麼? + + + 保留兩個 + + + 更換 + + + 跳躍 + + + 對所有當前項目執行此操作 + + + KB + + + {0}无法访问。 您需要获得执行{1}操作的许可。 + + + NetworkError:无法在XMLHTTP上发送请求:无法加载 + + + ServerError:来自的无效响应 + + + 减少 + + + 增加 + + + 选修的 + + + 飛漲 + + + 放大 + + + 縮小 + + + 重置 + + + 平底鍋 + + + 重置縮放 + + + 图片未找到 + + + 放大 + + + 放大 + + + 縮小 + + + 重啟 + + + + + + 無記錄可顯示 + + + ID + + + 名稱 + + + 開始日期 + + + 結束日期 + + + 持續時間 + + + 進展 + + + 相依性 + + + 筆記 + + + 基准開始日期 + + + 基準結束日期 + + + 類型 + + + 偏移量 + + + 資源資源 + + + 資源ID + + + + + + 小時 + + + 分鐘 + + + + + + 小時 + + + 分鐘 + + + 一般 + + + 自定義列 + + + 寫筆記 + + + 新任務 + + + 任務信息 + + + 保存 + + + + + + 編輯 + + + 更新資料 + + + 刪除 + + + 取消 + + + 搜索 + + + 任務 + + + 任務 + + + 放大 + + + 縮小 + + + 縮放以適合 + + + Excel導出 + + + CSV導出 + + + 展開全部 + + + 全部收縮 + + + 下一個時間跨度 + + + 以前的時間跨度 + + + + + + 您確定要刪除記錄嗎? + + + + + + + + + 任務鏈接 + + + 落後 + + + 開始 + + + 開始 開始 + + + 開始 完 + + + + + + 完 開始 + + + 完 完 + + + 輸入值 + + + 您將“ {0}”移到了“ {1}”完成並鏈接了兩個任務之前開始。結果,這些鏈接不能被接受。在下面選擇一項操作即可執行 + + + 您將“ {0}”從“ {1}”移開,兩個任務已鏈接。結果,這些鏈接不能被接受。在下面選擇一項操作即可執行 + + + 您將“ {0}”移到了“ {1}”啟動之前,並且兩個任務已鏈接。結果,這些鏈接不能被接受。在下面選擇一項操作即可執行 + + + 在啟動“ {1}”之後,您將“ {0}”移至啟動位置,並且兩個任務已鏈接。結果,這些鏈接不能被接受。在下面選擇一項操作即可執行 + + + 您將“ {0}”移至“ {1}”完成之前已完成,並且兩個任務已鏈接。結果,這些鏈接不能被接受。在下面選擇一項操作即可執行 + + + 在完成“ {1}”之後,您將“ {0}”移至完成,並且兩個任務已鏈接。結果,這些鏈接不能被接受。在下面選擇一項操作即可執行 + + + 您將“ {0}”從“ {1}”移至開始,並且兩個任務已鏈接。結果,這些鏈接不能被接受。在下面選擇一項操作即可執行 + + + 啟動“ {1}”後,您將“ {0}”移至完成位置,並且兩個任務已鏈接。結果,這些鏈接不能被接受。在下面選擇一項操作即可執行 + + + 任務信息 + + + 刪除任務 + + + 刪除依賴 + + + 兌換 + + + 保存 + + + 以上 + + + 下面 + + + 兒童 + + + 里程碑 + + + 到任務 + + + 走向里程碑 + + + 事件標記 + + + 左任務標籤 + + + 正確的任務標籤 + + + 時間軸單元 + + + 您確定要刪除依賴關係鏈接嗎? + + + 缩进 + + + 自动调整列 + + + 自动调整所有列 + + + 升序 + + + 降序排序 + + + 任务模式 + + + 汽车 + + + 手动的 + + + 子任务开始日期 + + + 子任务结束日期 + + + 期间 + + + 工作 + + + H + + + D + + + + + + + + + 自定义列 + + + 任务类型 + + + 突出 + + + 關鍵路徑 + + + + + + 分割任務 + + + 合併任務 + + + 未分配的任務 + + + X + + + + + + + + + H + + + 向前走 + + + 複製 + + + + + + + + + 分組 + + + 前進 + + + 訂購 + + + + + + 重做 + + + 全選 + + + 向後發送 + + + 發送回 + + + 撤消 + + + 取消分組 + + + 無記錄可顯示 + + + 真正 + + + + + + 無效的過濾器數據 + + + 將列標題拖到此處以對其列進行分組 + + + 點擊此處取消分組 + + + 該列的分組已禁用 + + + 的濾網 + + + 初始加載時,DataSource不能為空,因為列是從AutoGenerate Column Grid中的dataSource生成的 + + + + + + 編輯 + + + 取消 + + + 更新資料 + + + 刪除 + + + 打印 + + + PDF導出 + + + Excel導出 + + + 單詞導出 + + + CSV導出 + + + 搜索 + + + + + + 保存 + + + 項目 + + + 項目 + + + 未選擇任何記錄進行編輯操作 + + + 未選擇要刪除操作的記錄 + + + 保存 + + + + + + 取消 + + + 的詳細內容 + + + 添加新記錄 + + + 您確定要保存更改嗎? + + + 未保存的更改將丟失。你確定你要繼續嗎? + + + 您確定要刪除記錄嗎? + + + 您確定要取消更改嗎? + + + 選擇列 + + + 搜索欄 + + + 找不到匹配項 + + + 過濾 + + + 明確 + + + 无效的 + + + 不为空 + + + 空的 + + + 不是空的 + + + 喜欢 + + + 以。。開始 + + + 以。。結束 + + + 包含 + + + 不开始于 + + + 不以 + + + 不含 + + + 等於 + + + 不平等 + + + 少於 + + + 小於或等於 + + + 比...更棒 + + + 大於等於 + + + 選擇日期 + + + 輸入值 + + + 複製 + + + 按此列分組 + + + 按此列取消分組 + + + 自動適合所有列 + + + 自動適合此列 + + + 出口 + + + 第一頁 + + + 最後一頁 + + + 上一頁 + + + 下一頁 + + + 升序 + + + 降序排列 + + + 按升序排列 + + + 按降序排列 + + + 編輯記錄 + + + 刪除記錄 + + + 過濾 + + + 全選 + + + 将当前选择添加到过滤器 + + + 空白 + + + 真正 + + + + + + 找不到匹配項 + + + 清除篩選 + + + 號碼過濾器 + + + 文字過濾器 + + + 日期過濾器 + + + 日期時間過濾器 + + + 相符 + + + 之間 + + + 自定義過濾器 + + + 輸入值 + + + 選擇一個日期 + + + + + + 要么 + + + 在以下位置顯示行: + + + 行複選框 + + + 過濾器圖標 + + + 列菜單圖標 + + + 列菜单 + + + 組按鈕 + + + 取消組合按鈕 + + + 列標題 + + + 過濾器複選框 + + + 標題複選框 + + + 分类 + + + 上升 + + + 降序 + + + 没有 + + + 是模板单元格 + + + 按进入聊天 + + + 按Alt向下打开筛选器菜单 + + + 按Alt向下打开列菜单 + + + 按Ctrl空格分组 + + + 是组标题单元格 + + + 列标题未定义 + + + 对分组列进行排序 + + + 关闭 + + + 操作员 + + + 筛选值 + + + 选择行 + + + + + + + + + + + + + + + 寻呼机外部消息 + + + 下拉 + + + 轉到頁面 + + + {0}頁中的{1}頁 + + + ({0}個項目) + + + 轉到第一頁 + + + 轉到最後一頁 + + + 轉到下一頁 + + + 轉到上一頁 + + + 轉到下一頁 + + + 轉到上一頁 + + + 每頁項目 + + + 物品 + + + 所有 + + + 項目 + + + 添加標題 + + + 議程 + + + 警報 + + + 一整天 + + + 從開始 + + + 無法在阻止的時間範圍內安排事件。 + + + 取消 + + + 取消 + + + + + + 事件的持續時間必須短於發生的頻率。縮短持續時間,或在重複事件編輯器中更改重複模式。 + + + 創建 + + + + + + 刪除 + + + 刪除 + + + 您確定要刪除此事件嗎? + + + 這個事件 + + + 您確定要刪除所選事件嗎? + + + 刪除多個事件 + + + 整個系列 + + + 刪除活動 + + + 描述 + + + 編輯 + + + 您想如何更改系列中的約會? + + + 這個事件 + + + 後續活動 + + + 編輯重複 + + + 整個系列 + + + 編輯活動 + + + 這一天沒有活動安排。 + + + 結束 + + + 时间结束 + + + 結束於 + + + 結束時區 + + + 輸入的日期值無效。 + + + 位置 + + + 尋找更多 + + + + + + 月議程 + + + 更多 + + + 更多細節 + + + 更多事件 + + + 新事件 + + + 下一個 + + + 沒有 + + + 沒有活動 + + + 没有记录 + + + (無題) + + + 發生 + + + + + + 以前 + + + 再發 + + + 重複事件 + + + 重複 + + + 重複 + + + 同一事件的兩次出現不能在同一天發生。 + + + 保存 + + + + + + 上一张幻灯片 + + + 下一张幻灯片 + + + 滑动 + + + + + + 停止自动动画 + + + 启动自动动画 + + + 幻灯片放映 + + + 計數 + + + 日常 + + + 天) + + + 結束 + + + 每一個 + + + 第一 + + + 第四 + + + 持續 + + + + + + 月擴展器 + + + 每月一次 + + + 月份位置 + + + 月份 + + + 月週 + + + 決不 + + + 沒有 + + + 重複開 + + + + + + 重複 + + + 重複每一個 + + + 重複間隔 + + + 第二 + + + 天) + + + 一個月 + + + + + + 重複 + + + 時間 + + + 直到 + + + + + + 年份) + + + 第三 + + + 直到 + + + 每週 + + + 週數 + + + 年擴展器 + + + 每年 + + + 年份) + + + 保存 + + + 選擇的項目 + + + 搜索时区 + + + 系列 + + + 您是否要取消對此系列特定實例所做的更改,然後再次將其與整個系列匹配? + + + 顯示事件直到 + + + 開始 + + + 开始时间 + + + 所選的結束日期早於開始日期。 + + + 開始時區 + + + 學科 + + + 時間軸日 + + + 時間軸月 + + + 時間軸週 + + + 時間軸工作週 + + + 時間軸年份 + + + 時區 + + + 標題 + + + 今天 + + + + + + 週議程 + + + 工作週 + + + 工作週議程 + + + 重複模式無效。 + + + + + + + + + 示例:C、P、0000 %、###0.##0# 等。 + + + 排序数据顺序 + + + 降序排列 + + + 枢轴字段列表 + + + 栏位清单 + + + 在此处添加字段 + + + 选择栏位 + + + 在以下轴之间拖动字段: + + + + + + 延迟布局更新 + + + 显示图例 + + + 输入字段标题 + + + 升序排序 + + + 一份名为 + + + 已经存在。您要更换吗? + + + 添加条件 + + + 添加到列 + + + 添加到过滤器 + + + 添加到行 + + + 增值 + + + + + + 之后或等于 + + + 骨料 + + + 警报 + + + 所有 + + + 所有领域 + + + 所有值 + + + + + + 申請 + + + 区域 + + + 上升 + + + 平均 + + + 酒吧 + + + 基础领域 + + + 基础项目 + + + 之前 + + + 之前或等于 + + + 开始于 + + + 之间 + + + (空白) + + + 通过 + + + 计算场 + + + 此名称中已经存在一个计算字段。 您要更换吗? + + + 拖放字段到公式 + + + 将字段拖到公式 + + + 计算字段不能放置在值轴以外的任何其他区域中。 + + + 例: ('Sum(Order_Count)' + 'Sum(In_Stock)') * 250 + + + 此名称中已经存在一个字段。 请输入其他名称。 + + + 在此处添加字段并编辑公式。 + + + 输入字段名称 + + + 例: [Measures].[Order Quantity] + ([Measures].[Order Quantity] * 0.10) + + + 拖放字段以創建表達式。而且,如果您想編輯現有的計算字段!您可以通過簡單地選擇“計算成員”下的字段來實現它. + + + 取消 + + + 图表 + + + 明確 + + + 明確 + + + + + + 坍方 + + + + + + 将列放在此处 + + + + + + 条件格式 + + + 条件格式 + + + 包含 + + + 复制 + + + 计数 + + + 创建计算字段 + + + CSV + + + 货币 + + + 货币符号 + + + 自订 + + + 自订格式 + + + 输入自定义格式字符串 + + + 日期 + + + 显示日期的项目 + + + + + + 小数位数 + + + 删除 + + + 删除当前报告 + + + 降序 + + + 细节 + + + 区别于 + + + 尺寸 + + + 不重复计数 + + + 并非始于 + + + 不含 + + + 不以 + + + 不等于 + + + 不显示总计 + + + 拖动 + + + 钻透 + + + 无法显示计算字段的原始项目。 + + + 编辑 + + + 无记录可显示 + + + 找不到报告!! + + + 结束于 + + + 以。。结束 + + + 输入日期 + + + 输入报告名称 + + + 输入值 + + + 等于 + + + 错误 + + + 例如: + + + Excel + + + 扩大 + + + 出口 + + + 表达 + + + + + + 现场字幕 + + + 现场字幕 + + + 您要移动的字段不能放置在报告的该区域中 + + + 栏位名称 + + + 栏位名称 : + + + 栏位类型 + + + 过滤 + + + 在此放置过滤器 + + + 已过滤 + + + 筛选器 + + + 格式 + + + 格式字符串 + + + 格式类型 + + + + + + 累计 + + + 总计 + + + 比...更棒 + + + 大于或等于 + + + + + + 输入标题以显示在标题中 + + + 输入组标题 + + + 分组 + + + 团队名字 + + + 小时 + + + 指数 + + + 间隔时间 + + + 无效的格式。 + + + 无效的公式。 + + + 无法将该选择分组。 + + + JPEG + + + 标签 + + + 显示带有标签的项目 + + + 剩下 + + + 少于 + + + 小于或等于 + + + 线 + + + 加载 + + + 載入中... + + + 管理记录 + + + 最高 + + + MDX查询 + + + 测量 + + + 会员 + + + 更多项目。 搜索以进一步完善。 + + + + + + 分钟 + + + 月数 + + + 更多... + + + 多个项目 + + + 创建一个新报告 + + + 是否要保存對此報告的更改? + + + 找不到格式!!! + + + 输入一个值 + + + 无匹配 + + + 不介于 + + + 不等于 + + + 没有价值 + + + 空值 + + + + + + 数字格式 + + + + + + + + + 超出范围 + + + 家长阶层 + + + PDF + + + 百分 + + + 百分比 + + + %的列总计 + + + %的区别于 + + + %的累计 + + + %的父列总计 + + + %的父行总数的百分比 + + + %的父总 + + + %的行总计 + + + PNG + + + 极性 + + + 人口标准差 + + + 人口变量 + + + 产品 + + + Qtr + + + 宿舍 + + + 季度年 + + + 去掉 + + + 您确定要删除此报告吗? + + + 重命名当前报告 + + + 报告清单 + + + 报告名称: + + + + + + + + + 在这里放行 + + + 行数 + + + 运行总计 + + + 樣本報告 + + + 样品标准偏差 + + + 样本方差 + + + 另存为当前报告 + + + 保存报告 + + + 分散 + + + 搜索 + + + + + + 选定项目 + + + 选择组 + + + 仅显示总计列 + + + 顯示字段列表 + + + 显示总计 + + + 仅显示总计行 + + + 显示表 + + + 分类 + + + 标准 + + + 开始于 + + + 小计 + + + + + + 汇总值 + + + 汇总值 + + + SVG + + + 符号位置 + + + + + + 真正 + + + 未定义 + + + 取消分组 + + + 请输入有效的记录名称!!! + + + + + + 在这里放值 + + + 值字段设置 + + + 价值观 + + + 显示哪些项目 + + + 警告 + + + 年份 + + + 多軸 + + + 图表类型设置 + + + 图表类型 + + + + + + 没有 + + + 数字格式... + + + 条件格式... + + + 您确定要删除此计算字段吗? + + + 堆积面积 + + + 堆积柱 + + + 叠杆 + + + 阶梯线 + + + 台阶面积 + + + 花键面积 + + + 花键 + + + 100% 堆积柱 + + + 100% 堆积酒吧 + + + 100% 堆积面积 + + + 气泡 + + + 帕累托 + + + 雷达 + + + 编辑计算字段 + + + 清除编辑的字段信息 + + + 餡餅 + + + 金字塔 + + + 甜甜圈 + + + 漏斗 + + + 堆疊式 + + + 多軸模式 + + + 中位数 + + + 底部 + + + 总计位置 + + + 最佳 + + + 应用到总计 + + + + + + + + + + + + 保存 + + + 取消 + + + 載入中... + + + 點擊編輯 + + + 點擊編輯 + + + 雙擊編輯 + + + 小的 + + + 小的 + + + 亮度 + + + 瀏覽 + + + 缩小 + + + 放大 + + + 裁剪和变换 + + + 作物选择 + + + 批注 + + + 转换 + + + 微调 + + + 過濾 + + + 亮度 + + + 对比度 + + + 色调 + + + 饱和度 + + + 危险性 + + + 不透明度 + + + 模糊 + + + 字体系列 + + + 字體大小 + + + 字體顏色 + + + 笔划颜色 + + + 笔划宽度 + + + 填色 + + + 重啟 + + + 保存 + + + 撤消 + + + 重做 + + + 默认 + + + 铬色 + + + 无兴趣 + + + 感兴趣 + + + 灰度 + + + 棕褐色 + + + 反转 + + + 自订 + + + 正方形 + + + 圆圈 + + + 手写笔 + + + 线 + + + 矩形 + + + 椭圆 + + + 路徑 + + + 添加文本 + + + 向左旋转 + + + 向右旋转 + + + 水平翻转 + + + 垂直翻转 + + + 膽大 + + + 斜體 + + + X-小 + + + + + + 中等 + + + + + + 很大 + + + 重复 + + + 去掉 + + + 编辑文本 + + + 開始 + + + 結束 + + + 没有 + + + 向上箭头 - 实心 + + + 没有 + + + 酒吧 + + + 箭头 + + + 向上箭头 - 实心 + + + 圆圈 + + + 实心圆形 + + + 正方形 + + + 正方形-实心 + + + 确认保存更改 + + + 是否要保存对图像所做的更改? + + + + + + 沒有 + + + 调整大小 + + + 宽度 + + + 高度 + + + 保持非纵横比 + + + 保持纵横比 + + + 水平翻转 + + + 垂直翻转 + + + 透明度 + + + 将您的图像拖放到此处或 + + + 浏览此处... + + + 支持: + + + 框架 + + + 没有任何 + + + + + + 斜角 + + + 线 + + + 插图 + + + + + + 颜色 + + + 尺寸 + + + 抵消 + + + 半径 + + + 数量 + + + + + + H + + + 边界 + + + 坚硬的 + + + 虚线 + + + 点状 + + + 渐变色 + + + 看板_项目 + + + 看板_项目 + + + 沒有可顯示的卡片 + + + 看板_民 + + + 看板_最大 + + + 选择的卡 + + + 新增卡 + + + 编辑卡详细信息 + + + 删除卡 + + + 您确定要删除此卡吗? + + + 保存 + + + 删除 + + + 取消 + + + + + + 没有 + + + 富文本编辑器 + + + 降价编辑器 + + + 数字格式列表 + + + 没有任何 + + + 数字 + + + 上阿尔法 + + + 下阿尔法 + + + 上罗马 + + + 下罗马 + + + 下希腊语 + + + 项目符号格式列表 + + + 没有任何 + + + 圆圈 + + + 正方形 + + + 碟片 + + + 段落 + + + 代码 + + + 引述 + + + 标题 1 + + + 标题 2 + + + 标题 3 + + + 标题 4 + + + 标题 5 + + + 标题 6 + + + 标题 7 + + + 标题 8 + + + 标题 9 + + + Segoe UI + + + Arial + + + Georgia + + + Impact + + + Tahoma + + + Times New Roman + + + Verdana + + + 對齊方式 + + + 左對齊 + + + 居中對齊 + + + 右對齊 + + + 對齊對齊 + + + 字體名稱 + + + 字體大小 + + + 字體顏色 + + + 背景顏色 + + + 膽大 + + + 斜體 + + + 強調 + + + 刪除線 + + + 清除格式 + + + 全部清除 + + + + + + 複製 + + + + + + 項目符號列表 + + + 編號清單 + + + 增加縮進 + + + 減少縮進 + + + 撤消 + + + 重做 + + + 上標 + + + 下標 + + + 插入超鏈接 + + + 打開鏈接 + + + 編輯連結 + + + 刪除鏈接 + + + 插入圖片 + + + 更換 + + + 對齊 + + + 圖片說明 + + + 去掉 + + + 插入連結 + + + 顯示 + + + 替代文字 + + + 變更尺寸 + + + 最大化 + + + 最大化 + + + 最小化 + + + 小寫 + + + 大寫 + + + 打印 + + + 格式 + + + 代碼查看 + + + 預習 + + + 查看侧 + + + 插入代碼 + + + 顯示文字 + + + 標題 + + + 網址 + + + 輸入標題 + + + https://example.com + + + 在新窗口中打開鏈接 + + + 插入連結 + + + 插入 + + + 取消 + + + 更新資料 + + + 插入圖片 + + + 您也可以提供網絡鏈接 + + + 請提供您圖片的網址 + + + 將圖片放在此處或瀏覽以上傳 + + + 點擊這裡上傳 + + + 替代文字 + + + 替代文字 + + + 瀏覽 + + + 点击这里上传 + + + 拖放视频文件或浏览上传 + + + 将嵌入代码粘贴到此处 + + + 网址 + + + 嵌入代码 + + + 宽度 + + + 高度 + + + 点击这里上传 + + + 拖放音频文件或浏览上传 + + + https://example.com/image.png + + + 标题 + + + 圖片尺寸 + + + 高度 + + + 寬度 + + + 輸入文字 + + + 插入表格 + + + 插入表格 + + + 寬度 + + + 單元填充 + + + 單元間距 + + + 列數 + + + 行數 + + + + + + 柱子 + + + 表格單元格水平對齊 + + + 垂直对齐 + + + 建立表格 + + + 刪除表 + + + 标题行 + + + 删除表 + + + 表單元格背景 + + + 表格編輯屬性 + + + 款式 + + + 向左插入列 + + + 向右插入列 + + + 刪除欄 + + + 在之前插入行 + + + 在之後插入行 + + + 刪除行 + + + 編輯表格 + + + 標題 + + + 上校 + + + 插入連結 + + + 編輯影像 + + + 左對齊 + + + 居中對齊 + + + 右對齊 + + + 對齊對齊 + + + 排隊 + + + 打破 + + + 在之前插入行 + + + 在之後插入行 + + + 刪除行 + + + 向左插入列 + + + 向右插入列 + + + 刪除欄 + + + 對齊頂部 + + + 中間對齊 + + + 底部對齊 + + + 虛線邊框 + + + 交替行 + + + 貼上格式 + + + 選擇格式化動作 + + + 純文本 + + + 清潔 + + + 保持 + + + + + + 取消 + + + 代替 + + + 消除 + + + 展示 + + + 代替 + + + 對齊 + + + 消除 + + + 展示 + + + 方面 + + + 在新窗口中打开 + + + 在新窗口中打开 + + + 不支援的文件格式 + + + PDF查看器 + + + 取消 + + + 下载文件 + + + 下载 + + + 本文档受密码保护。请输入密码. + + + 文件损坏 + + + 该文件已损坏,无法打开。 + + + 适合高度 + + + 适合页面 + + + 适合宽度 + + + 自动 + + + 显示第一页 + + + 前往第一頁 + + + 前往上一頁 + + + 前往下一頁 + + + 前往最後一頁 + + + 前往頁碼文本框 + + + 頁面縮小 + + + 頁面放大 + + + 縮放比例下拉選單 + + + 提交表單按鈕。點擊此按鈕以將表單字段值保存為JSON文件。 + + + 搜索文本 + + + 圖形下拉按鈕 + + + 圖形下拉彈出窗口已打開 + + + 線條菜單項目 1/5 + + + 箭頭菜單項目 2/5 + + + 矩形菜單項目 3/5 + + + 圓形菜單項目 4/5 + + + 多邊形菜單項目 5/5 + + + 校準形狀下拉按鈕 + + + 校準形狀下拉彈出窗口已打開 + + + 距離菜單項目 1/5 + + + 周長菜單項目 2/5 + + + 面積菜單項目 3/5 + + + 半徑菜單項目 4/5 + + + 體積菜單項目 5/5 + + + 印章下拉按鈕,已折疊 + + + 動態印章 1/4 + + + 已批准印章 1/6 + + + 未批准印章 3/6 + + + 機密印章 2/6 + + + 已接收印章 4/6 + + + 已審查印章 5/6 + + + 已修訂印章 6/6 + + + 簽名印章 2/4 + + + 已接受印章 1/5 + + + 此處簽署印章 2/5 + + + 被拒絕印章 3/5 + + + 簽名印章 4/5 + + + 見證印章 5/5 + + + 標準商業印章 3/4 + + + 已批准印章 1/12 + + + 已完成印章 2/12 + + + 機密印章 3/12 + + + 草稿印章 4/12 + + + 最終印章 5/12 + + + 備註印章 6/12 + + + 公眾發布印章 7/12 + + + 僅供參考印章 8/12 + + + 未批准印章 9/12 + + + 不公開發布印章 10/12 + + + 初步結果印章 11/12 + + + 作廢印章 12/12 + + + 自訂印章 4/4 + + + 插入簽名 + + + 自由手繪 + + + 字體系列組合編輯 + + + 字體大小組合編輯 + + + 字體顏色組合編輯 + + + 文字對齊組合編輯 + + + 文字對齊工具欄彈出開啟 + + + 左對齊菜單項目 1/4 + + + 右對齊菜單項目 2/4 + + + 置中對齊菜單項目 3/4 + + + 對齊菜單項目 4/4 + + + 文字屬性組合編輯 + + + 文字屬性工具欄彈出開啟 + + + 粗體圖示菜單項目 1/4 + + + 斜體圖示菜單項目 2/4 + + + 刪除線圖示菜單項目 3/4 + + + 底線圖示菜單項目 4/4 + + + 填充顏色組合編輯 + + + 邊框顏色組合編輯 + + + 厚度滑桿 + + + 不透明度滑桿 + + + 關閉註解工具欄按鈕 + + + 密码错误。请再试一遍。 + + + 显示下一页 + + + 显示上一页 + + + + + + 打开文件 + + + 当前页码 + + + 显示最后一页 + + + 放大 + + + 放大 + + + 缩小 + + + 页面缩略图 + + + 书签 + + + 打印文件 + + + 需要密码 + + + 复制 + + + 文字选择工具 + + + 平移模式 + + + 查找文字 + + + 在文件中寻找 + + + 相符 + + + 应用 + + + 转到页面 + + + 查看者已完成文档搜索。未找到匹配项 + + + 查看器已完成文档搜索。找不到更多匹配项 + + + 未找到匹配项 + + + 没有找到更多匹配项 + + + 撤消 + + + 重做 + + + 添加或编辑注释 + + + 突出显示文字 + + + 下划线文字 + + + 删除线文字 + + + 波浪形文字 + + + 删除注释 + + + 不透明度 + + + 换颜色 + + + 更改不透明度 + + + 突出 + + + 强调 + + + 删除线 + + + 波浪形 + + + 出了点问题。请重试或刷新页面. + + + 找到客户端错误。请检查AjaxRequestSettings属性中提供的自定义标头以及ServerActionSettings属性中的Web操作方法。 + + + 由于 CORS 政策,对该文档的访问受到限制。请检查文档。 + + + 打开 + + + 第一页 + + + 上一页 + + + 下一页 + + + 最后一页 + + + 放大 + + + 缩小 + + + 选拔 + + + + + + 打印 + + + 搜索 + + + 编辑注释 + + + 添加或编辑表单字段 + + + 编辑表单字段 + + + 文本框 + + + 密码 + + + 复选框 + + + 单选按钮 + + + 下拉菜单 + + + 列表框 + + + 按钮 + + + 删除表单字段 + + + 签名 + + + 首字母 + + + 保存 + + + 常规 + + + 外观 + + + 选项 + + + 名称 + + + 工具提示 + + + + + + 可见性 + + + 只读 + + + 已勾选 + + + 已选 + + + 必填 + + + 多行 + + + 格式 + + + 最大长度 + + + 填充 + + + 边框 + + + 厚度 + + + 项目名称 + + + 项目值 + + + 项目列表 + + + 上移 + + + 下移 + + + 边框厚度 + + + 字体样式 + + + 对齐方式 + + + 边框颜色 + + + 可见 + + + 可见但不可打印 + + + 隐藏但可打印 + + + 隐藏 + + + Helvetica + + + Courier + + + 符号 + + + Times New Roman + + + 线的粗细 + + + 线属性 + + + 开始箭头 + + + 结束箭头 + + + 线型 + + + 填色 + + + 线色 + + + 没有 + + + 打开箭头 + + + 闭合箭头 + + + 圆形箭头 + + + 方形箭头 + + + 钻石箭 + + + + + + + + + 删除 + + + 物产 + + + 加盖邮票 + + + 添加形状 + + + 更改笔触颜色 + + + 更改边框厚度 + + + 加线 + + + 添加箭头 + + + 添加矩形 + + + 添加圈子 + + + 添加多边形 + + + 添加评论 + + + 注释 + + + 暂时没有评论 + + + 公认 + + + 已完成 + + + 取消 + + + 被拒绝 + + + 引线长度 + + + 比例比 + + + 校准 + + + 校准距离 + + + 校准周长 + + + 校准区域 + + + 校准半径 + + + 校准体积 + + + 深度 + + + 关闭 + + + 回合 + + + 广场 + + + 钻石 + + + 编辑 + + + 评论 + + + 评论面板 + + + 设定状态 + + + 发布 + + + + + + 添加评论 + + + 添加回复 + + + 导入注释 + + + 导出注释 + + + + + + 明确 + + + 胆大 + + + 斜体 + + + 删除线 + + + 下划线 + + + 上标t + + + 下标 + + + 左对齐 + + + 右对齐 + + + 中央 + + + 证明 + + + 字体颜色 + + + 文字对齐 + + + 字体样式 + + + 画签名 + + + 创建 + + + 字体系列 + + + 字体大小 + + + 自由文字 + + + 无效的JSON文件类型或文件名;请选择一个有效的JSON文件 + + + 在所需位置找不到导入的JSON文件 + + + 导出注释操作失败;请确保正确添加注释 + + + + + + 类型 + + + 上载 + + + 浏览 + + + 保存签名 + + + 保存初始值 + + + 输入你的名字 + + + 动态的 + + + 标准商务 + + + 定制邮票 + + + 修改 + + + 已审核 + + + 已收到 + + + 得到正式认可的 + + + 机密的 + + + 不批准 + + + 证人 + + + 首字母在这里 + + + 在这里签名 + + + 草案 + + + 最终的 + + + 公开发行 + + + 不公开发行 + + + 供评论 + + + 空白 + + + 初步结果 + + + 仅供参考 + + + 提交表格 + + + + + + 此 PDF 查看器需要服务器端处理才能通过 Web 服务呈现 PDF 文件。您必须配置服务 URL 才能继续使用 PDF 查看器 + + + 关闭 + + + 添加签名 + + + 添加初始 + + + 画墨水 + + + + + + + + + 細胞 + + + + + + 取消 + + + 尺寸 + + + 首選寬度 + + + 點數 + + + 百分 + + + 測量 + + + 對準 + + + 剩下 + + + 中央 + + + + + + 證明 + + + 大纲级别 + + + 主体 + + + 1级 + + + 2级 + + + 3级 + + + 4级 + + + 5级 + + + 6级 + + + 7级 + + + 8级 + + + 9级 + + + 從左縮進 + + + 邊框和底紋 + + + 選件 + + + 指定高度 + + + 至少 + + + 究竟 + + + 行高為 + + + 允許行跨頁 + + + 在每個頁面的頂部重複作為標題行 + + + 垂直對齊 + + + 最佳 + + + 底部 + + + 默認單元格邊距 + + + 默認單元格間距 + + + 在單元之間留出間隔 + + + 單元格邊距 + + + 與整個桌子相同 + + + 邊框 + + + 沒有 + + + 樣式 + + + 寬度 + + + 高度 + + + 信件 + + + 小報 + + + 法律 + + + 聲明 + + + 行政人員 + + + A3 + + + A4 + + + A5 + + + B4 + + + B5 + + + 自定義大小 + + + 不同的奇數和偶數 + + + 第一頁不同 + + + 從邊緣 + + + 標頭 + + + 頁腳 + + + 保證金 + + + + + + 佈局 + + + 取向 + + + 景觀 + + + 肖像 + + + 顯示頁碼 + + + 右對齊頁碼. + + + 沒有 + + + 標籤頁頭 + + + 顯示水平 + + + 使用超鏈接代替頁碼 + + + 從中建立目錄 + + + 款式 + + + 可用樣式 + + + TOC等級 + + + 標題 + + + 標題1 + + + 標題2 + + + 標題3 + + + 標題4 + + + 標題5 + + + 標題6 + + + 標題7 + + + 標題8 + + + 標題9 + + + 列出段落 + + + 正常 + + + 大綱級別 + + + 表輸入字段 + + + 修改 + + + 顏色 + + + 設置 + + + + + + 所有 + + + 自訂 + + + 預習 + + + 底紋 + + + + + + 適用於 + + + 表屬性 + + + 單元選項 + + + 表格選項 + + + 插入表格 + + + 列數 + + + 行數 + + + 顯示文字 + + + 地址 + + + 插入超鏈接 + + + 編輯超鏈接 + + + 插入 + + + 一般 + + + 縮進 + + + 文字之前 + + + 特別 + + + 第一行 + + + 懸掛式 + + + 文字後 + + + 通過 + + + 之前 + + + 行間距 + + + + + + + + + + + + 間距 + + + 定義新的多級列表 + + + 清單層級 + + + 選擇要修改的級別 + + + 水平 + + + 數字格式 + + + 此級別的數字樣式 + + + 輸入數字格式 + + + 開始於 + + + 重啟列表後 + + + 位置 + + + 文字縮進 + + + 對準 + + + 跟數字 + + + 製表符 + + + 空間 + + + 阿拉伯 + + + UpRoman + + + 低羅馬 + + + UpLetter + + + 低信 + + + + + + 前導零 + + + 子彈 + + + 序數 + + + 序數文字 + + + 對於東方 + + + 沒有重啟 + + + 字形 + + + 字體樣式 + + + 下劃線樣式 + + + 字體顏色 + + + 特效 + + + 刪除線 + + + 上標 + + + 下標 + + + 雙重刪除線 + + + 定期 + + + 膽大 + + + 斜體 + + + + + + 複製 + + + + + + 超連結 + + + 打開超鏈接 + + + 複製超鏈接 + + + 刪除超鏈接 + + + + + + 鏈接(段落和字符) + + + 字符 + + + 合併單元格 + + + 在上方插入 + + + 在下方插入 + + + 向左插入 + + + 向右插入 + + + 刪除 + + + 刪除表格 + + + 刪除行 + + + 刪除欄 + + + 文件名 + + + 格式類型 + + + 保存 + + + 導航 + + + 結果 + + + 更換 + + + 全部替換 + + + 我們更換了所有 + + + + + + 标题 + + + 無匹配 + + + 全做完了 + + + 結果 + + + + + + 實例 + + + + + + 點擊查看鏈接 + + + 繼續編號 + + + 書籤名稱 + + + + + + 重新開始於 + + + 物產 + + + 名稱 + + + 樣式類型 + + + 風格基於 + + + 下段樣式 + + + 格式化 + + + 編號和項目符號 + + + 編號 + + + 更新欄位 + + + 編輯欄位 + + + 書籤 + + + 頁面設置 + + + 找不到書籤 + + + 格式 + + + 創造新風格 + + + 修改樣式 + + + + + + 項目符號 + + + 使用書籤 + + + 目錄 + + + 自動調整 + + + 自動適應內容 + + + 自動適應窗口 + + + 固定列寬 + + + 重啟 + + + 相符 + + + 全字 + + + + + + + + + 搜索 + + + 用。。。來代替 + + + 目錄1 + + + 目錄2 + + + 目錄3 + + + 目錄4 + + + 目錄5 + + + 目錄6 + + + 目錄7 + + + 目錄8 + + + 目錄9 + + + 右到左 + + + 左到右 + + + 方向 + + + 桌子方向 + + + 從右縮進 + + + 請勿在相同樣式的段落之間添加空格 + + + 密碼不匹配 + + + 限制編輯 + + + 格式化限制 + + + 允許格式化 + + + 編輯限制 + + + 只讀 + + + 異常(可選) + + + 選擇文檔的各個部分,然後選擇允許自由編輯它們的用戶。 + + + 大家 + + + 更多用戶 + + + 添加用戶 + + + 是的,開始執行保護 + + + 開始執行保護 + + + 輸入用戶 + + + 用戶數 + + + 輸入新密碼 + + + 重新輸入新密碼以確認 + + + 您的權限 + + + 本文档受到保护,不会被无意编辑。 + + + 您只能使用某些樣式設置文本格式。 + + + 停止保護 + + + 密碼 + + + 拼寫編輯器 + + + 拼寫 + + + 拼寫檢查 + + + 下劃線錯誤 + + + 忽視 + + + 忽略所有 + + + 添加到字典 + + + 更改 + + + 全部更改 + + + 意見建議 + + + 密碼錯誤 + + + 與Web服務器建立連接時出錯 + + + 突出顯示我可以編輯的區域 + + + 顯示我可以編輯的所有區域 + + + 查找我可以編輯的下一個區域 + + + 保持源格式 + + + 匹配目標格式 + + + 純文本 + + + 註釋 + + + 輸入您的評論 + + + 發布 + + + 回复 + + + 新評論 + + + 編輯 + + + 解決 + + + 重新開啟 + + + 本文檔中無評論 + + + 更多 + + + 在這裡輸入您的評論 + + + 下一條評論 + + + 以前的評論 + + + 未發布的評論 + + + 添加的評論未發布。如果您繼續,該評論將被丟棄。 + + + 找不到標題! + + + 本文檔無標題。請添加標題,然後重試。 + + + 更多選擇 + + + 點擊查看此評論 + + + 下拉表格字段 + + + 下拉項目 + + + 下拉列表中的項目 + + + + + + 去掉 + + + 欄位設定 + + + 工具提示 + + + 啟用下拉 + + + 複選框表格字段 + + + 複選框尺寸 + + + 汽車 + + + 默認值 + + + 未檢查 + + + 已檢查 + + + 複選框已啟用 + + + 文字表格欄位 + + + 類型 + + + 默認文字 + + + 最大長度 + + + 文字格式 + + + 啟用填寫 + + + 默認號碼 + + + 預設日期 + + + 日期格式 + + + 此操作不会被标记为更改。你想继续吗? + + + 无法追踪 + + + 接受 + + + 拒绝 + + + 以前的变化 + + + 下一个变化 + + + 已插入 + + + 已删除 + + + 变化 + + + 全都接受 + + + 全部拒绝 + + + 没有变化 + + + 接受变更 + + + 拒绝更改 + + + 用户 + + + 视图 + + + 取消保护文档 + + + 您只能在该地区填写表格。 + + + 寡妇/孤儿控制 + + + 缩进和间距 + + + 换行符和分页符 + + + 保持线条在一起 + + + 忽略一次 + + + 继续下一步 + + + 屏幕提示文本 + + + 保持源格式 + + + 匹配目标格式 + + + 您只能在该区域中插入评论。 + + + 行数必须介于 1 和 32767 之间 + + + 列数必须介于 1 到 63 之间 + + + 信息 + + + + + + 短跑小缺口 + + + 破折号 + + + 薄厚小间隙 + + + 厚薄小间隙 + + + 厚薄中间隙 + + + 厚薄大间隙 + + + 单波浪 + + + 双波浪 + + + 插图 + + + 短跑大差距 + + + 点划线点 + + + 三倍 + + + 薄厚薄小间隙 + + + 薄厚薄中间隙 + + + 薄厚薄大间隙 + + + 划点划线 + + + 雕刻3D + + + 厚的 + + + 一开始 + + + 浮雕3D + + + 薄厚大间隙 + + + 薄厚中等间隙 + + + 常规文本 + + + 日期 + + + 大写 + + + 小写 + + + 第一资本 + + + 标题案例 + + + 搬离 + + + 搬去 + + + 像素 + + + 您可以在该区域进行编辑。 + + +分节符(下一页) + + +分页符 + + +分栏符 + + + + + + + + + + + +预设 + + + + + +将您的文本分成两列或更多列 + + +列之间的线 + + +宽度和间距 + + +列宽相等 + + +柱子 + + +分节符(连续) + + + 由于浏览器的安全策略,从系统剪贴板粘贴是受限制的。或者使用键盘快捷键 + + + 不再显示 + + + + + +显示隐藏的字符,如空格、制表符、段落标记和换行符。(Ctrl + *) + + + 常规的 + + + 加粗斜体 + + + + + + 打開 + + + 撤消 + + + 重做 + + + 圖片 + + + + + + 鏈接 + + + 書籤 + + + 目錄 + + + 标题----1 + + + 标题----2 + + + 标题----3 + + + 標頭 + + + 頁腳 + + + 頁面設置 + + + 頁碼 + + + 打破 + + + + + + 标题 + + + 本地剪貼板 + + + 限制編輯 + + + 從計算機上傳 + + + 通過URL + + + 頁眉頁腳 + + + 選件 + + + 等級 + + + 不同的首頁 + + + 奇數頁和偶數頁的頁眉和頁腳不同。 + + + 不同的奇數頁和偶數頁 + + + 链接到上一个 + + + 第一頁的頁眉和頁腳不同。 + + + 位置 + + + 從頭開始 + + + 底部的頁腳 + + + 從頁面頂部到頁眉頂部的距離。 + + + 從頁面底部到頁腳底部的距離。 + + + 長寬比 + + + w ^ + + + H + + + 寬度 + + + 高度 + + + 文本 + + + + + + + + + 填色 + + + 邊框樣式 + + + 境外 + + + 所有邊界 + + + 內部邊界 + + + 左邊框 + + + 內部垂直邊框 + + + 右邊框 + + + 上邊框 + + + 內部水平邊框 + + + 底邊框 + + + 邊框顏色 + + + 邊框寬度 + + + 細胞 + + + 合併單元格 + + + 插入/刪除 + + + 在左側插入列 + + + 在右側插入列 + + + 在上方插入行 + + + 在下面插入行 + + + 刪除行 + + + 刪除欄 + + + 單元邊距 + + + 最佳 + + + 底部 + + + 剩下 + + + + + + 對齊文字 + + + 對齊頂部 + + + 底部對齊 + + + 居中對齊 + + + 目錄中顯示的標題或大綱級別的數量。 + + + 顯示頁碼 + + + 在目錄中顯示頁碼。 + + + 右對齊頁碼. + + + 在目錄中右對齊頁碼。 + + + 使用超鏈接 + + + 使用超鏈接而不是頁碼。 + + + 字形 + + + 字體大小 + + + 字體顏色 + + + 文字突出顯示顏色 + + + 清除所有格式 + + + 粗體(Ctrl + B) + + + 斜體(Ctrl + I) + + + 下劃線(Ctrl + U) + + + 刪除線 + + + 上標(Ctrl + Shift ++) + + + 下標(Ctrl + =) + + + 左對齊(Ctrl + L) + + + 居中(Ctrl + E) + + + 右對齊(Ctrl + R) + + + 對齊(Ctrl + J) + + + 減少縮進 + + + 增加縮進 + + + 行間距 + + + 項目符號 + + + 編號 + + + 款式 + + + 管理樣式 + + + + + + + + + 適合一頁 + + + 拼寫檢查 + + + 下劃線錯誤 + + + 適合頁面寬度 + + + 更新資料 + + + 取消 + + + 插入 + + + 無邊界 + + + 創建一個新文檔。 + + + 打開一個文檔。 + + + 撤消上一個操作(Ctrl + Z)。 + + + 重做上一個操作(Ctrl + Y)。 + + + 從文件中插入嵌入式圖片。 + + + 在文檔中插入表格. + + + 在文檔中創建一個鏈接,以快速訪問網頁和文件(Ctrl + K)。 + + + 在此文檔中的特定位置插入書籤。 + + + 通過添加目錄來提供文檔概述。 + + + 添加或編輯標題。 + + + 添加或編輯頁腳。 + + + 打開頁面設置對話框。 + + + 添加頁碼。 + + + 在文檔中查找文本(Ctrl + F)。 + + + 文檔中的當前頁碼。單擊或點擊以瀏覽特定頁面。 + + + 只讀 + + + 保護裝置 + + + 與Web服務器建立連接時出錯 + + + + + + + + + 新評論 + + + 註釋 + + + 打印佈局 + + + 網站佈局 + + + 在內部剪貼板和系統剪貼板之間切換。 +由於瀏覽器的安全策略,拒絕通過腳本訪問系統剪貼板。而是 + 1.您可以啟用內部剪貼板在組件中進行剪切,複製和粘貼。 + 2.您可以使用鍵盤快捷鍵(Ctrl + X,Ctrl + C和Ctrl + V)進行剪切,複製並粘貼到系統剪貼板。 + + + 文字形式 + + + 複選框 + + + 落下 + + + 更新欄位 + + + 更新交叉參考字段. + + + 跟踪文檔中所做的更改. + + + 跟踪變化 + + + 缩放级别 + + + 插入脚注(Alt + Ctrl + F)。 + + + 插入尾注(Alt + Ctrl + D)。 + + + 插入评论 + + + 表格欄位 + + + 信息 + + + 全部大写 + + + 插入 + + + 插入 + + + 填写表格 + + + 跟踪更改 + + + 如果您在文档保护中进行此更改,Word 将忽略此文档中的所有异常。 + + + 您可以在此区域进行编辑,但所有更改都将被跟踪 + + + 不支持您选择的文件格式。请选择有效的格式。 + + + 打开此文档时出现问题 + + + 是否要删除忽略的异常? + + + 是的 + + + + + + 显示属性窗格 + + + 隐藏属性窗格 + + + 连续 + + + 柱子 + + + + + + 下一页 + + + 分页符 + + + 分节符 + + + 该网站的地址无效。 检查地址并重试。 + + + 好的 + + + 更改大小写 + + + 大写 + + + 小写 + + + 句格 + + + 每个单词大写 + + + 切换大小写 + + + 選擇另一個任務 + + + 選擇連接器位置 + + + 剩下 + + + + + + 将注释导出到 XFDF 文件 + + + 从 XFDF 文件导入注释 + + + 信息 + + + 叠线 + + + 100% 堆叠线 + + + 没有任何 + + + 載入中... + + + + + + 取消 + + + 不显示小计 + + + 仅显示小计列 + + + 仅显示小计行 + + + 显示小计 + + + 小计位置 + + + 单身的 + + + 汽车 + + + 行寻呼机 + + + 每页行数 + + + 分栏寻呼机 + + + 每页列数 + + + 转到第一页 + + + 转到最后一页 + + + 转到下一页 + + + 转到上一页 + + + 选择时间 + + + 时间过滤 + + + 与以前相同 + + + 部分 + + + 奇数页眉 + + + 奇数页脚 + + + 偶数页眉 + + + 偶数页脚 + + + 第一页标题 + + + 首页页脚 + + + 替代文本 + + + + + + 标题 + + + 描述 + + + 替代文本 + + + + + + 不支持的文件 + + + 不支持删除的文件。 + + + 将您的图片拖放到此处或 + + +制表位停止位置 + + +默认制表位 + + +要清除的制表位 + + +选项卡 + + + + + +清除 + + +全部清除 + + +十进制 + + +酒吧 + + +结盟 + + +领导者 + + +全部 + + +下边距 + + +首行缩进 + + +悬挂缩进 + + +左缩进 + + +左边距 + + +移动表列 + + +右缩进 + + +右边距 + + +上边距 + + +左标签 + + +中心选项卡 + + +右选项卡 + + +小数制表符 + + +栏选项卡 + + + 應用 + + + 批注 + + + 丢弃 + + + 一片空白 + + + 不为空 + + + 拉直 + + + 联合 + + + 不开始于 + + + 不以 + + + 锁集团 + + + 解锁组 + + + 锁定规则 + + + 解锁规则 + + + 克隆组 + + + 克隆规则 + + + 另存为 + + + + + + 下載 + + + 图片大小: + + + 自订 + + + 好的 + + + 伟大的 + + + 最高 + + + 质量 + + + 图像质量选项仅适用于 JPEG 格式 + + + 图片名称 + + + 格式 + + + Z 顺序 + + + 向前走 + + + 向前进 + + + 發送回 + + + 向後發送 + + + 轮廓颜色 + + + + + + 像素化 + + + 像素大小 + + + 最近的颜色 + + + + + + 停止回应 + + + {0}、{1} 和另外 {2} 人正在输入 + + + {0} 正在输入 + + + {0} 和 {1} 正在输入 + + + {0}、{1} 和另外 {2} 个人正在输入 + + + 内联代码 + + + 语音识别已中止。 + + + 未检测到麦克风。请确保您的麦克风已连接。 + + + 发生未知错误。 + + + 发生网络错误。请检查您的互联网连接。 + + + 未检测到语音。请对着麦克风说话。 + + + 麦克风访问被拒绝。请允许麦克风权限。 + + + 语音识别服务在此环境中不允许使用。 + + + 浏览器不支持 SpeechRecognition API。 + + + 按下开始说话并转录您的话语 + + + 按下停止说话并结束转录 + + + 开始聆听 + + + 停止聆听 + + + 坚硬的 + + + 虚线 + + + 点状 + + \ No newline at end of file diff --git a/KB-Samples/LargeDiagram/appsettings.Development.json b/KB-Samples/LargeDiagram/appsettings.Development.json new file mode 100644 index 00000000..0c208ae9 --- /dev/null +++ b/KB-Samples/LargeDiagram/appsettings.Development.json @@ -0,0 +1,8 @@ +{ + "Logging": { + "LogLevel": { + "Default": "Information", + "Microsoft.AspNetCore": "Warning" + } + } +} diff --git a/KB-Samples/LargeDiagram/appsettings.json b/KB-Samples/LargeDiagram/appsettings.json new file mode 100644 index 00000000..10f68b8c --- /dev/null +++ b/KB-Samples/LargeDiagram/appsettings.json @@ -0,0 +1,9 @@ +{ + "Logging": { + "LogLevel": { + "Default": "Information", + "Microsoft.AspNetCore": "Warning" + } + }, + "AllowedHosts": "*" +} diff --git a/KB-Samples/LargeDiagram/wwwroot/FlowShape.json b/KB-Samples/LargeDiagram/wwwroot/FlowShape.json new file mode 100644 index 00000000..f0fda896 --- /dev/null +++ b/KB-Samples/LargeDiagram/wwwroot/FlowShape.json @@ -0,0 +1 @@ +{ "Tooltip": null, "bridgeDirection": 2, "ID": "QcLWf", "dataSourceSettings": null, "width": "100%", "contextMenuSettings": { "show": true, "items": [ { "iconCss": "e-file", "id": "AddNote", "items": null, "separator": false, "text": "Add Note", "hidden": false, "disabled": false, "url": "" }, { "iconCss": "e-file", "id": "ViewNote", "items": null, "separator": false, "text": "View Note", "hidden": false, "disabled": false, "url": "" }, { "iconCss": "e-search", "id": "MoveToFront", "items": null, "separator": false, "text": "Bring To Front", "hidden": false, "disabled": false, "url": "" }, { "iconCss": "e-search", "id": "MoveForward", "items": null, "separator": false, "text": "Bring Forward", "hidden": false, "disabled": false, "url": "" }, { "iconCss": "e-search", "id": "MoveToBack", "items": null, "separator": false, "text": "Send to Back", "hidden": false, "disabled": false, "url": "" }, { "iconCss": "e-search", "id": "MoveBackward", "items": null, "separator": false, "text": "Send Backward", "hidden": false, "disabled": false, "url": "" } ], "showCustomMenuOnly": false }, "constraints": 1788, "interactionController": 3, "enableChunkMessages": false, "snapSettings": { "verticalGridLines": { "lineColor": "#e0e0e0", "lineDashArray": "", "lineIntervals": [ 1, 9, 0.25, 9.75, 0.25, 9.75, 0.25, 9.75, 0.25, 9.75, 0.25, 9.75, 0.25, 9.75, 0.25, 9.75, 0.25, 9.75, 0.25, 9.75 ], "dotIntervals": [ 1, 19, 0.5, 19.5, 0.5, 19.5, 0.5, 19.5, 0.5, 19.5 ], "snapIntervals": [ 20 ] }, "horizontalGridLines": { "lineColor": "#e0e0e0 ", "lineDashArray": "", "lineIntervals": [ 1, 9, 0.25, 9.75, 0.25, 9.75, 0.25, 9.75, 0.25, 9.75, 0.25, 9.75, 0.25, 9.75, 0.25, 9.75, 0.25, 9.75, 0.25, 9.75 ], "dotIntervals": [ 1, 19, 0.5, 19.5, 0.5, 19.5, 0.5, 19.5, 0.5, 19.5 ], "snapIntervals": [ 20 ] }, "constraints": 31, "snapDistance": 5, "snapAngle": 5, "gridType": 0 }, "connectorSegmentThumb": { "Shape": 0 }, "rulerSettings": null, "pageSettings": { "width": 1123, "height": 794, "orientation": 0, "boundaryConstraints": 0, "multiplePage": false, "showPageBreaks": false, "margin": { "left": 0, "right": 0, "top": 0, "bottom": 0 }, "background": { "imageSource": "", "background": "transparent", "imageScale": 0, "imageAlign": 0 } }, "lineRoutingSettings": { "routingType": 2, "obstaclePadding": 12 }, "scrollSettings": { "horizontalOffset": 0, "enableAutoScroll": false, "autoScrollPadding": { "left": 20, "right": 20, "top": 20, "bottom": 20 }, "scrollPadding": { "left": 0, "right": 0, "top": 0, "bottom": 0 }, "verticalOffset": 0, "currentZoom": 1, "minZoom": 0.2, "maxZoom": 30, "scrollLimit": 0, "ScrollableArea": null }, "height": "100%", "layout": null, "commandManager": { "commands": [] }, "selectedItems": { "width": 0, "height": 0, "offsetX": 0, "offsetY": 0, "rotateAngle": 0, "pivot": { "x": 0.5, "y": 0.5 }, "userHandles": [ { "name": "Delete", "id": "EFyUE", "pathData": "M0.54700077,2.2130003 L7.2129992,2.2130003 7.2129992,8.8800011 C7.2129992,9.1920013 7.1049975,9.4570007 6.8879985,9.6739998 6.6709994,9.8910007 6.406,10 6.0939997,10 L1.6659999,10 C1.3539997,10 1.0890004,9.8910007 0.87200136,9.6739998 0.65500242,9.4570007 0.54700071,9.1920013 0.54700077,8.8800011 z M2.4999992,0 L5.2600006,0 5.8329986,0.54600048 7.7599996,0.54600048 7.7599996,1.6660004 0,1.6660004 0,0.54600048 1.9270014,0.54600048 z", "source": null, "imageUrl": null, "backgroundColor": "black", "side": 3, "borderColor": "", "borderWidth": 0.5, "size": 25, "pathColor": "white", "displacement": 10, "visible": true, "offset": 0.5, "margin": { "left": 0, "right": 0, "top": 0, "bottom": 0 }, "VisibleTarget": 1, "horizontalAlignment": 3, "verticalAlignment": 3, "Template": false, "tooltip": null }, { "name": "Draw", "id": "CGZhP", "pathData": "M3.9730001,0 L8.9730001,5.0000007 3.9730001,10.000001 3.9730001,7.0090005 0,7.0090005 0,2.9910006 3.9730001,2.9910006 z", "source": null, "imageUrl": null, "backgroundColor": "black", "side": 1, "borderColor": "", "borderWidth": 0.5, "size": 25, "pathColor": "white", "displacement": 10, "visible": true, "offset": 0.5, "margin": { "left": 0, "right": 0, "top": 0, "bottom": 0 }, "VisibleTarget": 1, "horizontalAlignment": 3, "verticalAlignment": 3, "Template": false, "tooltip": null } ], "rubberBandSelectionMode": 0, "constraints": 16382, "canToggleSelection": false }, "drawingObject": "{ \u0022constraints\u0022: 144958, \u0022sourcePoint\u0022: { \u0022x\u0022: 0, \u0022y\u0022: 0 }, \u0022targetPoint\u0022: { \u0022x\u0022: 0, \u0022y\u0022: 0 }, \u0022shape\u0022: null, \u0022fixedUserHandles\u0022: [], \u0022sourceID\u0022: \u0022Manual-OperationgFHsE\u0022, \u0022targetID\u0022: \u0022\u0022, \u0022sourcePortID\u0022: \u0022\u0022, \u0022targetPortID\u0022: \u0022\u0022, \u0022cornerRadius\u0022: 0, \u0022hitPadding\u0022: 10, \u0022sourcePadding\u0022: 0, \u0022targetPadding\u0022: 0, \u0022connectionPadding\u0022: 0, \u0022bridgeSpace\u0022: 10, \u0022type\u0022: 1, \u0022segments\u0022: [], \u0022SegmentThumbSettings\u0022: { \u0022Shape\u0022: 0 }, \u0022annotations\u0022: [ { \u0022offset\u0022: 0.5, \u0022displacement\u0022: { \u0022x\u0022: 0, \u0022y\u0022: 0 }, \u0022alignment\u0022: 0, \u0022segmentAngle\u0022: false, \u0022id\u0022: \u0022bTtEu\u0022, \u0022content\u0022: \u0022\u0022, \u0022visibility\u0022: true, \u0022constraints\u0022: 4, \u0022UseTemplate\u0022: false, \u0022hyperlink\u0022: null, \u0022width\u0022: null, \u0022height\u0022: null, \u0022rotationAngle\u0022: 0, \u0022style\u0022: { \u0022bold\u0022: false, \u0022color\u0022: \u0022Black\u0022, \u0022fontFamily\u0022: \u0022Arial\u0022, \u0022fontSize\u0022: 12, \u0022italic\u0022: false, \u0022textAlign\u0022: \u0022Center\u0022, \u0022textDecoration\u0022: \u0022None\u0022, \u0022textOverflow\u0022: \u0022Wrap\u0022, \u0022textWrapping\u0022: \u0022WrapWithOverflow\u0022, \u0022fill\u0022: \u0022White\u0022, \u0022gradient\u0022: null, \u0022opacity\u0022: 1, \u0022strokeColor\u0022: \u0022White\u0022, \u0022strokeDashArray\u0022: \u0022\u0022, \u0022strokeWidth\u0022: 4 }, \u0022horizontalAlignment\u0022: 3, \u0022verticalAlignment\u0022: 3, \u0022margin\u0022: { \u0022left\u0022: 0, \u0022right\u0022: 0, \u0022top\u0022: 0, \u0022bottom\u0022: 0 }, \u0022additionalInfo\u0022: {} } ], \u0022style\u0022: { \u0022fill\u0022: \u0022white\u0022, \u0022gradient\u0022: null, \u0022opacity\u0022: 1, \u0022strokeColor\u0022: \u0022black\u0022, \u0022strokeDashArray\u0022: \u0022\u0022, \u0022strokeWidth\u0022: 1 }, \u0022sourceDecorator\u0022: { \u0022width\u0022: 10, \u0022height\u0022: 10, \u0022shape\u0022: 1, \u0022pathData\u0022: \u0022\u0022, \u0022pivot\u0022: { \u0022x\u0022: 0, \u0022y\u0022: 0.5 }, \u0022style\u0022: { \u0022fill\u0022: \u0022black\u0022, \u0022gradient\u0022: null, \u0022opacity\u0022: 1, \u0022strokeColor\u0022: \u0022black\u0022, \u0022strokeDashArray\u0022: \u0022\u0022, \u0022strokeWidth\u0022: 1 } }, \u0022targetDecorator\u0022: { \u0022width\u0022: 10, \u0022height\u0022: 10, \u0022shape\u0022: 0, \u0022pathData\u0022: \u0022\u0022, \u0022pivot\u0022: { \u0022x\u0022: 0, \u0022y\u0022: 0.5 }, \u0022style\u0022: { \u0022fill\u0022: \u0022black\u0022, \u0022gradient\u0022: null, \u0022opacity\u0022: 1, \u0022strokeColor\u0022: \u0022black\u0022, \u0022strokeDashArray\u0022: \u0022\u0022, \u0022strokeWidth\u0022: 1 } }, \u0022BezierConnectorSettings\u0022: { \u0022ControlPointsVisibility\u0022: 14, \u0022SegmentEditOrientation\u0022: 1, \u0022Smoothness\u0022: 6, \u0022AllowSegmentsReset\u0022: true }, \u0022id\u0022: \u0022OrthogonalConnector\u0022, \u0022SearchTags\u0022: [], \u0022tooltip\u0022: null, \u0022zIndex\u0022: -2147483648, \u0022margin\u0022: { \u0022left\u0022: 0, \u0022right\u0022: 0, \u0022top\u0022: 0, \u0022bottom\u0022: 0 }, \u0022isVisible\u0022: true, \u0022canAutoLayout\u0022: true, \u0022additionalInfo\u0022: {}, \u0022flip\u0022: 0, \u0022FlipMode\u0022: 3}", "nodes": [ { "borderColor": "none", "id": "DecisionuGsxG", "parentId": "", "backgroundColor": "transparent", "verticalAlignment": "Top", "horizontalAlignment": "Left", "flip": "None", "constraints": "Default", "isExpanded": true, "canShapeLayout": true, "isVisible": true, "borderWidth": 0, "zIndex": 0, "offsetX": 250, "offsetY": 130, "laneOffsetX": 0, "laneOffsetY": 0, "width": 100, "height": 100, "rotateAngle": 0, "additionalInfo": "{}", "annotations": "[{\u0022offset\u0022:{\u0022x\u0022:0.5,\u0022y\u0022:0.5},\u0022rotationReference\u0022:\u0022Parent\u0022,\u0022id\u0022:\u0022qsomv\u0022,\u0022content\u0022:\u00221\u0022,\u0022visibility\u0022:true,\u0022constraints\u0022:4,\u0022UseTemplate\u0022:false,\u0022hyperlink\u0022:null,\u0022width\u0022:null,\u0022height\u0022:null,\u0022rotationAngle\u0022:0,\u0022style\u0022:{\u0022bold\u0022:false,\u0022color\u0022:\u0022White\u0022,\u0022fontFamily\u0022:\u0022Arial\u0022,\u0022fontSize\u0022:16,\u0022italic\u0022:false,\u0022textAlign\u0022:\u0022Center\u0022,\u0022textDecoration\u0022:\u0022None\u0022,\u0022textOverflow\u0022:\u0022Wrap\u0022,\u0022textWrapping\u0022:\u0022WrapWithOverflow\u0022,\u0022fill\u0022:\u0022transparent\u0022,\u0022gradient\u0022:null,\u0022opacity\u0022:1,\u0022strokeColor\u0022:\u0022transparent\u0022,\u0022strokeDashArray\u0022:\u0022\u0022,\u0022strokeWidth\u0022:1},\u0022horizontalAlignment\u0022:3,\u0022verticalAlignment\u0022:3,\u0022margin\u0022:{\u0022left\u0022:0,\u0022right\u0022:0,\u0022top\u0022:0,\u0022bottom\u0022:0},\u0022additionalInfo\u0022:{}}]", "ports": "[]", "fixedUserHandles": "[]", "inEdges": "[]", "outEdges": "[\u0022OrthogonalConnectorWlhOh\u0022]", "pivot": "{\u0022x\u0022:0.5,\u0022y\u0022:0.5}", "shadow": "{\u0022angle\u0022:45,\u0022color\u0022:\u0022lightgrey\u0022,\u0022distance\u0022:5,\u0022opacity\u0022:0.7}", "shape": "{ \u0022type\u0022: \u0022Path\u0022, \u0022data\u0022: \u0022M 5 45 L 45, 5 Q 50 0 55 5 L 95 45 Q 100 50 95 55 L 55 95 Q 50 100 45 95 L 5 55 Q 0 50 5 45 Z\u0022}", "style": "{\u0022fill\u0022:\u0022#114e0f\u0022,\u0022gradient\u0022:{\u0022type\u0022:\u0022Linear\u0022,\u0022stops\u0022:\u0022[{\\u0022color\\u0022:\\u0022Black\\u0022,\\u0022offset\\u0022:0,\\u0022opacity\\u0022:1},{\\u0022color\\u0022:\\u0022#114e0f\\u0022,\\u0022offset\\u0022:100,\\u0022opacity\\u0022:1}]\u0022,\u0022x1\u0022:0,\u0022y1\u0022:0,\u0022x2\u0022:50,\u0022y2\u0022:50},\u0022opacity\u0022:1,\u0022strokeColor\u0022:\u0022#2847e5\u0022,\u0022strokeDashArray\u0022:\u0022\u0022,\u0022strokeWidth\u0022:1}", "margin": "{\u0022left\u0022:0,\u0022right\u0022:0,\u0022top\u0022:0,\u0022bottom\u0022:0}" }, { "borderColor": "none", "id": "Manual-OperationgFHsE", "parentId": "", "backgroundColor": "transparent", "verticalAlignment": "Top", "horizontalAlignment": "Left", "flip": "None", "constraints": "Default", "isExpanded": true, "canShapeLayout": true, "isVisible": true, "borderWidth": 0, "zIndex": 1, "offsetX": 490, "offsetY": 130, "laneOffsetX": 0, "laneOffsetY": 0, "width": 140, "height": 70, "rotateAngle": 0, "additionalInfo": "{}", "annotations": "[{\u0022offset\u0022:{\u0022x\u0022:0.5,\u0022y\u0022:0.5},\u0022rotationReference\u0022:\u0022Parent\u0022,\u0022id\u0022:\u0022UlOyy\u0022,\u0022content\u0022:\u00222\u0022,\u0022visibility\u0022:true,\u0022constraints\u0022:4,\u0022UseTemplate\u0022:false,\u0022hyperlink\u0022:null,\u0022width\u0022:null,\u0022height\u0022:null,\u0022rotationAngle\u0022:0,\u0022style\u0022:{\u0022bold\u0022:false,\u0022color\u0022:\u0022White\u0022,\u0022fontFamily\u0022:\u0022Arial\u0022,\u0022fontSize\u0022:16,\u0022italic\u0022:false,\u0022textAlign\u0022:\u0022Center\u0022,\u0022textDecoration\u0022:\u0022None\u0022,\u0022textOverflow\u0022:\u0022Wrap\u0022,\u0022textWrapping\u0022:\u0022WrapWithOverflow\u0022,\u0022fill\u0022:\u0022transparent\u0022,\u0022gradient\u0022:null,\u0022opacity\u0022:1,\u0022strokeColor\u0022:\u0022transparent\u0022,\u0022strokeDashArray\u0022:\u0022\u0022,\u0022strokeWidth\u0022:1},\u0022horizontalAlignment\u0022:3,\u0022verticalAlignment\u0022:3,\u0022margin\u0022:{\u0022left\u0022:0,\u0022right\u0022:0,\u0022top\u0022:0,\u0022bottom\u0022:0},\u0022additionalInfo\u0022:{}}]", "ports": "[]", "fixedUserHandles": "[]", "inEdges": "[\u0022OrthogonalConnectorWlhOh\u0022]", "outEdges": "[\u0022OrthogonalConnectorzbvlI\u0022]", "pivot": "{\u0022x\u0022:0.5,\u0022y\u0022:0.5}", "shadow": "{\u0022angle\u0022:45,\u0022color\u0022:\u0022lightgrey\u0022,\u0022distance\u0022:5,\u0022opacity\u0022:0.7}", "shape": "{ \u0022type\u0022: \u0022Path\u0022, \u0022data\u0022: \u0022M 0 0 L 140 0 L 115 70 L 25 70 L 0 0 Z\u0022}", "style": "{\u0022fill\u0022:\u0022#310031\u0022,\u0022gradient\u0022:{\u0022type\u0022:\u0022Linear\u0022,\u0022stops\u0022:\u0022[{\\u0022color\\u0022:\\u0022Black\\u0022,\\u0022offset\\u0022:0,\\u0022opacity\\u0022:1},{\\u0022color\\u0022:\\u0022#310031\\u0022,\\u0022offset\\u0022:100,\\u0022opacity\\u0022:1}]\u0022,\u0022x1\u0022:0,\u0022y1\u0022:0,\u0022x2\u0022:50,\u0022y2\u0022:50},\u0022opacity\u0022:1,\u0022strokeColor\u0022:\u0022#2847e5\u0022,\u0022strokeDashArray\u0022:\u0022\u0022,\u0022strokeWidth\u0022:1}", "margin": "{\u0022left\u0022:0,\u0022right\u0022:0,\u0022top\u0022:0,\u0022bottom\u0022:0}" }, { "borderColor": "none", "id": "DataOucUC", "parentId": "", "backgroundColor": "transparent", "verticalAlignment": "Top", "horizontalAlignment": "Left", "flip": "None", "constraints": "Default", "isExpanded": true, "canShapeLayout": true, "isVisible": true, "borderWidth": 0, "zIndex": 2, "offsetX": 750, "offsetY": 125, "laneOffsetX": 0, "laneOffsetY": 0, "width": 140, "height": 70, "rotateAngle": 0, "additionalInfo": "{}", "annotations": "[{\u0022offset\u0022:{\u0022x\u0022:0.5,\u0022y\u0022:0.5},\u0022rotationReference\u0022:\u0022Parent\u0022,\u0022id\u0022:\u0022TlNkb\u0022,\u0022content\u0022:\u00223\u0022,\u0022visibility\u0022:true,\u0022constraints\u0022:4,\u0022UseTemplate\u0022:false,\u0022hyperlink\u0022:null,\u0022width\u0022:null,\u0022height\u0022:null,\u0022rotationAngle\u0022:0,\u0022style\u0022:{\u0022bold\u0022:false,\u0022color\u0022:\u0022White\u0022,\u0022fontFamily\u0022:\u0022Arial\u0022,\u0022fontSize\u0022:16,\u0022italic\u0022:false,\u0022textAlign\u0022:\u0022Center\u0022,\u0022textDecoration\u0022:\u0022None\u0022,\u0022textOverflow\u0022:\u0022Wrap\u0022,\u0022textWrapping\u0022:\u0022WrapWithOverflow\u0022,\u0022fill\u0022:\u0022transparent\u0022,\u0022gradient\u0022:null,\u0022opacity\u0022:1,\u0022strokeColor\u0022:\u0022transparent\u0022,\u0022strokeDashArray\u0022:\u0022\u0022,\u0022strokeWidth\u0022:1},\u0022horizontalAlignment\u0022:3,\u0022verticalAlignment\u0022:3,\u0022margin\u0022:{\u0022left\u0022:0,\u0022right\u0022:0,\u0022top\u0022:0,\u0022bottom\u0022:0},\u0022additionalInfo\u0022:{}}]", "ports": "[]", "fixedUserHandles": "[]", "inEdges": "[\u0022OrthogonalConnectorzbvlI\u0022]", "outEdges": "[]", "pivot": "{\u0022x\u0022:0.5,\u0022y\u0022:0.5}", "shadow": "{\u0022angle\u0022:45,\u0022color\u0022:\u0022lightgrey\u0022,\u0022distance\u0022:5,\u0022opacity\u0022:0.7}", "shape": "{ \u0022type\u0022: \u0022Path\u0022, \u0022data\u0022: \u0022M 20 0 L 140 0 L 120 70 L 0 70 L 2 0 Z\u0022}", "style": "{\u0022fill\u0022:\u0022#5a1414\u0022,\u0022gradient\u0022:{\u0022type\u0022:\u0022Linear\u0022,\u0022stops\u0022:\u0022[{\\u0022color\\u0022:\\u0022Black\\u0022,\\u0022offset\\u0022:0,\\u0022opacity\\u0022:1},{\\u0022color\\u0022:\\u0022#5a1414\\u0022,\\u0022offset\\u0022:100,\\u0022opacity\\u0022:1}]\u0022,\u0022x1\u0022:0,\u0022y1\u0022:0,\u0022x2\u0022:50,\u0022y2\u0022:50},\u0022opacity\u0022:1,\u0022strokeColor\u0022:\u0022#2847e5\u0022,\u0022strokeDashArray\u0022:\u0022\u0022,\u0022strokeWidth\u0022:1}", "margin": "{\u0022left\u0022:0,\u0022right\u0022:0,\u0022top\u0022:0,\u0022bottom\u0022:0}" } ], "connectors": [ { "constraints": 144958, "sourcePoint": { "x": 299.86, "y": 130 }, "targetPoint": { "x": 432.5, "y": 130 }, "shape": null, "fixedUserHandles": [], "sourceID": "DecisionuGsxG", "targetID": "Manual-OperationgFHsE", "sourcePortID": "", "targetPortID": "", "cornerRadius": 0, "hitPadding": 10, "sourcePadding": 0, "targetPadding": 0, "connectionPadding": 0, "bridgeSpace": 10, "type": 1, "segments": [ { "type": "Orthogonal", "allowDrag": true } ], "SegmentThumbSettings": { "Shape": 0 }, "annotations": [ { "offset": 0.5, "displacement": { "x": 0, "y": 0 }, "alignment": 0, "segmentAngle": false, "id": "pzKRe", "content": "", "visibility": true, "constraints": 4, "UseTemplate": false, "hyperlink": null, "width": null, "height": null, "rotationAngle": 0, "style": { "bold": false, "color": "Black", "fontFamily": "Arial", "fontSize": 12, "italic": false, "textAlign": "Center", "textDecoration": "None", "textOverflow": "Wrap", "textWrapping": "WrapWithOverflow", "fill": "White", "gradient": null, "opacity": 1, "strokeColor": "White", "strokeDashArray": "", "strokeWidth": 4 }, "horizontalAlignment": 3, "verticalAlignment": 3, "margin": { "left": 0, "right": 0, "top": 0, "bottom": 0 }, "additionalInfo": {} } ], "style": { "fill": "transparent", "gradient": null, "opacity": 1, "strokeColor": "black", "strokeDashArray": "", "strokeWidth": 1 }, "sourceDecorator": { "width": 10, "height": 10, "shape": 1, "pathData": "", "pivot": { "x": 0, "y": 0.5 }, "style": { "fill": "black", "gradient": null, "opacity": 1, "strokeColor": "black", "strokeDashArray": "", "strokeWidth": 1 } }, "targetDecorator": { "width": 10, "height": 10, "shape": 0, "pathData": "", "pivot": { "x": 0, "y": 0.5 }, "style": { "fill": "black", "gradient": null, "opacity": 1, "strokeColor": "black", "strokeDashArray": "", "strokeWidth": 1 } }, "BezierConnectorSettings": { "ControlPointsVisibility": 14, "SegmentEditOrientation": 1, "Smoothness": 6, "AllowSegmentsReset": true }, "id": "OrthogonalConnectorWlhOh", "SearchTags": [], "tooltip": null, "zIndex": 3, "margin": { "left": 0, "right": 0, "top": 0, "bottom": 0 }, "isVisible": true, "canAutoLayout": true, "additionalInfo": {}, "flip": 0, "FlipMode": 3 }, { "constraints": 144958, "sourcePoint": { "x": 547.49, "y": 130 }, "targetPoint": { "x": 681, "y": 125 }, "shape": null, "fixedUserHandles": [], "sourceID": "Manual-OperationgFHsE", "targetID": "DataOucUC", "sourcePortID": "", "targetPortID": "", "cornerRadius": 0, "hitPadding": 10, "sourcePadding": 0, "targetPadding": 0, "connectionPadding": 0, "bridgeSpace": 10, "type": 1, "segments": [ { "type": "Orthogonal", "allowDrag": true } ], "SegmentThumbSettings": { "Shape": 0 }, "annotations": [ { "offset": 0.5, "displacement": { "x": 0, "y": 0 }, "alignment": 0, "segmentAngle": false, "id": "bTtEu", "content": "", "visibility": true, "constraints": 4, "UseTemplate": false, "hyperlink": null, "width": null, "height": null, "rotationAngle": 0, "style": { "bold": false, "color": "Black", "fontFamily": "Arial", "fontSize": 12, "italic": false, "textAlign": "Center", "textDecoration": "None", "textOverflow": "Wrap", "textWrapping": "WrapWithOverflow", "fill": "White", "gradient": null, "opacity": 1, "strokeColor": "White", "strokeDashArray": "", "strokeWidth": 4 }, "horizontalAlignment": 3, "verticalAlignment": 3, "margin": { "left": 0, "right": 0, "top": 0, "bottom": 0 }, "additionalInfo": {} } ], "style": { "fill": "transparent", "gradient": null, "opacity": 1, "strokeColor": "black", "strokeDashArray": "", "strokeWidth": 1 }, "sourceDecorator": { "width": 10, "height": 10, "shape": 1, "pathData": "", "pivot": { "x": 0, "y": 0.5 }, "style": { "fill": "black", "gradient": null, "opacity": 1, "strokeColor": "black", "strokeDashArray": "", "strokeWidth": 1 } }, "targetDecorator": { "width": 10, "height": 10, "shape": 0, "pathData": "", "pivot": { "x": 0, "y": 0.5 }, "style": { "fill": "black", "gradient": null, "opacity": 1, "strokeColor": "black", "strokeDashArray": "", "strokeWidth": 1 } }, "BezierConnectorSettings": { "ControlPointsVisibility": 14, "SegmentEditOrientation": 1, "Smoothness": 6, "AllowSegmentsReset": true }, "id": "OrthogonalConnectorzbvlI", "SearchTags": [], "tooltip": null, "zIndex": 4, "margin": { "left": 0, "right": 0, "top": 0, "bottom": 0 }, "isVisible": true, "canAutoLayout": true, "additionalInfo": {}, "flip": 0, "FlipMode": 3 } ], "swimlanes": [], "enableConnectorSplitting": false} \ No newline at end of file diff --git a/KB-Samples/LargeDiagram/wwwroot/Interop.js b/KB-Samples/LargeDiagram/wwwroot/Interop.js new file mode 100644 index 00000000..b84fd73a --- /dev/null +++ b/KB-Samples/LargeDiagram/wwwroot/Interop.js @@ -0,0 +1,27 @@ +function getDiagramFileName() { + return document.getElementById('diagramName').innerHTML.toString(); +} + +function saveDiagram(data, filename) { + if (window.navigator.msSaveBlob) { + let blob = new Blob([data], { type: 'data:text/json;charset=utf-8,' }); + window.navigator.msSaveOrOpenBlob(blob, filename + '.json'); + } else { + let dataStr = 'data:text/json;charset=utf-8,' + encodeURIComponent(data); + let a = document.createElement('a'); + a.href = dataStr; + a.download = filename + '.json'; + document.body.appendChild(a); + a.click(); + a.remove(); + } +} + +function click() { + document.getElementById('UploadFiles').click(); +} +function loadFile(file) { + var base64 = file.rawFile.replace("data:application/json;base64,", ""); + var json = atob(base64) + return json; +} \ No newline at end of file diff --git a/KB-Samples/LargeDiagram/wwwroot/PathShape.json b/KB-Samples/LargeDiagram/wwwroot/PathShape.json new file mode 100644 index 00000000..64f11f80 --- /dev/null +++ b/KB-Samples/LargeDiagram/wwwroot/PathShape.json @@ -0,0 +1 @@ +{ "Tooltip": null, "bridgeDirection": 2, "ID": "qxonS", "dataSourceSettings": null, "width": "100%", "contextMenuSettings": { "show": true, "items": [ { "iconCss": "e-file", "id": "AddNote", "items": null, "separator": false, "text": "Add Note", "hidden": false, "disabled": false, "url": "" }, { "iconCss": "e-file", "id": "ViewNote", "items": null, "separator": false, "text": "View Note", "hidden": false, "disabled": false, "url": "" }, { "iconCss": "e-search", "id": "MoveToFront", "items": null, "separator": false, "text": "Bring To Front", "hidden": false, "disabled": false, "url": "" }, { "iconCss": "e-search", "id": "MoveForward", "items": null, "separator": false, "text": "Bring Forward", "hidden": false, "disabled": false, "url": "" }, { "iconCss": "e-search", "id": "MoveToBack", "items": null, "separator": false, "text": "Send to Back", "hidden": false, "disabled": false, "url": "" }, { "iconCss": "e-search", "id": "MoveBackward", "items": null, "separator": false, "text": "Send Backward", "hidden": false, "disabled": false, "url": "" } ], "showCustomMenuOnly": false }, "constraints": 1788, "interactionController": 3, "enableChunkMessages": false, "snapSettings": { "verticalGridLines": { "lineColor": "#e0e0e0", "lineDashArray": "", "lineIntervals": [ 1, 9, 0.25, 9.75, 0.25, 9.75, 0.25, 9.75, 0.25, 9.75, 0.25, 9.75, 0.25, 9.75, 0.25, 9.75, 0.25, 9.75, 0.25, 9.75 ], "dotIntervals": [ 1, 19, 0.5, 19.5, 0.5, 19.5, 0.5, 19.5, 0.5, 19.5 ], "snapIntervals": [ 20 ] }, "horizontalGridLines": { "lineColor": "#e0e0e0 ", "lineDashArray": "", "lineIntervals": [ 1, 9, 0.25, 9.75, 0.25, 9.75, 0.25, 9.75, 0.25, 9.75, 0.25, 9.75, 0.25, 9.75, 0.25, 9.75, 0.25, 9.75, 0.25, 9.75 ], "dotIntervals": [ 1, 19, 0.5, 19.5, 0.5, 19.5, 0.5, 19.5, 0.5, 19.5 ], "snapIntervals": [ 20 ] }, "constraints": 31, "snapDistance": 5, "snapAngle": 5, "gridType": 0 }, "connectorSegmentThumb": { "Shape": 0 }, "rulerSettings": null, "pageSettings": { "width": 1123, "height": 794, "orientation": 0, "boundaryConstraints": 0, "multiplePage": false, "showPageBreaks": false, "margin": { "left": 0, "right": 0, "top": 0, "bottom": 0 }, "background": { "imageSource": "", "background": "transparent", "imageScale": 0, "imageAlign": 0 } }, "lineRoutingSettings": { "routingType": 2, "obstaclePadding": 12 }, "scrollSettings": { "horizontalOffset": 0, "enableAutoScroll": false, "autoScrollPadding": { "left": 20, "right": 20, "top": 20, "bottom": 20 }, "scrollPadding": { "left": 0, "right": 0, "top": 0, "bottom": 0 }, "verticalOffset": 0, "currentZoom": 1, "minZoom": 0.2, "maxZoom": 30, "scrollLimit": 0, "ScrollableArea": null }, "height": "100%", "layout": null, "commandManager": { "commands": [] }, "selectedItems": { "width": 0, "height": 0, "offsetX": 0, "offsetY": 0, "rotateAngle": 0, "pivot": { "x": 0.5, "y": 0.5 }, "userHandles": [ { "name": "Delete", "id": "cBafF", "pathData": "M0.54700077,2.2130003 L7.2129992,2.2130003 7.2129992,8.8800011 C7.2129992,9.1920013 7.1049975,9.4570007 6.8879985,9.6739998 6.6709994,9.8910007 6.406,10 6.0939997,10 L1.6659999,10 C1.3539997,10 1.0890004,9.8910007 0.87200136,9.6739998 0.65500242,9.4570007 0.54700071,9.1920013 0.54700077,8.8800011 z M2.4999992,0 L5.2600006,0 5.8329986,0.54600048 7.7599996,0.54600048 7.7599996,1.6660004 0,1.6660004 0,0.54600048 1.9270014,0.54600048 z", "source": null, "imageUrl": null, "backgroundColor": "black", "side": 3, "borderColor": "", "borderWidth": 0.5, "size": 25, "pathColor": "white", "displacement": 10, "visible": true, "offset": 0.5, "margin": { "left": 0, "right": 0, "top": 0, "bottom": 0 }, "VisibleTarget": 1, "horizontalAlignment": 3, "verticalAlignment": 3, "Template": false, "tooltip": null }, { "name": "Draw", "id": "SuLhf", "pathData": "M3.9730001,0 L8.9730001,5.0000007 3.9730001,10.000001 3.9730001,7.0090005 0,7.0090005 0,2.9910006 3.9730001,2.9910006 z", "source": null, "imageUrl": null, "backgroundColor": "black", "side": 1, "borderColor": "", "borderWidth": 0.5, "size": 25, "pathColor": "white", "displacement": 10, "visible": true, "offset": 0.5, "margin": { "left": 0, "right": 0, "top": 0, "bottom": 0 }, "VisibleTarget": 1, "horizontalAlignment": 3, "verticalAlignment": 3, "Template": false, "tooltip": null } ], "rubberBandSelectionMode": 0, "constraints": 16382, "canToggleSelection": false }, "drawingObject": "{ \u0022constraints\u0022: 144958, \u0022sourcePoint\u0022: { \u0022x\u0022: 0, \u0022y\u0022: 0 }, \u0022targetPoint\u0022: { \u0022x\u0022: 0, \u0022y\u0022: 0 }, \u0022shape\u0022: null, \u0022fixedUserHandles\u0022: [], \u0022sourceID\u0022: \u0022DatahUHNd\u0022, \u0022targetID\u0022: \u0022\u0022, \u0022sourcePortID\u0022: \u0022\u0022, \u0022targetPortID\u0022: \u0022\u0022, \u0022cornerRadius\u0022: 0, \u0022hitPadding\u0022: 10, \u0022sourcePadding\u0022: 0, \u0022targetPadding\u0022: 0, \u0022connectionPadding\u0022: 0, \u0022bridgeSpace\u0022: 10, \u0022type\u0022: 1, \u0022segments\u0022: [], \u0022SegmentThumbSettings\u0022: { \u0022Shape\u0022: 0 }, \u0022annotations\u0022: [ { \u0022offset\u0022: 0.5, \u0022displacement\u0022: { \u0022x\u0022: 0, \u0022y\u0022: 0 }, \u0022alignment\u0022: 0, \u0022segmentAngle\u0022: false, \u0022id\u0022: \u0022tHIen\u0022, \u0022content\u0022: \u0022\u0022, \u0022visibility\u0022: true, \u0022constraints\u0022: 4, \u0022UseTemplate\u0022: false, \u0022hyperlink\u0022: null, \u0022width\u0022: null, \u0022height\u0022: null, \u0022rotationAngle\u0022: 0, \u0022style\u0022: { \u0022bold\u0022: false, \u0022color\u0022: \u0022Black\u0022, \u0022fontFamily\u0022: \u0022Arial\u0022, \u0022fontSize\u0022: 12, \u0022italic\u0022: false, \u0022textAlign\u0022: \u0022Center\u0022, \u0022textDecoration\u0022: \u0022None\u0022, \u0022textOverflow\u0022: \u0022Wrap\u0022, \u0022textWrapping\u0022: \u0022WrapWithOverflow\u0022, \u0022fill\u0022: \u0022White\u0022, \u0022gradient\u0022: null, \u0022opacity\u0022: 1, \u0022strokeColor\u0022: \u0022White\u0022, \u0022strokeDashArray\u0022: \u0022\u0022, \u0022strokeWidth\u0022: 4 }, \u0022horizontalAlignment\u0022: 3, \u0022verticalAlignment\u0022: 3, \u0022margin\u0022: { \u0022left\u0022: 0, \u0022right\u0022: 0, \u0022top\u0022: 0, \u0022bottom\u0022: 0 }, \u0022additionalInfo\u0022: {} } ], \u0022style\u0022: { \u0022fill\u0022: \u0022white\u0022, \u0022gradient\u0022: null, \u0022opacity\u0022: 1, \u0022strokeColor\u0022: \u0022black\u0022, \u0022strokeDashArray\u0022: \u0022\u0022, \u0022strokeWidth\u0022: 1 }, \u0022sourceDecorator\u0022: { \u0022width\u0022: 10, \u0022height\u0022: 10, \u0022shape\u0022: 1, \u0022pathData\u0022: \u0022\u0022, \u0022pivot\u0022: { \u0022x\u0022: 0, \u0022y\u0022: 0.5 }, \u0022style\u0022: { \u0022fill\u0022: \u0022black\u0022, \u0022gradient\u0022: null, \u0022opacity\u0022: 1, \u0022strokeColor\u0022: \u0022black\u0022, \u0022strokeDashArray\u0022: \u0022\u0022, \u0022strokeWidth\u0022: 1 } }, \u0022targetDecorator\u0022: { \u0022width\u0022: 10, \u0022height\u0022: 10, \u0022shape\u0022: 0, \u0022pathData\u0022: \u0022\u0022, \u0022pivot\u0022: { \u0022x\u0022: 0, \u0022y\u0022: 0.5 }, \u0022style\u0022: { \u0022fill\u0022: \u0022black\u0022, \u0022gradient\u0022: null, \u0022opacity\u0022: 1, \u0022strokeColor\u0022: \u0022black\u0022, \u0022strokeDashArray\u0022: \u0022\u0022, \u0022strokeWidth\u0022: 1 } }, \u0022BezierConnectorSettings\u0022: { \u0022ControlPointsVisibility\u0022: 14, \u0022SegmentEditOrientation\u0022: 1, \u0022Smoothness\u0022: 6, \u0022AllowSegmentsReset\u0022: true }, \u0022id\u0022: \u0022OrthogonalConnector\u0022, \u0022SearchTags\u0022: [], \u0022tooltip\u0022: null, \u0022zIndex\u0022: -2147483648, \u0022margin\u0022: { \u0022left\u0022: 0, \u0022right\u0022: 0, \u0022top\u0022: 0, \u0022bottom\u0022: 0 }, \u0022isVisible\u0022: true, \u0022canAutoLayout\u0022: true, \u0022additionalInfo\u0022: {}, \u0022flip\u0022: 0, \u0022FlipMode\u0022: 3}", "nodes": [ { "borderColor": "none", "id": "DecisionMsWKW", "parentId": "", "backgroundColor": "transparent", "verticalAlignment": "Top", "horizontalAlignment": "Left", "flip": "None", "constraints": "Default", "isExpanded": true, "canShapeLayout": true, "isVisible": true, "borderWidth": 0, "zIndex": 0, "offsetX": 170, "offsetY": 130, "laneOffsetX": 0, "laneOffsetY": 0, "width": 100, "height": 100, "rotateAngle": 0, "additionalInfo": "{}", "annotations": "[{\u0022offset\u0022:{\u0022x\u0022:0.5,\u0022y\u0022:0.5},\u0022rotationReference\u0022:\u0022Parent\u0022,\u0022id\u0022:\u0022NQEVB\u0022,\u0022content\u0022:\u00221\u0022,\u0022visibility\u0022:true,\u0022constraints\u0022:4,\u0022UseTemplate\u0022:false,\u0022hyperlink\u0022:null,\u0022width\u0022:null,\u0022height\u0022:null,\u0022rotationAngle\u0022:0,\u0022style\u0022:{\u0022bold\u0022:false,\u0022color\u0022:\u0022White\u0022,\u0022fontFamily\u0022:\u0022Arial\u0022,\u0022fontSize\u0022:16,\u0022italic\u0022:false,\u0022textAlign\u0022:\u0022Center\u0022,\u0022textDecoration\u0022:\u0022None\u0022,\u0022textOverflow\u0022:\u0022Wrap\u0022,\u0022textWrapping\u0022:\u0022WrapWithOverflow\u0022,\u0022fill\u0022:\u0022transparent\u0022,\u0022gradient\u0022:null,\u0022opacity\u0022:1,\u0022strokeColor\u0022:\u0022transparent\u0022,\u0022strokeDashArray\u0022:\u0022\u0022,\u0022strokeWidth\u0022:1},\u0022horizontalAlignment\u0022:3,\u0022verticalAlignment\u0022:3,\u0022margin\u0022:{\u0022left\u0022:0,\u0022right\u0022:0,\u0022top\u0022:0,\u0022bottom\u0022:0},\u0022additionalInfo\u0022:{}}]", "ports": "[]", "fixedUserHandles": "[]", "inEdges": "[]", "outEdges": "[\u0022OrthogonalConnectorxVBwP\u0022]", "pivot": "{\u0022x\u0022:0.5,\u0022y\u0022:0.5}", "shadow": "{\u0022angle\u0022:45,\u0022color\u0022:\u0022lightgrey\u0022,\u0022distance\u0022:5,\u0022opacity\u0022:0.7}", "shape": "{ \u0022type\u0022: \u0022Path\u0022, \u0022data\u0022: \u0022M 5 45 L 45, 5 Q 50 0 55 5 L 95 45 Q 100 50 95 55 L 55 95 Q 50 100 45 95 L 5 55 Q 0 50 5 45 Z\u0022}", "style": "{\u0022fill\u0022:\u0022#114e0f\u0022,\u0022gradient\u0022:{\u0022type\u0022:\u0022Linear\u0022,\u0022stops\u0022:\u0022[{\\u0022color\\u0022:\\u0022Black\\u0022,\\u0022offset\\u0022:0,\\u0022opacity\\u0022:1},{\\u0022color\\u0022:\\u0022#114e0f\\u0022,\\u0022offset\\u0022:100,\\u0022opacity\\u0022:1}]\u0022,\u0022x1\u0022:0,\u0022y1\u0022:0,\u0022x2\u0022:50,\u0022y2\u0022:50},\u0022opacity\u0022:1,\u0022strokeColor\u0022:\u0022#2847e5\u0022,\u0022strokeDashArray\u0022:\u0022\u0022,\u0022strokeWidth\u0022:1}", "margin": "{\u0022left\u0022:0,\u0022right\u0022:0,\u0022top\u0022:0,\u0022bottom\u0022:0}" }, { "borderColor": "none", "id": "ProcessvFaSO", "parentId": "", "backgroundColor": "transparent", "verticalAlignment": "Top", "horizontalAlignment": "Left", "flip": "None", "constraints": "Default", "isExpanded": true, "canShapeLayout": true, "isVisible": true, "borderWidth": 0, "zIndex": 1, "offsetX": 370, "offsetY": 130, "laneOffsetX": 0, "laneOffsetY": 0, "width": 140, "height": 70, "rotateAngle": 0, "additionalInfo": "{}", "annotations": "[{\u0022offset\u0022:{\u0022x\u0022:0.5,\u0022y\u0022:0.5},\u0022rotationReference\u0022:\u0022Parent\u0022,\u0022id\u0022:\u0022sbiMO\u0022,\u0022content\u0022:\u00222\u0022,\u0022visibility\u0022:true,\u0022constraints\u0022:4,\u0022UseTemplate\u0022:false,\u0022hyperlink\u0022:null,\u0022width\u0022:null,\u0022height\u0022:null,\u0022rotationAngle\u0022:0,\u0022style\u0022:{\u0022bold\u0022:false,\u0022color\u0022:\u0022White\u0022,\u0022fontFamily\u0022:\u0022Arial\u0022,\u0022fontSize\u0022:16,\u0022italic\u0022:false,\u0022textAlign\u0022:\u0022Center\u0022,\u0022textDecoration\u0022:\u0022None\u0022,\u0022textOverflow\u0022:\u0022Wrap\u0022,\u0022textWrapping\u0022:\u0022WrapWithOverflow\u0022,\u0022fill\u0022:\u0022transparent\u0022,\u0022gradient\u0022:null,\u0022opacity\u0022:1,\u0022strokeColor\u0022:\u0022transparent\u0022,\u0022strokeDashArray\u0022:\u0022\u0022,\u0022strokeWidth\u0022:1},\u0022horizontalAlignment\u0022:3,\u0022verticalAlignment\u0022:3,\u0022margin\u0022:{\u0022left\u0022:0,\u0022right\u0022:0,\u0022top\u0022:0,\u0022bottom\u0022:0},\u0022additionalInfo\u0022:{}}]", "ports": "[]", "fixedUserHandles": "[]", "inEdges": "[\u0022OrthogonalConnectorxVBwP\u0022]", "outEdges": "[\u0022OrthogonalConnectorVyvBN\u0022]", "pivot": "{\u0022x\u0022:0.5,\u0022y\u0022:0.5}", "shadow": "{\u0022angle\u0022:45,\u0022color\u0022:\u0022lightgrey\u0022,\u0022distance\u0022:5,\u0022opacity\u0022:0.7}", "shape": "{ \u0022type\u0022: \u0022Path\u0022, \u0022data\u0022: \u0022M 5 0 L135 0 Q 140 0 140 5 L 140 65 Q 140 70 135 70 L 5 70 Q 0 70 0 65 L 0 5 Q 0 0 5 0 Z\u0022}", "style": "{\u0022fill\u0022:\u0022#173987\u0022,\u0022gradient\u0022:{\u0022type\u0022:\u0022Linear\u0022,\u0022stops\u0022:\u0022[{\\u0022color\\u0022:\\u0022Black\\u0022,\\u0022offset\\u0022:0,\\u0022opacity\\u0022:1},{\\u0022color\\u0022:\\u0022#173987\\u0022,\\u0022offset\\u0022:100,\\u0022opacity\\u0022:1}]\u0022,\u0022x1\u0022:0,\u0022y1\u0022:0,\u0022x2\u0022:50,\u0022y2\u0022:50},\u0022opacity\u0022:1,\u0022strokeColor\u0022:\u0022#2847e5\u0022,\u0022strokeDashArray\u0022:\u0022\u0022,\u0022strokeWidth\u0022:1}", "margin": "{\u0022left\u0022:0,\u0022right\u0022:0,\u0022top\u0022:0,\u0022bottom\u0022:0}" }, { "borderColor": "none", "id": "TerminatorQhQQZ", "parentId": "", "backgroundColor": "transparent", "verticalAlignment": "Top", "horizontalAlignment": "Left", "flip": "None", "constraints": "Default", "isExpanded": true, "canShapeLayout": true, "isVisible": true, "borderWidth": 0, "zIndex": 2, "offsetX": 590, "offsetY": 130, "laneOffsetX": 0, "laneOffsetY": 0, "width": 140, "height": 40, "rotateAngle": 0, "additionalInfo": "{}", "annotations": "[{\u0022offset\u0022:{\u0022x\u0022:0.5,\u0022y\u0022:0.5},\u0022rotationReference\u0022:\u0022Parent\u0022,\u0022id\u0022:\u0022HWSxH\u0022,\u0022content\u0022:\u00223\u0022,\u0022visibility\u0022:true,\u0022constraints\u0022:4,\u0022UseTemplate\u0022:false,\u0022hyperlink\u0022:null,\u0022width\u0022:null,\u0022height\u0022:null,\u0022rotationAngle\u0022:0,\u0022style\u0022:{\u0022bold\u0022:false,\u0022color\u0022:\u0022White\u0022,\u0022fontFamily\u0022:\u0022Arial\u0022,\u0022fontSize\u0022:16,\u0022italic\u0022:false,\u0022textAlign\u0022:\u0022Center\u0022,\u0022textDecoration\u0022:\u0022None\u0022,\u0022textOverflow\u0022:\u0022Wrap\u0022,\u0022textWrapping\u0022:\u0022WrapWithOverflow\u0022,\u0022fill\u0022:\u0022transparent\u0022,\u0022gradient\u0022:null,\u0022opacity\u0022:1,\u0022strokeColor\u0022:\u0022transparent\u0022,\u0022strokeDashArray\u0022:\u0022\u0022,\u0022strokeWidth\u0022:1},\u0022horizontalAlignment\u0022:3,\u0022verticalAlignment\u0022:3,\u0022margin\u0022:{\u0022left\u0022:0,\u0022right\u0022:0,\u0022top\u0022:0,\u0022bottom\u0022:0},\u0022additionalInfo\u0022:{}}]", "ports": "[]", "fixedUserHandles": "[]", "inEdges": "[\u0022OrthogonalConnectorVyvBN\u0022]", "outEdges": "[\u0022OrthogonalConnectorkkZUS\u0022]", "pivot": "{\u0022x\u0022:0.5,\u0022y\u0022:0.5}", "shadow": "{\u0022angle\u0022:45,\u0022color\u0022:\u0022lightgrey\u0022,\u0022distance\u0022:5,\u0022opacity\u0022:0.7}", "shape": "{ \u0022type\u0022: \u0022Path\u0022, \u0022data\u0022: \u0022M 20 0 L 120 0 Q 140 0 140 20 Q 140 40 120 40 L 20 40 Q 0 40 0 20 Q 0 0 20 0 Z\u0022}", "style": "{\u0022fill\u0022:\u0022#405176\u0022,\u0022gradient\u0022:{\u0022type\u0022:\u0022Linear\u0022,\u0022stops\u0022:\u0022[{\\u0022color\\u0022:\\u0022Black\\u0022,\\u0022offset\\u0022:0,\\u0022opacity\\u0022:1},{\\u0022color\\u0022:\\u0022#405176\\u0022,\\u0022offset\\u0022:100,\\u0022opacity\\u0022:1}]\u0022,\u0022x1\u0022:0,\u0022y1\u0022:0,\u0022x2\u0022:50,\u0022y2\u0022:50},\u0022opacity\u0022:1,\u0022strokeColor\u0022:\u0022#2847e5\u0022,\u0022strokeDashArray\u0022:\u0022\u0022,\u0022strokeWidth\u0022:1}", "margin": "{\u0022left\u0022:0,\u0022right\u0022:0,\u0022top\u0022:0,\u0022bottom\u0022:0}" }, { "borderColor": "none", "id": "EventQhkqB", "parentId": "", "backgroundColor": "transparent", "verticalAlignment": "Top", "horizontalAlignment": "Left", "flip": "None", "constraints": "Default", "isExpanded": true, "canShapeLayout": true, "isVisible": true, "borderWidth": 0, "zIndex": 3, "offsetX": 170, "offsetY": 265, "laneOffsetX": 0, "laneOffsetY": 0, "width": 140, "height": 70, "rotateAngle": 0, "additionalInfo": "{}", "annotations": "[{\u0022offset\u0022:{\u0022x\u0022:0.5,\u0022y\u0022:0.5},\u0022rotationReference\u0022:\u0022Parent\u0022,\u0022id\u0022:\u0022pJSZS\u0022,\u0022content\u0022:\u00224\u0022,\u0022visibility\u0022:true,\u0022constraints\u0022:4,\u0022UseTemplate\u0022:false,\u0022hyperlink\u0022:null,\u0022width\u0022:null,\u0022height\u0022:null,\u0022rotationAngle\u0022:0,\u0022style\u0022:{\u0022bold\u0022:false,\u0022color\u0022:\u0022White\u0022,\u0022fontFamily\u0022:\u0022Arial\u0022,\u0022fontSize\u0022:16,\u0022italic\u0022:false,\u0022textAlign\u0022:\u0022Center\u0022,\u0022textDecoration\u0022:\u0022None\u0022,\u0022textOverflow\u0022:\u0022Wrap\u0022,\u0022textWrapping\u0022:\u0022WrapWithOverflow\u0022,\u0022fill\u0022:\u0022transparent\u0022,\u0022gradient\u0022:null,\u0022opacity\u0022:1,\u0022strokeColor\u0022:\u0022transparent\u0022,\u0022strokeDashArray\u0022:\u0022\u0022,\u0022strokeWidth\u0022:1},\u0022horizontalAlignment\u0022:3,\u0022verticalAlignment\u0022:3,\u0022margin\u0022:{\u0022left\u0022:0,\u0022right\u0022:0,\u0022top\u0022:0,\u0022bottom\u0022:0},\u0022additionalInfo\u0022:{}}]", "ports": "[]", "fixedUserHandles": "[]", "inEdges": "[\u0022OrthogonalConnectorkkZUS\u0022]", "outEdges": "[\u0022OrthogonalConnectorddTOM\u0022]", "pivot": "{\u0022x\u0022:0.5,\u0022y\u0022:0.5}", "shadow": "{\u0022angle\u0022:45,\u0022color\u0022:\u0022lightgrey\u0022,\u0022distance\u0022:5,\u0022opacity\u0022:0.7}", "shape": "{ \u0022type\u0022: \u0022Path\u0022, \u0022data\u0022: \u0022M 20 0 L 120 0 Q 140 0 140 20 L 140 50 Q 140 70 120 70 L 20 70 Q 0 70 0 50 L 0 20 Q 0 0 20 0 Z\u0022}", "style": "{\u0022fill\u0022:\u0022#173987\u0022,\u0022gradient\u0022:{\u0022type\u0022:\u0022Linear\u0022,\u0022stops\u0022:\u0022[{\\u0022color\\u0022:\\u0022Black\\u0022,\\u0022offset\\u0022:0,\\u0022opacity\\u0022:1},{\\u0022color\\u0022:\\u0022#173987\\u0022,\\u0022offset\\u0022:100,\\u0022opacity\\u0022:1}]\u0022,\u0022x1\u0022:0,\u0022y1\u0022:0,\u0022x2\u0022:50,\u0022y2\u0022:50},\u0022opacity\u0022:1,\u0022strokeColor\u0022:\u0022#2847e5\u0022,\u0022strokeDashArray\u0022:\u0022\u0022,\u0022strokeWidth\u0022:1}", "margin": "{\u0022left\u0022:0,\u0022right\u0022:0,\u0022top\u0022:0,\u0022bottom\u0022:0}" }, { "borderColor": "none", "id": "DelayyhTTL", "parentId": "", "backgroundColor": "transparent", "verticalAlignment": "Top", "horizontalAlignment": "Left", "flip": "None", "constraints": "Default", "isExpanded": true, "canShapeLayout": true, "isVisible": true, "borderWidth": 0, "zIndex": 4, "offsetX": 370, "offsetY": 265, "laneOffsetX": 0, "laneOffsetY": 0, "width": 140, "height": 70, "rotateAngle": 0, "additionalInfo": "{}", "annotations": "[{\u0022offset\u0022:{\u0022x\u0022:0.5,\u0022y\u0022:0.5},\u0022rotationReference\u0022:\u0022Parent\u0022,\u0022id\u0022:\u0022vTfis\u0022,\u0022content\u0022:\u00225\u0022,\u0022visibility\u0022:true,\u0022constraints\u0022:4,\u0022UseTemplate\u0022:false,\u0022hyperlink\u0022:null,\u0022width\u0022:null,\u0022height\u0022:null,\u0022rotationAngle\u0022:0,\u0022style\u0022:{\u0022bold\u0022:false,\u0022color\u0022:\u0022White\u0022,\u0022fontFamily\u0022:\u0022Arial\u0022,\u0022fontSize\u0022:16,\u0022italic\u0022:false,\u0022textAlign\u0022:\u0022Center\u0022,\u0022textDecoration\u0022:\u0022None\u0022,\u0022textOverflow\u0022:\u0022Wrap\u0022,\u0022textWrapping\u0022:\u0022WrapWithOverflow\u0022,\u0022fill\u0022:\u0022transparent\u0022,\u0022gradient\u0022:null,\u0022opacity\u0022:1,\u0022strokeColor\u0022:\u0022transparent\u0022,\u0022strokeDashArray\u0022:\u0022\u0022,\u0022strokeWidth\u0022:1},\u0022horizontalAlignment\u0022:3,\u0022verticalAlignment\u0022:3,\u0022margin\u0022:{\u0022left\u0022:0,\u0022right\u0022:0,\u0022top\u0022:0,\u0022bottom\u0022:0},\u0022additionalInfo\u0022:{}}]", "ports": "[]", "fixedUserHandles": "[]", "inEdges": "[\u0022OrthogonalConnectorddTOM\u0022]", "outEdges": "[\u0022OrthogonalConnectorZPMXf\u0022]", "pivot": "{\u0022x\u0022:0.5,\u0022y\u0022:0.5}", "shadow": "{\u0022angle\u0022:45,\u0022color\u0022:\u0022lightgrey\u0022,\u0022distance\u0022:5,\u0022opacity\u0022:0.7}", "shape": "{ \u0022type\u0022: \u0022Path\u0022, \u0022data\u0022: \u0022M 0 0 L 105 0 Q 140 0 140 35 Q 140 70 105 70 L 0 70 L 0 0 Z\u0022}", "style": "{\u0022fill\u0022:\u0022#493e13\u0022,\u0022gradient\u0022:{\u0022type\u0022:\u0022Linear\u0022,\u0022stops\u0022:\u0022[{\\u0022color\\u0022:\\u0022Black\\u0022,\\u0022offset\\u0022:0,\\u0022opacity\\u0022:1},{\\u0022color\\u0022:\\u0022#493e13\\u0022,\\u0022offset\\u0022:100,\\u0022opacity\\u0022:1}]\u0022,\u0022x1\u0022:0,\u0022y1\u0022:0,\u0022x2\u0022:50,\u0022y2\u0022:50},\u0022opacity\u0022:1,\u0022strokeColor\u0022:\u0022#2847e5\u0022,\u0022strokeDashArray\u0022:\u0022\u0022,\u0022strokeWidth\u0022:1}", "margin": "{\u0022left\u0022:0,\u0022right\u0022:0,\u0022top\u0022:0,\u0022bottom\u0022:0}" }, { "borderColor": "none", "id": "Manual-OperationnhNrx", "parentId": "", "backgroundColor": "transparent", "verticalAlignment": "Top", "horizontalAlignment": "Left", "flip": "None", "constraints": "Default", "isExpanded": true, "canShapeLayout": true, "isVisible": true, "borderWidth": 0, "zIndex": 5, "offsetX": 570, "offsetY": 265, "laneOffsetX": 0, "laneOffsetY": 0, "width": 140, "height": 70, "rotateAngle": 0, "additionalInfo": "{}", "annotations": "[{\u0022offset\u0022:{\u0022x\u0022:0.5,\u0022y\u0022:0.5},\u0022rotationReference\u0022:\u0022Parent\u0022,\u0022id\u0022:\u0022AhbXK\u0022,\u0022content\u0022:\u00226\u0022,\u0022visibility\u0022:true,\u0022constraints\u0022:4,\u0022UseTemplate\u0022:false,\u0022hyperlink\u0022:null,\u0022width\u0022:null,\u0022height\u0022:null,\u0022rotationAngle\u0022:0,\u0022style\u0022:{\u0022bold\u0022:false,\u0022color\u0022:\u0022White\u0022,\u0022fontFamily\u0022:\u0022Arial\u0022,\u0022fontSize\u0022:16,\u0022italic\u0022:false,\u0022textAlign\u0022:\u0022Center\u0022,\u0022textDecoration\u0022:\u0022None\u0022,\u0022textOverflow\u0022:\u0022Wrap\u0022,\u0022textWrapping\u0022:\u0022WrapWithOverflow\u0022,\u0022fill\u0022:\u0022transparent\u0022,\u0022gradient\u0022:null,\u0022opacity\u0022:1,\u0022strokeColor\u0022:\u0022transparent\u0022,\u0022strokeDashArray\u0022:\u0022\u0022,\u0022strokeWidth\u0022:1},\u0022horizontalAlignment\u0022:3,\u0022verticalAlignment\u0022:3,\u0022margin\u0022:{\u0022left\u0022:0,\u0022right\u0022:0,\u0022top\u0022:0,\u0022bottom\u0022:0},\u0022additionalInfo\u0022:{}}]", "ports": "[]", "fixedUserHandles": "[]", "inEdges": "[\u0022OrthogonalConnectorZPMXf\u0022]", "outEdges": "[\u0022OrthogonalConnectorawkNO\u0022]", "pivot": "{\u0022x\u0022:0.5,\u0022y\u0022:0.5}", "shadow": "{\u0022angle\u0022:45,\u0022color\u0022:\u0022lightgrey\u0022,\u0022distance\u0022:5,\u0022opacity\u0022:0.7}", "shape": "{ \u0022type\u0022: \u0022Path\u0022, \u0022data\u0022: \u0022M 0 0 L 140 0 L 115 70 L 25 70 L 0 0 Z\u0022}", "style": "{\u0022fill\u0022:\u0022#310031\u0022,\u0022gradient\u0022:{\u0022type\u0022:\u0022Linear\u0022,\u0022stops\u0022:\u0022[{\\u0022color\\u0022:\\u0022Black\\u0022,\\u0022offset\\u0022:0,\\u0022opacity\\u0022:1},{\\u0022color\\u0022:\\u0022#310031\\u0022,\\u0022offset\\u0022:100,\\u0022opacity\\u0022:1}]\u0022,\u0022x1\u0022:0,\u0022y1\u0022:0,\u0022x2\u0022:50,\u0022y2\u0022:50},\u0022opacity\u0022:1,\u0022strokeColor\u0022:\u0022#2847e5\u0022,\u0022strokeDashArray\u0022:\u0022\u0022,\u0022strokeWidth\u0022:1}", "margin": "{\u0022left\u0022:0,\u0022right\u0022:0,\u0022top\u0022:0,\u0022bottom\u0022:0}" }, { "borderColor": "none", "id": "Manual-InputQHnGK", "parentId": "", "backgroundColor": "transparent", "verticalAlignment": "Top", "horizontalAlignment": "Left", "flip": "None", "constraints": "Default", "isExpanded": true, "canShapeLayout": true, "isVisible": true, "borderWidth": 0, "zIndex": 6, "offsetX": 790, "offsetY": 265, "laneOffsetX": 0, "laneOffsetY": 0, "width": 140, "height": 70, "rotateAngle": 0, "additionalInfo": "{}", "annotations": "[{\u0022offset\u0022:{\u0022x\u0022:0.5,\u0022y\u0022:0.5},\u0022rotationReference\u0022:\u0022Parent\u0022,\u0022id\u0022:\u0022xXSZD\u0022,\u0022content\u0022:\u00227\u0022,\u0022visibility\u0022:true,\u0022constraints\u0022:4,\u0022UseTemplate\u0022:false,\u0022hyperlink\u0022:null,\u0022width\u0022:null,\u0022height\u0022:null,\u0022rotationAngle\u0022:0,\u0022style\u0022:{\u0022bold\u0022:false,\u0022color\u0022:\u0022White\u0022,\u0022fontFamily\u0022:\u0022Arial\u0022,\u0022fontSize\u0022:16,\u0022italic\u0022:false,\u0022textAlign\u0022:\u0022Center\u0022,\u0022textDecoration\u0022:\u0022None\u0022,\u0022textOverflow\u0022:\u0022Wrap\u0022,\u0022textWrapping\u0022:\u0022WrapWithOverflow\u0022,\u0022fill\u0022:\u0022transparent\u0022,\u0022gradient\u0022:null,\u0022opacity\u0022:1,\u0022strokeColor\u0022:\u0022transparent\u0022,\u0022strokeDashArray\u0022:\u0022\u0022,\u0022strokeWidth\u0022:1},\u0022horizontalAlignment\u0022:3,\u0022verticalAlignment\u0022:3,\u0022margin\u0022:{\u0022left\u0022:0,\u0022right\u0022:0,\u0022top\u0022:0,\u0022bottom\u0022:0},\u0022additionalInfo\u0022:{}}]", "ports": "[]", "fixedUserHandles": "[]", "inEdges": "[\u0022OrthogonalConnectorawkNO\u0022]", "outEdges": "[\u0022OrthogonalConnectorxHHAJ\u0022]", "pivot": "{\u0022x\u0022:0.5,\u0022y\u0022:0.5}", "shadow": "{\u0022angle\u0022:45,\u0022color\u0022:\u0022lightgrey\u0022,\u0022distance\u0022:5,\u0022opacity\u0022:0.7}", "shape": "{ \u0022type\u0022: \u0022Path\u0022, \u0022data\u0022: \u0022M 140 0 L 140 60 Q 140 70 120 70 L 10 70 Q 0 70 0 60 L 0 35 L 140 0 Z\u0022}", "style": "{\u0022fill\u0022:\u0022#4b1a4d\u0022,\u0022gradient\u0022:{\u0022type\u0022:\u0022Linear\u0022,\u0022stops\u0022:\u0022[{\\u0022color\\u0022:\\u0022Black\\u0022,\\u0022offset\\u0022:0,\\u0022opacity\\u0022:1},{\\u0022color\\u0022:\\u0022#4b1a4d\\u0022,\\u0022offset\\u0022:100,\\u0022opacity\\u0022:1}]\u0022,\u0022x1\u0022:0,\u0022y1\u0022:0,\u0022x2\u0022:50,\u0022y2\u0022:50},\u0022opacity\u0022:1,\u0022strokeColor\u0022:\u0022#2847e5\u0022,\u0022strokeDashArray\u0022:\u0022\u0022,\u0022strokeWidth\u0022:1}", "margin": "{\u0022left\u0022:0,\u0022right\u0022:0,\u0022top\u0022:0,\u0022bottom\u0022:0}" }, { "borderColor": "none", "id": "DatahUHNd", "parentId": "", "backgroundColor": "transparent", "verticalAlignment": "Top", "horizontalAlignment": "Left", "flip": "None", "constraints": "Default", "isExpanded": true, "canShapeLayout": true, "isVisible": true, "borderWidth": 0, "zIndex": 7, "offsetX": 170, "offsetY": 425, "laneOffsetX": 0, "laneOffsetY": 0, "width": 140, "height": 70, "rotateAngle": 0, "additionalInfo": "{}", "annotations": "[{\u0022offset\u0022:{\u0022x\u0022:0.5,\u0022y\u0022:0.5},\u0022rotationReference\u0022:\u0022Parent\u0022,\u0022id\u0022:\u0022pRwAT\u0022,\u0022content\u0022:\u00228\u0022,\u0022visibility\u0022:true,\u0022constraints\u0022:4,\u0022UseTemplate\u0022:false,\u0022hyperlink\u0022:null,\u0022width\u0022:null,\u0022height\u0022:null,\u0022rotationAngle\u0022:0,\u0022style\u0022:{\u0022bold\u0022:false,\u0022color\u0022:\u0022White\u0022,\u0022fontFamily\u0022:\u0022Arial\u0022,\u0022fontSize\u0022:16,\u0022italic\u0022:false,\u0022textAlign\u0022:\u0022Center\u0022,\u0022textDecoration\u0022:\u0022None\u0022,\u0022textOverflow\u0022:\u0022Wrap\u0022,\u0022textWrapping\u0022:\u0022WrapWithOverflow\u0022,\u0022fill\u0022:\u0022transparent\u0022,\u0022gradient\u0022:null,\u0022opacity\u0022:1,\u0022strokeColor\u0022:\u0022transparent\u0022,\u0022strokeDashArray\u0022:\u0022\u0022,\u0022strokeWidth\u0022:1},\u0022horizontalAlignment\u0022:3,\u0022verticalAlignment\u0022:3,\u0022margin\u0022:{\u0022left\u0022:0,\u0022right\u0022:0,\u0022top\u0022:0,\u0022bottom\u0022:0},\u0022additionalInfo\u0022:{}}]", "ports": "[]", "fixedUserHandles": "[]", "inEdges": "[\u0022OrthogonalConnectorxHHAJ\u0022]", "outEdges": "[\u0022OrthogonalConnectorSCJAd\u0022]", "pivot": "{\u0022x\u0022:0.5,\u0022y\u0022:0.5}", "shadow": "{\u0022angle\u0022:45,\u0022color\u0022:\u0022lightgrey\u0022,\u0022distance\u0022:5,\u0022opacity\u0022:0.7}", "shape": "{ \u0022type\u0022: \u0022Path\u0022, \u0022data\u0022: \u0022M 20 0 L 140 0 L 120 70 L 0 70 L 2 0 Z\u0022}", "style": "{\u0022fill\u0022:\u0022#5a1414\u0022,\u0022gradient\u0022:{\u0022type\u0022:\u0022Linear\u0022,\u0022stops\u0022:\u0022[{\\u0022color\\u0022:\\u0022Black\\u0022,\\u0022offset\\u0022:0,\\u0022opacity\\u0022:1},{\\u0022color\\u0022:\\u0022#5a1414\\u0022,\\u0022offset\\u0022:100,\\u0022opacity\\u0022:1}]\u0022,\u0022x1\u0022:0,\u0022y1\u0022:0,\u0022x2\u0022:50,\u0022y2\u0022:50},\u0022opacity\u0022:1,\u0022strokeColor\u0022:\u0022#2847e5\u0022,\u0022strokeDashArray\u0022:\u0022\u0022,\u0022strokeWidth\u0022:1}", "margin": "{\u0022left\u0022:0,\u0022right\u0022:0,\u0022top\u0022:0,\u0022bottom\u0022:0}" }, { "borderColor": "none", "id": "CardeUkzg", "parentId": "", "backgroundColor": "transparent", "verticalAlignment": "Top", "horizontalAlignment": "Left", "flip": "None", "constraints": "Default", "isExpanded": true, "canShapeLayout": true, "isVisible": true, "borderWidth": 0, "zIndex": 8, "offsetX": 370, "offsetY": 425, "laneOffsetX": 0, "laneOffsetY": 0, "width": 140, "height": 70, "rotateAngle": 0, "additionalInfo": "{}", "annotations": "[{\u0022offset\u0022:{\u0022x\u0022:0.5,\u0022y\u0022:0.5},\u0022rotationReference\u0022:\u0022Parent\u0022,\u0022id\u0022:\u0022QFPRW\u0022,\u0022content\u0022:\u00229\u0022,\u0022visibility\u0022:true,\u0022constraints\u0022:4,\u0022UseTemplate\u0022:false,\u0022hyperlink\u0022:null,\u0022width\u0022:null,\u0022height\u0022:null,\u0022rotationAngle\u0022:0,\u0022style\u0022:{\u0022bold\u0022:false,\u0022color\u0022:\u0022White\u0022,\u0022fontFamily\u0022:\u0022Arial\u0022,\u0022fontSize\u0022:16,\u0022italic\u0022:false,\u0022textAlign\u0022:\u0022Center\u0022,\u0022textDecoration\u0022:\u0022None\u0022,\u0022textOverflow\u0022:\u0022Wrap\u0022,\u0022textWrapping\u0022:\u0022WrapWithOverflow\u0022,\u0022fill\u0022:\u0022transparent\u0022,\u0022gradient\u0022:null,\u0022opacity\u0022:1,\u0022strokeColor\u0022:\u0022transparent\u0022,\u0022strokeDashArray\u0022:\u0022\u0022,\u0022strokeWidth\u0022:1},\u0022horizontalAlignment\u0022:3,\u0022verticalAlignment\u0022:3,\u0022margin\u0022:{\u0022left\u0022:0,\u0022right\u0022:0,\u0022top\u0022:0,\u0022bottom\u0022:0},\u0022additionalInfo\u0022:{}}]", "ports": "[]", "fixedUserHandles": "[]", "inEdges": "[\u0022OrthogonalConnectorSCJAd\u0022]", "outEdges": "[]", "pivot": "{\u0022x\u0022:0.5,\u0022y\u0022:0.5}", "shadow": "{\u0022angle\u0022:45,\u0022color\u0022:\u0022lightgrey\u0022,\u0022distance\u0022:5,\u0022opacity\u0022:0.7}", "shape": "{ \u0022type\u0022: \u0022Path\u0022, \u0022data\u0022: \u0022M 35 0 L 130 0 Q 140 0 140 10 L 140 60 Q 140 70 130 70 L 10 70 Q 0 70 0 60 L 0 35 L 35 0 Z\u0022}", "style": "{\u0022fill\u0022:\u0022#68682f\u0022,\u0022gradient\u0022:{\u0022type\u0022:\u0022Linear\u0022,\u0022stops\u0022:\u0022[{\\u0022color\\u0022:\\u0022Black\\u0022,\\u0022offset\\u0022:0,\\u0022opacity\\u0022:1},{\\u0022color\\u0022:\\u0022#68682f\\u0022,\\u0022offset\\u0022:100,\\u0022opacity\\u0022:1}]\u0022,\u0022x1\u0022:0,\u0022y1\u0022:0,\u0022x2\u0022:50,\u0022y2\u0022:50},\u0022opacity\u0022:1,\u0022strokeColor\u0022:\u0022#2847e5\u0022,\u0022strokeDashArray\u0022:\u0022\u0022,\u0022strokeWidth\u0022:1}", "margin": "{\u0022left\u0022:0,\u0022right\u0022:0,\u0022top\u0022:0,\u0022bottom\u0022:0}" } ], "connectors": [ { "constraints": 144958, "sourcePoint": { "x": 219.86, "y": 130 }, "targetPoint": { "x": 300, "y": 130 }, "shape": null, "fixedUserHandles": [], "sourceID": "DecisionMsWKW", "targetID": "ProcessvFaSO", "sourcePortID": "", "targetPortID": "", "cornerRadius": 0, "hitPadding": 10, "sourcePadding": 0, "targetPadding": 0, "connectionPadding": 0, "bridgeSpace": 10, "type": 1, "segments": [ { "type": "Orthogonal", "allowDrag": true } ], "SegmentThumbSettings": { "Shape": 0 }, "annotations": [ { "offset": 0.5, "displacement": { "x": 0, "y": 0 }, "alignment": 0, "segmentAngle": false, "id": "leCNF", "content": "", "visibility": true, "constraints": 4, "UseTemplate": false, "hyperlink": null, "width": null, "height": null, "rotationAngle": 0, "style": { "bold": false, "color": "Black", "fontFamily": "Arial", "fontSize": 12, "italic": false, "textAlign": "Center", "textDecoration": "None", "textOverflow": "Wrap", "textWrapping": "WrapWithOverflow", "fill": "White", "gradient": null, "opacity": 1, "strokeColor": "White", "strokeDashArray": "", "strokeWidth": 4 }, "horizontalAlignment": 3, "verticalAlignment": 3, "margin": { "left": 0, "right": 0, "top": 0, "bottom": 0 }, "additionalInfo": {} } ], "style": { "fill": "transparent", "gradient": null, "opacity": 1, "strokeColor": "black", "strokeDashArray": "", "strokeWidth": 1 }, "sourceDecorator": { "width": 10, "height": 10, "shape": 1, "pathData": "", "pivot": { "x": 0, "y": 0.5 }, "style": { "fill": "black", "gradient": null, "opacity": 1, "strokeColor": "black", "strokeDashArray": "", "strokeWidth": 1 } }, "targetDecorator": { "width": 10, "height": 10, "shape": 0, "pathData": "", "pivot": { "x": 0, "y": 0.5 }, "style": { "fill": "black", "gradient": null, "opacity": 1, "strokeColor": "black", "strokeDashArray": "", "strokeWidth": 1 } }, "BezierConnectorSettings": { "ControlPointsVisibility": 14, "SegmentEditOrientation": 1, "Smoothness": 6, "AllowSegmentsReset": true }, "id": "OrthogonalConnectorxVBwP", "SearchTags": [], "tooltip": null, "zIndex": 9, "margin": { "left": 0, "right": 0, "top": 0, "bottom": 0 }, "isVisible": true, "canAutoLayout": true, "additionalInfo": {}, "flip": 0, "FlipMode": 3 }, { "constraints": 144958, "sourcePoint": { "x": 440, "y": 130 }, "targetPoint": { "x": 520, "y": 130 }, "shape": null, "fixedUserHandles": [], "sourceID": "ProcessvFaSO", "targetID": "TerminatorQhQQZ", "sourcePortID": "", "targetPortID": "", "cornerRadius": 0, "hitPadding": 10, "sourcePadding": 0, "targetPadding": 0, "connectionPadding": 0, "bridgeSpace": 10, "type": 1, "segments": [ { "type": "Orthogonal", "allowDrag": true } ], "SegmentThumbSettings": { "Shape": 0 }, "annotations": [ { "offset": 0.5, "displacement": { "x": 0, "y": 0 }, "alignment": 0, "segmentAngle": false, "id": "hitEk", "content": "", "visibility": true, "constraints": 4, "UseTemplate": false, "hyperlink": null, "width": null, "height": null, "rotationAngle": 0, "style": { "bold": false, "color": "Black", "fontFamily": "Arial", "fontSize": 12, "italic": false, "textAlign": "Center", "textDecoration": "None", "textOverflow": "Wrap", "textWrapping": "WrapWithOverflow", "fill": "White", "gradient": null, "opacity": 1, "strokeColor": "White", "strokeDashArray": "", "strokeWidth": 4 }, "horizontalAlignment": 3, "verticalAlignment": 3, "margin": { "left": 0, "right": 0, "top": 0, "bottom": 0 }, "additionalInfo": {} } ], "style": { "fill": "transparent", "gradient": null, "opacity": 1, "strokeColor": "black", "strokeDashArray": "", "strokeWidth": 1 }, "sourceDecorator": { "width": 10, "height": 10, "shape": 1, "pathData": "", "pivot": { "x": 0, "y": 0.5 }, "style": { "fill": "black", "gradient": null, "opacity": 1, "strokeColor": "black", "strokeDashArray": "", "strokeWidth": 1 } }, "targetDecorator": { "width": 10, "height": 10, "shape": 0, "pathData": "", "pivot": { "x": 0, "y": 0.5 }, "style": { "fill": "black", "gradient": null, "opacity": 1, "strokeColor": "black", "strokeDashArray": "", "strokeWidth": 1 } }, "BezierConnectorSettings": { "ControlPointsVisibility": 14, "SegmentEditOrientation": 1, "Smoothness": 6, "AllowSegmentsReset": true }, "id": "OrthogonalConnectorVyvBN", "SearchTags": [], "tooltip": null, "zIndex": 10, "margin": { "left": 0, "right": 0, "top": 0, "bottom": 0 }, "isVisible": true, "canAutoLayout": true, "additionalInfo": {}, "flip": 0, "FlipMode": 3 }, { "constraints": 144958, "sourcePoint": { "x": 590, "y": 150 }, "targetPoint": { "x": 170, "y": 230 }, "shape": null, "fixedUserHandles": [], "sourceID": "TerminatorQhQQZ", "targetID": "EventQhkqB", "sourcePortID": "", "targetPortID": "", "cornerRadius": 0, "hitPadding": 10, "sourcePadding": 0, "targetPadding": 0, "connectionPadding": 0, "bridgeSpace": 10, "type": 1, "segments": [ { "type": "Orthogonal", "allowDrag": true } ], "SegmentThumbSettings": { "Shape": 0 }, "annotations": [ { "offset": 0.5, "displacement": { "x": 0, "y": 0 }, "alignment": 0, "segmentAngle": false, "id": "GALVb", "content": "", "visibility": true, "constraints": 4, "UseTemplate": false, "hyperlink": null, "width": null, "height": null, "rotationAngle": 0, "style": { "bold": false, "color": "Black", "fontFamily": "Arial", "fontSize": 12, "italic": false, "textAlign": "Center", "textDecoration": "None", "textOverflow": "Wrap", "textWrapping": "WrapWithOverflow", "fill": "White", "gradient": null, "opacity": 1, "strokeColor": "White", "strokeDashArray": "", "strokeWidth": 4 }, "horizontalAlignment": 3, "verticalAlignment": 3, "margin": { "left": 0, "right": 0, "top": 0, "bottom": 0 }, "additionalInfo": {} } ], "style": { "fill": "transparent", "gradient": null, "opacity": 1, "strokeColor": "black", "strokeDashArray": "", "strokeWidth": 1 }, "sourceDecorator": { "width": 10, "height": 10, "shape": 1, "pathData": "", "pivot": { "x": 0, "y": 0.5 }, "style": { "fill": "black", "gradient": null, "opacity": 1, "strokeColor": "black", "strokeDashArray": "", "strokeWidth": 1 } }, "targetDecorator": { "width": 10, "height": 10, "shape": 0, "pathData": "", "pivot": { "x": 0, "y": 0.5 }, "style": { "fill": "black", "gradient": null, "opacity": 1, "strokeColor": "black", "strokeDashArray": "", "strokeWidth": 1 } }, "BezierConnectorSettings": { "ControlPointsVisibility": 14, "SegmentEditOrientation": 1, "Smoothness": 6, "AllowSegmentsReset": true }, "id": "OrthogonalConnectorkkZUS", "SearchTags": [], "tooltip": null, "zIndex": 11, "margin": { "left": 0, "right": 0, "top": 0, "bottom": 0 }, "isVisible": true, "canAutoLayout": true, "additionalInfo": {}, "flip": 0, "FlipMode": 3 }, { "constraints": 144958, "sourcePoint": { "x": 240, "y": 265 }, "targetPoint": { "x": 300, "y": 265 }, "shape": null, "fixedUserHandles": [], "sourceID": "EventQhkqB", "targetID": "DelayyhTTL", "sourcePortID": "", "targetPortID": "", "cornerRadius": 0, "hitPadding": 10, "sourcePadding": 0, "targetPadding": 0, "connectionPadding": 0, "bridgeSpace": 10, "type": 1, "segments": [ { "type": "Orthogonal", "allowDrag": true } ], "SegmentThumbSettings": { "Shape": 0 }, "annotations": [ { "offset": 0.5, "displacement": { "x": 0, "y": 0 }, "alignment": 0, "segmentAngle": false, "id": "IxfLA", "content": "", "visibility": true, "constraints": 4, "UseTemplate": false, "hyperlink": null, "width": null, "height": null, "rotationAngle": 0, "style": { "bold": false, "color": "Black", "fontFamily": "Arial", "fontSize": 12, "italic": false, "textAlign": "Center", "textDecoration": "None", "textOverflow": "Wrap", "textWrapping": "WrapWithOverflow", "fill": "White", "gradient": null, "opacity": 1, "strokeColor": "White", "strokeDashArray": "", "strokeWidth": 4 }, "horizontalAlignment": 3, "verticalAlignment": 3, "margin": { "left": 0, "right": 0, "top": 0, "bottom": 0 }, "additionalInfo": {} } ], "style": { "fill": "transparent", "gradient": null, "opacity": 1, "strokeColor": "black", "strokeDashArray": "", "strokeWidth": 1 }, "sourceDecorator": { "width": 10, "height": 10, "shape": 1, "pathData": "", "pivot": { "x": 0, "y": 0.5 }, "style": { "fill": "black", "gradient": null, "opacity": 1, "strokeColor": "black", "strokeDashArray": "", "strokeWidth": 1 } }, "targetDecorator": { "width": 10, "height": 10, "shape": 0, "pathData": "", "pivot": { "x": 0, "y": 0.5 }, "style": { "fill": "black", "gradient": null, "opacity": 1, "strokeColor": "black", "strokeDashArray": "", "strokeWidth": 1 } }, "BezierConnectorSettings": { "ControlPointsVisibility": 14, "SegmentEditOrientation": 1, "Smoothness": 6, "AllowSegmentsReset": true }, "id": "OrthogonalConnectorddTOM", "SearchTags": [], "tooltip": null, "zIndex": 12, "margin": { "left": 0, "right": 0, "top": 0, "bottom": 0 }, "isVisible": true, "canAutoLayout": true, "additionalInfo": {}, "flip": 0, "FlipMode": 3 }, { "constraints": 144958, "sourcePoint": { "x": 440, "y": 265 }, "targetPoint": { "x": 512.5, "y": 265 }, "shape": null, "fixedUserHandles": [], "sourceID": "DelayyhTTL", "targetID": "Manual-OperationnhNrx", "sourcePortID": "", "targetPortID": "", "cornerRadius": 0, "hitPadding": 10, "sourcePadding": 0, "targetPadding": 0, "connectionPadding": 0, "bridgeSpace": 10, "type": 1, "segments": [ { "type": "Orthogonal", "allowDrag": true } ], "SegmentThumbSettings": { "Shape": 0 }, "annotations": [ { "offset": 0.5, "displacement": { "x": 0, "y": 0 }, "alignment": 0, "segmentAngle": false, "id": "IBdoy", "content": "", "visibility": true, "constraints": 4, "UseTemplate": false, "hyperlink": null, "width": null, "height": null, "rotationAngle": 0, "style": { "bold": false, "color": "Black", "fontFamily": "Arial", "fontSize": 12, "italic": false, "textAlign": "Center", "textDecoration": "None", "textOverflow": "Wrap", "textWrapping": "WrapWithOverflow", "fill": "White", "gradient": null, "opacity": 1, "strokeColor": "White", "strokeDashArray": "", "strokeWidth": 4 }, "horizontalAlignment": 3, "verticalAlignment": 3, "margin": { "left": 0, "right": 0, "top": 0, "bottom": 0 }, "additionalInfo": {} } ], "style": { "fill": "transparent", "gradient": null, "opacity": 1, "strokeColor": "black", "strokeDashArray": "", "strokeWidth": 1 }, "sourceDecorator": { "width": 10, "height": 10, "shape": 1, "pathData": "", "pivot": { "x": 0, "y": 0.5 }, "style": { "fill": "black", "gradient": null, "opacity": 1, "strokeColor": "black", "strokeDashArray": "", "strokeWidth": 1 } }, "targetDecorator": { "width": 10, "height": 10, "shape": 0, "pathData": "", "pivot": { "x": 0, "y": 0.5 }, "style": { "fill": "black", "gradient": null, "opacity": 1, "strokeColor": "black", "strokeDashArray": "", "strokeWidth": 1 } }, "BezierConnectorSettings": { "ControlPointsVisibility": 14, "SegmentEditOrientation": 1, "Smoothness": 6, "AllowSegmentsReset": true }, "id": "OrthogonalConnectorZPMXf", "SearchTags": [], "tooltip": null, "zIndex": 13, "margin": { "left": 0, "right": 0, "top": 0, "bottom": 0 }, "isVisible": true, "canAutoLayout": true, "additionalInfo": {}, "flip": 0, "FlipMode": 3 }, { "constraints": 144958, "sourcePoint": { "x": 627.49, "y": 265 }, "targetPoint": { "x": 721.42, "y": 265 }, "shape": null, "fixedUserHandles": [], "sourceID": "Manual-OperationnhNrx", "targetID": "Manual-InputQHnGK", "sourcePortID": "", "targetPortID": "", "cornerRadius": 0, "hitPadding": 10, "sourcePadding": 0, "targetPadding": 0, "connectionPadding": 0, "bridgeSpace": 10, "type": 1, "segments": [ { "type": "Orthogonal", "allowDrag": true } ], "SegmentThumbSettings": { "Shape": 0 }, "annotations": [ { "offset": 0.5, "displacement": { "x": 0, "y": 0 }, "alignment": 0, "segmentAngle": false, "id": "Htrhc", "content": "", "visibility": true, "constraints": 4, "UseTemplate": false, "hyperlink": null, "width": null, "height": null, "rotationAngle": 0, "style": { "bold": false, "color": "Black", "fontFamily": "Arial", "fontSize": 12, "italic": false, "textAlign": "Center", "textDecoration": "None", "textOverflow": "Wrap", "textWrapping": "WrapWithOverflow", "fill": "White", "gradient": null, "opacity": 1, "strokeColor": "White", "strokeDashArray": "", "strokeWidth": 4 }, "horizontalAlignment": 3, "verticalAlignment": 3, "margin": { "left": 0, "right": 0, "top": 0, "bottom": 0 }, "additionalInfo": {} } ], "style": { "fill": "transparent", "gradient": null, "opacity": 1, "strokeColor": "black", "strokeDashArray": "", "strokeWidth": 1 }, "sourceDecorator": { "width": 10, "height": 10, "shape": 1, "pathData": "", "pivot": { "x": 0, "y": 0.5 }, "style": { "fill": "black", "gradient": null, "opacity": 1, "strokeColor": "black", "strokeDashArray": "", "strokeWidth": 1 } }, "targetDecorator": { "width": 10, "height": 10, "shape": 0, "pathData": "", "pivot": { "x": 0, "y": 0.5 }, "style": { "fill": "black", "gradient": null, "opacity": 1, "strokeColor": "black", "strokeDashArray": "", "strokeWidth": 1 } }, "BezierConnectorSettings": { "ControlPointsVisibility": 14, "SegmentEditOrientation": 1, "Smoothness": 6, "AllowSegmentsReset": true }, "id": "OrthogonalConnectorawkNO", "SearchTags": [], "tooltip": null, "zIndex": 14, "margin": { "left": 0, "right": 0, "top": 0, "bottom": 0 }, "isVisible": true, "canAutoLayout": true, "additionalInfo": {}, "flip": 0, "FlipMode": 3 }, { "constraints": 144958, "sourcePoint": { "x": 790, "y": 300 }, "targetPoint": { "x": 170, "y": 390 }, "shape": null, "fixedUserHandles": [], "sourceID": "Manual-InputQHnGK", "targetID": "DatahUHNd", "sourcePortID": "", "targetPortID": "", "cornerRadius": 0, "hitPadding": 10, "sourcePadding": 0, "targetPadding": 0, "connectionPadding": 0, "bridgeSpace": 10, "type": 1, "segments": [ { "type": "Orthogonal", "allowDrag": true } ], "SegmentThumbSettings": { "Shape": 0 }, "annotations": [ { "offset": 0.5, "displacement": { "x": 0, "y": 0 }, "alignment": 0, "segmentAngle": false, "id": "iGoIO", "content": "", "visibility": true, "constraints": 4, "UseTemplate": false, "hyperlink": null, "width": null, "height": null, "rotationAngle": 0, "style": { "bold": false, "color": "Black", "fontFamily": "Arial", "fontSize": 12, "italic": false, "textAlign": "Center", "textDecoration": "None", "textOverflow": "Wrap", "textWrapping": "WrapWithOverflow", "fill": "White", "gradient": null, "opacity": 1, "strokeColor": "White", "strokeDashArray": "", "strokeWidth": 4 }, "horizontalAlignment": 3, "verticalAlignment": 3, "margin": { "left": 0, "right": 0, "top": 0, "bottom": 0 }, "additionalInfo": {} } ], "style": { "fill": "transparent", "gradient": null, "opacity": 1, "strokeColor": "black", "strokeDashArray": "", "strokeWidth": 1 }, "sourceDecorator": { "width": 10, "height": 10, "shape": 1, "pathData": "", "pivot": { "x": 0, "y": 0.5 }, "style": { "fill": "black", "gradient": null, "opacity": 1, "strokeColor": "black", "strokeDashArray": "", "strokeWidth": 1 } }, "targetDecorator": { "width": 10, "height": 10, "shape": 0, "pathData": "", "pivot": { "x": 0, "y": 0.5 }, "style": { "fill": "black", "gradient": null, "opacity": 1, "strokeColor": "black", "strokeDashArray": "", "strokeWidth": 1 } }, "BezierConnectorSettings": { "ControlPointsVisibility": 14, "SegmentEditOrientation": 1, "Smoothness": 6, "AllowSegmentsReset": true }, "id": "OrthogonalConnectorxHHAJ", "SearchTags": [], "tooltip": null, "zIndex": 15, "margin": { "left": 0, "right": 0, "top": 0, "bottom": 0 }, "isVisible": true, "canAutoLayout": true, "additionalInfo": {}, "flip": 0, "FlipMode": 3 }, { "constraints": 144958, "sourcePoint": { "x": 230, "y": 425 }, "targetPoint": { "x": 300.38, "y": 425 }, "shape": null, "fixedUserHandles": [], "sourceID": "DatahUHNd", "targetID": "CardeUkzg", "sourcePortID": "", "targetPortID": "", "cornerRadius": 0, "hitPadding": 10, "sourcePadding": 0, "targetPadding": 0, "connectionPadding": 0, "bridgeSpace": 10, "type": 1, "segments": [ { "type": "Orthogonal", "allowDrag": true } ], "SegmentThumbSettings": { "Shape": 0 }, "annotations": [ { "offset": 0.5, "displacement": { "x": 0, "y": 0 }, "alignment": 0, "segmentAngle": false, "id": "tHIen", "content": "", "visibility": true, "constraints": 4, "UseTemplate": false, "hyperlink": null, "width": null, "height": null, "rotationAngle": 0, "style": { "bold": false, "color": "Black", "fontFamily": "Arial", "fontSize": 12, "italic": false, "textAlign": "Center", "textDecoration": "None", "textOverflow": "Wrap", "textWrapping": "WrapWithOverflow", "fill": "White", "gradient": null, "opacity": 1, "strokeColor": "White", "strokeDashArray": "", "strokeWidth": 4 }, "horizontalAlignment": 3, "verticalAlignment": 3, "margin": { "left": 0, "right": 0, "top": 0, "bottom": 0 }, "additionalInfo": {} } ], "style": { "fill": "transparent", "gradient": null, "opacity": 1, "strokeColor": "black", "strokeDashArray": "", "strokeWidth": 1 }, "sourceDecorator": { "width": 10, "height": 10, "shape": 1, "pathData": "", "pivot": { "x": 0, "y": 0.5 }, "style": { "fill": "black", "gradient": null, "opacity": 1, "strokeColor": "black", "strokeDashArray": "", "strokeWidth": 1 } }, "targetDecorator": { "width": 10, "height": 10, "shape": 0, "pathData": "", "pivot": { "x": 0, "y": 0.5 }, "style": { "fill": "black", "gradient": null, "opacity": 1, "strokeColor": "black", "strokeDashArray": "", "strokeWidth": 1 } }, "BezierConnectorSettings": { "ControlPointsVisibility": 14, "SegmentEditOrientation": 1, "Smoothness": 6, "AllowSegmentsReset": true }, "id": "OrthogonalConnectorSCJAd", "SearchTags": [], "tooltip": null, "zIndex": 16, "margin": { "left": 0, "right": 0, "top": 0, "bottom": 0 }, "isVisible": true, "canAutoLayout": true, "additionalInfo": {}, "flip": 0, "FlipMode": 3 } ], "swimlanes": [], "enableConnectorSplitting": false} \ No newline at end of file diff --git a/KB-Samples/LargeDiagram/wwwroot/app.css b/KB-Samples/LargeDiagram/wwwroot/app.css new file mode 100644 index 00000000..73a69d6f --- /dev/null +++ b/KB-Samples/LargeDiagram/wwwroot/app.css @@ -0,0 +1,60 @@ +html, body { + font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; +} + +a, .btn-link { + color: #006bb7; +} + +.btn-primary { + color: #fff; + background-color: #1b6ec2; + border-color: #1861ac; +} + +.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus { + box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb; +} + +.content { + padding-top: 1.1rem; +} + +h1:focus { + outline: none; +} + +.valid.modified:not([type=checkbox]) { + outline: 1px solid #26b050; +} + +.invalid { + outline: 1px solid #e50000; +} + +.validation-message { + color: #e50000; +} + +.blazor-error-boundary { + background: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNDkiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIG92ZXJmbG93PSJoaWRkZW4iPjxkZWZzPjxjbGlwUGF0aCBpZD0iY2xpcDAiPjxyZWN0IHg9IjIzNSIgeT0iNTEiIHdpZHRoPSI1NiIgaGVpZ2h0PSI0OSIvPjwvY2xpcFBhdGg+PC9kZWZzPjxnIGNsaXAtcGF0aD0idXJsKCNjbGlwMCkiIHRyYW5zZm9ybT0idHJhbnNsYXRlKC0yMzUgLTUxKSI+PHBhdGggZD0iTTI2My41MDYgNTFDMjY0LjcxNyA1MSAyNjUuODEzIDUxLjQ4MzcgMjY2LjYwNiA1Mi4yNjU4TDI2Ny4wNTIgNTIuNzk4NyAyNjcuNTM5IDUzLjYyODMgMjkwLjE4NSA5Mi4xODMxIDI5MC41NDUgOTIuNzk1IDI5MC42NTYgOTIuOTk2QzI5MC44NzcgOTMuNTEzIDI5MSA5NC4wODE1IDI5MSA5NC42NzgyIDI5MSA5Ny4wNjUxIDI4OS4wMzggOTkgMjg2LjYxNyA5OUwyNDAuMzgzIDk5QzIzNy45NjMgOTkgMjM2IDk3LjA2NTEgMjM2IDk0LjY3ODIgMjM2IDk0LjM3OTkgMjM2LjAzMSA5NC4wODg2IDIzNi4wODkgOTMuODA3MkwyMzYuMzM4IDkzLjAxNjIgMjM2Ljg1OCA5Mi4xMzE0IDI1OS40NzMgNTMuNjI5NCAyNTkuOTYxIDUyLjc5ODUgMjYwLjQwNyA1Mi4yNjU4QzI2MS4yIDUxLjQ4MzcgMjYyLjI5NiA1MSAyNjMuNTA2IDUxWk0yNjMuNTg2IDY2LjAxODNDMjYwLjczNyA2Ni4wMTgzIDI1OS4zMTMgNjcuMTI0NSAyNTkuMzEzIDY5LjMzNyAyNTkuMzEzIDY5LjYxMDIgMjU5LjMzMiA2OS44NjA4IDI1OS4zNzEgNzAuMDg4N0wyNjEuNzk1IDg0LjAxNjEgMjY1LjM4IDg0LjAxNjEgMjY3LjgyMSA2OS43NDc1QzI2Ny44NiA2OS43MzA5IDI2Ny44NzkgNjkuNTg3NyAyNjcuODc5IDY5LjMxNzkgMjY3Ljg3OSA2Ny4xMTgyIDI2Ni40NDggNjYuMDE4MyAyNjMuNTg2IDY2LjAxODNaTTI2My41NzYgODYuMDU0N0MyNjEuMDQ5IDg2LjA1NDcgMjU5Ljc4NiA4Ny4zMDA1IDI1OS43ODYgODkuNzkyMSAyNTkuNzg2IDkyLjI4MzcgMjYxLjA0OSA5My41Mjk1IDI2My41NzYgOTMuNTI5NSAyNjYuMTE2IDkzLjUyOTUgMjY3LjM4NyA5Mi4yODM3IDI2Ny4zODcgODkuNzkyMSAyNjcuMzg3IDg3LjMwMDUgMjY2LjExNiA4Ni4wNTQ3IDI2My41NzYgODYuMDU0N1oiIGZpbGw9IiNGRkU1MDAiIGZpbGwtcnVsZT0iZXZlbm9kZCIvPjwvZz48L3N2Zz4=) no-repeat 1rem/1.8rem, #b32121; + padding: 1rem 1rem 1rem 3.7rem; + color: white; +} + + .blazor-error-boundary::after { + content: "An error has occurred." + } + +.darker-border-checkbox.form-check-input { + border-color: #929292; +} + +.form-floating > .form-control-plaintext::placeholder, .form-floating > .form-control::placeholder { + color: var(--bs-secondary-color); + text-align: end; +} + +.form-floating > .form-control-plaintext:focus::placeholder, .form-floating > .form-control:focus::placeholder { + text-align: start; +} \ No newline at end of file diff --git a/KB-Samples/LargeDiagram/wwwroot/bootstrap/bootstrap.min.css b/KB-Samples/LargeDiagram/wwwroot/bootstrap/bootstrap.min.css new file mode 100644 index 00000000..02ae65b5 --- /dev/null +++ b/KB-Samples/LargeDiagram/wwwroot/bootstrap/bootstrap.min.css @@ -0,0 +1,7 @@ +@charset "UTF-8";/*! + * Bootstrap v5.1.0 (https://getbootstrap.com/) + * Copyright 2011-2021 The Bootstrap Authors + * Copyright 2011-2021 Twitter, Inc. + * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE) + */:root{--bs-blue:#0d6efd;--bs-indigo:#6610f2;--bs-purple:#6f42c1;--bs-pink:#d63384;--bs-red:#dc3545;--bs-orange:#fd7e14;--bs-yellow:#ffc107;--bs-green:#198754;--bs-teal:#20c997;--bs-cyan:#0dcaf0;--bs-white:#fff;--bs-gray:#6c757d;--bs-gray-dark:#343a40;--bs-gray-100:#f8f9fa;--bs-gray-200:#e9ecef;--bs-gray-300:#dee2e6;--bs-gray-400:#ced4da;--bs-gray-500:#adb5bd;--bs-gray-600:#6c757d;--bs-gray-700:#495057;--bs-gray-800:#343a40;--bs-gray-900:#212529;--bs-primary:#0d6efd;--bs-secondary:#6c757d;--bs-success:#198754;--bs-info:#0dcaf0;--bs-warning:#ffc107;--bs-danger:#dc3545;--bs-light:#f8f9fa;--bs-dark:#212529;--bs-primary-rgb:13,110,253;--bs-secondary-rgb:108,117,125;--bs-success-rgb:25,135,84;--bs-info-rgb:13,202,240;--bs-warning-rgb:255,193,7;--bs-danger-rgb:220,53,69;--bs-light-rgb:248,249,250;--bs-dark-rgb:33,37,41;--bs-white-rgb:255,255,255;--bs-black-rgb:0,0,0;--bs-body-rgb:33,37,41;--bs-font-sans-serif:system-ui,-apple-system,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans","Liberation Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";--bs-font-monospace:SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace;--bs-gradient:linear-gradient(180deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0));--bs-body-font-family:var(--bs-font-sans-serif);--bs-body-font-size:1rem;--bs-body-font-weight:400;--bs-body-line-height:1.5;--bs-body-color:#212529;--bs-body-bg:#fff}*,::after,::before{box-sizing:border-box}@media (prefers-reduced-motion:no-preference){:root{scroll-behavior:smooth}}body{margin:0;font-family:var(--bs-body-font-family);font-size:var(--bs-body-font-size);font-weight:var(--bs-body-font-weight);line-height:var(--bs-body-line-height);color:var(--bs-body-color);text-align:var(--bs-body-text-align);background-color:var(--bs-body-bg);-webkit-text-size-adjust:100%;-webkit-tap-highlight-color:transparent}hr{margin:1rem 0;color:inherit;background-color:currentColor;border:0;opacity:.25}hr:not([size]){height:1px}.h1,.h2,.h3,.h4,.h5,.h6,h1,h2,h3,h4,h5,h6{margin-top:0;margin-bottom:.5rem;font-weight:500;line-height:1.2}.h1,h1{font-size:calc(1.375rem + 1.5vw)}@media (min-width:1200px){.h1,h1{font-size:2.5rem}}.h2,h2{font-size:calc(1.325rem + .9vw)}@media (min-width:1200px){.h2,h2{font-size:2rem}}.h3,h3{font-size:calc(1.3rem + .6vw)}@media (min-width:1200px){.h3,h3{font-size:1.75rem}}.h4,h4{font-size:calc(1.275rem + .3vw)}@media (min-width:1200px){.h4,h4{font-size:1.5rem}}.h5,h5{font-size:1.25rem}.h6,h6{font-size:1rem}p{margin-top:0;margin-bottom:1rem}abbr[data-bs-original-title],abbr[title]{-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:help;-webkit-text-decoration-skip-ink:none;text-decoration-skip-ink:none}address{margin-bottom:1rem;font-style:normal;line-height:inherit}ol,ul{padding-left:2rem}dl,ol,ul{margin-top:0;margin-bottom:1rem}ol ol,ol ul,ul ol,ul ul{margin-bottom:0}dt{font-weight:700}dd{margin-bottom:.5rem;margin-left:0}blockquote{margin:0 0 1rem}b,strong{font-weight:bolder}.small,small{font-size:.875em}.mark,mark{padding:.2em;background-color:#fcf8e3}sub,sup{position:relative;font-size:.75em;line-height:0;vertical-align:baseline}sub{bottom:-.25em}sup{top:-.5em}a{color:#0d6efd;text-decoration:underline}a:hover{color:#0a58ca}a:not([href]):not([class]),a:not([href]):not([class]):hover{color:inherit;text-decoration:none}code,kbd,pre,samp{font-family:var(--bs-font-monospace);font-size:1em;direction:ltr;unicode-bidi:bidi-override}pre{display:block;margin-top:0;margin-bottom:1rem;overflow:auto;font-size:.875em}pre code{font-size:inherit;color:inherit;word-break:normal}code{font-size:.875em;color:#d63384;word-wrap:break-word}a>code{color:inherit}kbd{padding:.2rem .4rem;font-size:.875em;color:#fff;background-color:#212529;border-radius:.2rem}kbd kbd{padding:0;font-size:1em;font-weight:700}figure{margin:0 0 1rem}img,svg{vertical-align:middle}table{caption-side:bottom;border-collapse:collapse}caption{padding-top:.5rem;padding-bottom:.5rem;color:#6c757d;text-align:left}th{text-align:inherit;text-align:-webkit-match-parent}tbody,td,tfoot,th,thead,tr{border-color:inherit;border-style:solid;border-width:0}label{display:inline-block}button{border-radius:0}button:focus:not(:focus-visible){outline:0}button,input,optgroup,select,textarea{margin:0;font-family:inherit;font-size:inherit;line-height:inherit}button,select{text-transform:none}[role=button]{cursor:pointer}select{word-wrap:normal}select:disabled{opacity:1}[list]::-webkit-calendar-picker-indicator{display:none}[type=button],[type=reset],[type=submit],button{-webkit-appearance:button}[type=button]:not(:disabled),[type=reset]:not(:disabled),[type=submit]:not(:disabled),button:not(:disabled){cursor:pointer}::-moz-focus-inner{padding:0;border-style:none}textarea{resize:vertical}fieldset{min-width:0;padding:0;margin:0;border:0}legend{float:left;width:100%;padding:0;margin-bottom:.5rem;font-size:calc(1.275rem + .3vw);line-height:inherit}@media (min-width:1200px){legend{font-size:1.5rem}}legend+*{clear:left}::-webkit-datetime-edit-day-field,::-webkit-datetime-edit-fields-wrapper,::-webkit-datetime-edit-hour-field,::-webkit-datetime-edit-minute,::-webkit-datetime-edit-month-field,::-webkit-datetime-edit-text,::-webkit-datetime-edit-year-field{padding:0}::-webkit-inner-spin-button{height:auto}[type=search]{outline-offset:-2px;-webkit-appearance:textfield}::-webkit-search-decoration{-webkit-appearance:none}::-webkit-color-swatch-wrapper{padding:0}::file-selector-button{font:inherit}::-webkit-file-upload-button{font:inherit;-webkit-appearance:button}output{display:inline-block}iframe{border:0}summary{display:list-item;cursor:pointer}progress{vertical-align:baseline}[hidden]{display:none!important}.lead{font-size:1.25rem;font-weight:300}.display-1{font-size:calc(1.625rem + 4.5vw);font-weight:300;line-height:1.2}@media (min-width:1200px){.display-1{font-size:5rem}}.display-2{font-size:calc(1.575rem + 3.9vw);font-weight:300;line-height:1.2}@media (min-width:1200px){.display-2{font-size:4.5rem}}.display-3{font-size:calc(1.525rem + 3.3vw);font-weight:300;line-height:1.2}@media (min-width:1200px){.display-3{font-size:4rem}}.display-4{font-size:calc(1.475rem + 2.7vw);font-weight:300;line-height:1.2}@media (min-width:1200px){.display-4{font-size:3.5rem}}.display-5{font-size:calc(1.425rem + 2.1vw);font-weight:300;line-height:1.2}@media (min-width:1200px){.display-5{font-size:3rem}}.display-6{font-size:calc(1.375rem + 1.5vw);font-weight:300;line-height:1.2}@media (min-width:1200px){.display-6{font-size:2.5rem}}.list-unstyled{padding-left:0;list-style:none}.list-inline{padding-left:0;list-style:none}.list-inline-item{display:inline-block}.list-inline-item:not(:last-child){margin-right:.5rem}.initialism{font-size:.875em;text-transform:uppercase}.blockquote{margin-bottom:1rem;font-size:1.25rem}.blockquote>:last-child{margin-bottom:0}.blockquote-footer{margin-top:-1rem;margin-bottom:1rem;font-size:.875em;color:#6c757d}.blockquote-footer::before{content:"— "}.img-fluid{max-width:100%;height:auto}.img-thumbnail{padding:.25rem;background-color:#fff;border:1px solid #dee2e6;border-radius:.25rem;max-width:100%;height:auto}.figure{display:inline-block}.figure-img{margin-bottom:.5rem;line-height:1}.figure-caption{font-size:.875em;color:#6c757d}.container,.container-fluid,.container-lg,.container-md,.container-sm,.container-xl,.container-xxl{width:100%;padding-right:var(--bs-gutter-x,.75rem);padding-left:var(--bs-gutter-x,.75rem);margin-right:auto;margin-left:auto}@media (min-width:576px){.container,.container-sm{max-width:540px}}@media (min-width:768px){.container,.container-md,.container-sm{max-width:720px}}@media (min-width:992px){.container,.container-lg,.container-md,.container-sm{max-width:960px}}@media (min-width:1200px){.container,.container-lg,.container-md,.container-sm,.container-xl{max-width:1140px}}@media (min-width:1400px){.container,.container-lg,.container-md,.container-sm,.container-xl,.container-xxl{max-width:1320px}}.row{--bs-gutter-x:1.5rem;--bs-gutter-y:0;display:flex;flex-wrap:wrap;margin-top:calc(var(--bs-gutter-y) * -1);margin-right:calc(var(--bs-gutter-x) * -.5);margin-left:calc(var(--bs-gutter-x) * -.5)}.row>*{flex-shrink:0;width:100%;max-width:100%;padding-right:calc(var(--bs-gutter-x) * .5);padding-left:calc(var(--bs-gutter-x) * .5);margin-top:var(--bs-gutter-y)}.col{flex:1 0 0%}.row-cols-auto>*{flex:0 0 auto;width:auto}.row-cols-1>*{flex:0 0 auto;width:100%}.row-cols-2>*{flex:0 0 auto;width:50%}.row-cols-3>*{flex:0 0 auto;width:33.3333333333%}.row-cols-4>*{flex:0 0 auto;width:25%}.row-cols-5>*{flex:0 0 auto;width:20%}.row-cols-6>*{flex:0 0 auto;width:16.6666666667%}.col-auto{flex:0 0 auto;width:auto}.col-1{flex:0 0 auto;width:8.33333333%}.col-2{flex:0 0 auto;width:16.66666667%}.col-3{flex:0 0 auto;width:25%}.col-4{flex:0 0 auto;width:33.33333333%}.col-5{flex:0 0 auto;width:41.66666667%}.col-6{flex:0 0 auto;width:50%}.col-7{flex:0 0 auto;width:58.33333333%}.col-8{flex:0 0 auto;width:66.66666667%}.col-9{flex:0 0 auto;width:75%}.col-10{flex:0 0 auto;width:83.33333333%}.col-11{flex:0 0 auto;width:91.66666667%}.col-12{flex:0 0 auto;width:100%}.offset-1{margin-left:8.33333333%}.offset-2{margin-left:16.66666667%}.offset-3{margin-left:25%}.offset-4{margin-left:33.33333333%}.offset-5{margin-left:41.66666667%}.offset-6{margin-left:50%}.offset-7{margin-left:58.33333333%}.offset-8{margin-left:66.66666667%}.offset-9{margin-left:75%}.offset-10{margin-left:83.33333333%}.offset-11{margin-left:91.66666667%}.g-0,.gx-0{--bs-gutter-x:0}.g-0,.gy-0{--bs-gutter-y:0}.g-1,.gx-1{--bs-gutter-x:0.25rem}.g-1,.gy-1{--bs-gutter-y:0.25rem}.g-2,.gx-2{--bs-gutter-x:0.5rem}.g-2,.gy-2{--bs-gutter-y:0.5rem}.g-3,.gx-3{--bs-gutter-x:1rem}.g-3,.gy-3{--bs-gutter-y:1rem}.g-4,.gx-4{--bs-gutter-x:1.5rem}.g-4,.gy-4{--bs-gutter-y:1.5rem}.g-5,.gx-5{--bs-gutter-x:3rem}.g-5,.gy-5{--bs-gutter-y:3rem}@media (min-width:576px){.col-sm{flex:1 0 0%}.row-cols-sm-auto>*{flex:0 0 auto;width:auto}.row-cols-sm-1>*{flex:0 0 auto;width:100%}.row-cols-sm-2>*{flex:0 0 auto;width:50%}.row-cols-sm-3>*{flex:0 0 auto;width:33.3333333333%}.row-cols-sm-4>*{flex:0 0 auto;width:25%}.row-cols-sm-5>*{flex:0 0 auto;width:20%}.row-cols-sm-6>*{flex:0 0 auto;width:16.6666666667%}.col-sm-auto{flex:0 0 auto;width:auto}.col-sm-1{flex:0 0 auto;width:8.33333333%}.col-sm-2{flex:0 0 auto;width:16.66666667%}.col-sm-3{flex:0 0 auto;width:25%}.col-sm-4{flex:0 0 auto;width:33.33333333%}.col-sm-5{flex:0 0 auto;width:41.66666667%}.col-sm-6{flex:0 0 auto;width:50%}.col-sm-7{flex:0 0 auto;width:58.33333333%}.col-sm-8{flex:0 0 auto;width:66.66666667%}.col-sm-9{flex:0 0 auto;width:75%}.col-sm-10{flex:0 0 auto;width:83.33333333%}.col-sm-11{flex:0 0 auto;width:91.66666667%}.col-sm-12{flex:0 0 auto;width:100%}.offset-sm-0{margin-left:0}.offset-sm-1{margin-left:8.33333333%}.offset-sm-2{margin-left:16.66666667%}.offset-sm-3{margin-left:25%}.offset-sm-4{margin-left:33.33333333%}.offset-sm-5{margin-left:41.66666667%}.offset-sm-6{margin-left:50%}.offset-sm-7{margin-left:58.33333333%}.offset-sm-8{margin-left:66.66666667%}.offset-sm-9{margin-left:75%}.offset-sm-10{margin-left:83.33333333%}.offset-sm-11{margin-left:91.66666667%}.g-sm-0,.gx-sm-0{--bs-gutter-x:0}.g-sm-0,.gy-sm-0{--bs-gutter-y:0}.g-sm-1,.gx-sm-1{--bs-gutter-x:0.25rem}.g-sm-1,.gy-sm-1{--bs-gutter-y:0.25rem}.g-sm-2,.gx-sm-2{--bs-gutter-x:0.5rem}.g-sm-2,.gy-sm-2{--bs-gutter-y:0.5rem}.g-sm-3,.gx-sm-3{--bs-gutter-x:1rem}.g-sm-3,.gy-sm-3{--bs-gutter-y:1rem}.g-sm-4,.gx-sm-4{--bs-gutter-x:1.5rem}.g-sm-4,.gy-sm-4{--bs-gutter-y:1.5rem}.g-sm-5,.gx-sm-5{--bs-gutter-x:3rem}.g-sm-5,.gy-sm-5{--bs-gutter-y:3rem}}@media (min-width:768px){.col-md{flex:1 0 0%}.row-cols-md-auto>*{flex:0 0 auto;width:auto}.row-cols-md-1>*{flex:0 0 auto;width:100%}.row-cols-md-2>*{flex:0 0 auto;width:50%}.row-cols-md-3>*{flex:0 0 auto;width:33.3333333333%}.row-cols-md-4>*{flex:0 0 auto;width:25%}.row-cols-md-5>*{flex:0 0 auto;width:20%}.row-cols-md-6>*{flex:0 0 auto;width:16.6666666667%}.col-md-auto{flex:0 0 auto;width:auto}.col-md-1{flex:0 0 auto;width:8.33333333%}.col-md-2{flex:0 0 auto;width:16.66666667%}.col-md-3{flex:0 0 auto;width:25%}.col-md-4{flex:0 0 auto;width:33.33333333%}.col-md-5{flex:0 0 auto;width:41.66666667%}.col-md-6{flex:0 0 auto;width:50%}.col-md-7{flex:0 0 auto;width:58.33333333%}.col-md-8{flex:0 0 auto;width:66.66666667%}.col-md-9{flex:0 0 auto;width:75%}.col-md-10{flex:0 0 auto;width:83.33333333%}.col-md-11{flex:0 0 auto;width:91.66666667%}.col-md-12{flex:0 0 auto;width:100%}.offset-md-0{margin-left:0}.offset-md-1{margin-left:8.33333333%}.offset-md-2{margin-left:16.66666667%}.offset-md-3{margin-left:25%}.offset-md-4{margin-left:33.33333333%}.offset-md-5{margin-left:41.66666667%}.offset-md-6{margin-left:50%}.offset-md-7{margin-left:58.33333333%}.offset-md-8{margin-left:66.66666667%}.offset-md-9{margin-left:75%}.offset-md-10{margin-left:83.33333333%}.offset-md-11{margin-left:91.66666667%}.g-md-0,.gx-md-0{--bs-gutter-x:0}.g-md-0,.gy-md-0{--bs-gutter-y:0}.g-md-1,.gx-md-1{--bs-gutter-x:0.25rem}.g-md-1,.gy-md-1{--bs-gutter-y:0.25rem}.g-md-2,.gx-md-2{--bs-gutter-x:0.5rem}.g-md-2,.gy-md-2{--bs-gutter-y:0.5rem}.g-md-3,.gx-md-3{--bs-gutter-x:1rem}.g-md-3,.gy-md-3{--bs-gutter-y:1rem}.g-md-4,.gx-md-4{--bs-gutter-x:1.5rem}.g-md-4,.gy-md-4{--bs-gutter-y:1.5rem}.g-md-5,.gx-md-5{--bs-gutter-x:3rem}.g-md-5,.gy-md-5{--bs-gutter-y:3rem}}@media (min-width:992px){.col-lg{flex:1 0 0%}.row-cols-lg-auto>*{flex:0 0 auto;width:auto}.row-cols-lg-1>*{flex:0 0 auto;width:100%}.row-cols-lg-2>*{flex:0 0 auto;width:50%}.row-cols-lg-3>*{flex:0 0 auto;width:33.3333333333%}.row-cols-lg-4>*{flex:0 0 auto;width:25%}.row-cols-lg-5>*{flex:0 0 auto;width:20%}.row-cols-lg-6>*{flex:0 0 auto;width:16.6666666667%}.col-lg-auto{flex:0 0 auto;width:auto}.col-lg-1{flex:0 0 auto;width:8.33333333%}.col-lg-2{flex:0 0 auto;width:16.66666667%}.col-lg-3{flex:0 0 auto;width:25%}.col-lg-4{flex:0 0 auto;width:33.33333333%}.col-lg-5{flex:0 0 auto;width:41.66666667%}.col-lg-6{flex:0 0 auto;width:50%}.col-lg-7{flex:0 0 auto;width:58.33333333%}.col-lg-8{flex:0 0 auto;width:66.66666667%}.col-lg-9{flex:0 0 auto;width:75%}.col-lg-10{flex:0 0 auto;width:83.33333333%}.col-lg-11{flex:0 0 auto;width:91.66666667%}.col-lg-12{flex:0 0 auto;width:100%}.offset-lg-0{margin-left:0}.offset-lg-1{margin-left:8.33333333%}.offset-lg-2{margin-left:16.66666667%}.offset-lg-3{margin-left:25%}.offset-lg-4{margin-left:33.33333333%}.offset-lg-5{margin-left:41.66666667%}.offset-lg-6{margin-left:50%}.offset-lg-7{margin-left:58.33333333%}.offset-lg-8{margin-left:66.66666667%}.offset-lg-9{margin-left:75%}.offset-lg-10{margin-left:83.33333333%}.offset-lg-11{margin-left:91.66666667%}.g-lg-0,.gx-lg-0{--bs-gutter-x:0}.g-lg-0,.gy-lg-0{--bs-gutter-y:0}.g-lg-1,.gx-lg-1{--bs-gutter-x:0.25rem}.g-lg-1,.gy-lg-1{--bs-gutter-y:0.25rem}.g-lg-2,.gx-lg-2{--bs-gutter-x:0.5rem}.g-lg-2,.gy-lg-2{--bs-gutter-y:0.5rem}.g-lg-3,.gx-lg-3{--bs-gutter-x:1rem}.g-lg-3,.gy-lg-3{--bs-gutter-y:1rem}.g-lg-4,.gx-lg-4{--bs-gutter-x:1.5rem}.g-lg-4,.gy-lg-4{--bs-gutter-y:1.5rem}.g-lg-5,.gx-lg-5{--bs-gutter-x:3rem}.g-lg-5,.gy-lg-5{--bs-gutter-y:3rem}}@media (min-width:1200px){.col-xl{flex:1 0 0%}.row-cols-xl-auto>*{flex:0 0 auto;width:auto}.row-cols-xl-1>*{flex:0 0 auto;width:100%}.row-cols-xl-2>*{flex:0 0 auto;width:50%}.row-cols-xl-3>*{flex:0 0 auto;width:33.3333333333%}.row-cols-xl-4>*{flex:0 0 auto;width:25%}.row-cols-xl-5>*{flex:0 0 auto;width:20%}.row-cols-xl-6>*{flex:0 0 auto;width:16.6666666667%}.col-xl-auto{flex:0 0 auto;width:auto}.col-xl-1{flex:0 0 auto;width:8.33333333%}.col-xl-2{flex:0 0 auto;width:16.66666667%}.col-xl-3{flex:0 0 auto;width:25%}.col-xl-4{flex:0 0 auto;width:33.33333333%}.col-xl-5{flex:0 0 auto;width:41.66666667%}.col-xl-6{flex:0 0 auto;width:50%}.col-xl-7{flex:0 0 auto;width:58.33333333%}.col-xl-8{flex:0 0 auto;width:66.66666667%}.col-xl-9{flex:0 0 auto;width:75%}.col-xl-10{flex:0 0 auto;width:83.33333333%}.col-xl-11{flex:0 0 auto;width:91.66666667%}.col-xl-12{flex:0 0 auto;width:100%}.offset-xl-0{margin-left:0}.offset-xl-1{margin-left:8.33333333%}.offset-xl-2{margin-left:16.66666667%}.offset-xl-3{margin-left:25%}.offset-xl-4{margin-left:33.33333333%}.offset-xl-5{margin-left:41.66666667%}.offset-xl-6{margin-left:50%}.offset-xl-7{margin-left:58.33333333%}.offset-xl-8{margin-left:66.66666667%}.offset-xl-9{margin-left:75%}.offset-xl-10{margin-left:83.33333333%}.offset-xl-11{margin-left:91.66666667%}.g-xl-0,.gx-xl-0{--bs-gutter-x:0}.g-xl-0,.gy-xl-0{--bs-gutter-y:0}.g-xl-1,.gx-xl-1{--bs-gutter-x:0.25rem}.g-xl-1,.gy-xl-1{--bs-gutter-y:0.25rem}.g-xl-2,.gx-xl-2{--bs-gutter-x:0.5rem}.g-xl-2,.gy-xl-2{--bs-gutter-y:0.5rem}.g-xl-3,.gx-xl-3{--bs-gutter-x:1rem}.g-xl-3,.gy-xl-3{--bs-gutter-y:1rem}.g-xl-4,.gx-xl-4{--bs-gutter-x:1.5rem}.g-xl-4,.gy-xl-4{--bs-gutter-y:1.5rem}.g-xl-5,.gx-xl-5{--bs-gutter-x:3rem}.g-xl-5,.gy-xl-5{--bs-gutter-y:3rem}}@media (min-width:1400px){.col-xxl{flex:1 0 0%}.row-cols-xxl-auto>*{flex:0 0 auto;width:auto}.row-cols-xxl-1>*{flex:0 0 auto;width:100%}.row-cols-xxl-2>*{flex:0 0 auto;width:50%}.row-cols-xxl-3>*{flex:0 0 auto;width:33.3333333333%}.row-cols-xxl-4>*{flex:0 0 auto;width:25%}.row-cols-xxl-5>*{flex:0 0 auto;width:20%}.row-cols-xxl-6>*{flex:0 0 auto;width:16.6666666667%}.col-xxl-auto{flex:0 0 auto;width:auto}.col-xxl-1{flex:0 0 auto;width:8.33333333%}.col-xxl-2{flex:0 0 auto;width:16.66666667%}.col-xxl-3{flex:0 0 auto;width:25%}.col-xxl-4{flex:0 0 auto;width:33.33333333%}.col-xxl-5{flex:0 0 auto;width:41.66666667%}.col-xxl-6{flex:0 0 auto;width:50%}.col-xxl-7{flex:0 0 auto;width:58.33333333%}.col-xxl-8{flex:0 0 auto;width:66.66666667%}.col-xxl-9{flex:0 0 auto;width:75%}.col-xxl-10{flex:0 0 auto;width:83.33333333%}.col-xxl-11{flex:0 0 auto;width:91.66666667%}.col-xxl-12{flex:0 0 auto;width:100%}.offset-xxl-0{margin-left:0}.offset-xxl-1{margin-left:8.33333333%}.offset-xxl-2{margin-left:16.66666667%}.offset-xxl-3{margin-left:25%}.offset-xxl-4{margin-left:33.33333333%}.offset-xxl-5{margin-left:41.66666667%}.offset-xxl-6{margin-left:50%}.offset-xxl-7{margin-left:58.33333333%}.offset-xxl-8{margin-left:66.66666667%}.offset-xxl-9{margin-left:75%}.offset-xxl-10{margin-left:83.33333333%}.offset-xxl-11{margin-left:91.66666667%}.g-xxl-0,.gx-xxl-0{--bs-gutter-x:0}.g-xxl-0,.gy-xxl-0{--bs-gutter-y:0}.g-xxl-1,.gx-xxl-1{--bs-gutter-x:0.25rem}.g-xxl-1,.gy-xxl-1{--bs-gutter-y:0.25rem}.g-xxl-2,.gx-xxl-2{--bs-gutter-x:0.5rem}.g-xxl-2,.gy-xxl-2{--bs-gutter-y:0.5rem}.g-xxl-3,.gx-xxl-3{--bs-gutter-x:1rem}.g-xxl-3,.gy-xxl-3{--bs-gutter-y:1rem}.g-xxl-4,.gx-xxl-4{--bs-gutter-x:1.5rem}.g-xxl-4,.gy-xxl-4{--bs-gutter-y:1.5rem}.g-xxl-5,.gx-xxl-5{--bs-gutter-x:3rem}.g-xxl-5,.gy-xxl-5{--bs-gutter-y:3rem}}.table{--bs-table-bg:transparent;--bs-table-accent-bg:transparent;--bs-table-striped-color:#212529;--bs-table-striped-bg:rgba(0, 0, 0, 0.05);--bs-table-active-color:#212529;--bs-table-active-bg:rgba(0, 0, 0, 0.1);--bs-table-hover-color:#212529;--bs-table-hover-bg:rgba(0, 0, 0, 0.075);width:100%;margin-bottom:1rem;color:#212529;vertical-align:top;border-color:#dee2e6}.table>:not(caption)>*>*{padding:.5rem .5rem;background-color:var(--bs-table-bg);border-bottom-width:1px;box-shadow:inset 0 0 0 9999px var(--bs-table-accent-bg)}.table>tbody{vertical-align:inherit}.table>thead{vertical-align:bottom}.table>:not(:last-child)>:last-child>*{border-bottom-color:currentColor}.caption-top{caption-side:top}.table-sm>:not(caption)>*>*{padding:.25rem .25rem}.table-bordered>:not(caption)>*{border-width:1px 0}.table-bordered>:not(caption)>*>*{border-width:0 1px}.table-borderless>:not(caption)>*>*{border-bottom-width:0}.table-striped>tbody>tr:nth-of-type(odd){--bs-table-accent-bg:var(--bs-table-striped-bg);color:var(--bs-table-striped-color)}.table-active{--bs-table-accent-bg:var(--bs-table-active-bg);color:var(--bs-table-active-color)}.table-hover>tbody>tr:hover{--bs-table-accent-bg:var(--bs-table-hover-bg);color:var(--bs-table-hover-color)}.table-primary{--bs-table-bg:#cfe2ff;--bs-table-striped-bg:#c5d7f2;--bs-table-striped-color:#000;--bs-table-active-bg:#bacbe6;--bs-table-active-color:#000;--bs-table-hover-bg:#bfd1ec;--bs-table-hover-color:#000;color:#000;border-color:#bacbe6}.table-secondary{--bs-table-bg:#e2e3e5;--bs-table-striped-bg:#d7d8da;--bs-table-striped-color:#000;--bs-table-active-bg:#cbccce;--bs-table-active-color:#000;--bs-table-hover-bg:#d1d2d4;--bs-table-hover-color:#000;color:#000;border-color:#cbccce}.table-success{--bs-table-bg:#d1e7dd;--bs-table-striped-bg:#c7dbd2;--bs-table-striped-color:#000;--bs-table-active-bg:#bcd0c7;--bs-table-active-color:#000;--bs-table-hover-bg:#c1d6cc;--bs-table-hover-color:#000;color:#000;border-color:#bcd0c7}.table-info{--bs-table-bg:#cff4fc;--bs-table-striped-bg:#c5e8ef;--bs-table-striped-color:#000;--bs-table-active-bg:#badce3;--bs-table-active-color:#000;--bs-table-hover-bg:#bfe2e9;--bs-table-hover-color:#000;color:#000;border-color:#badce3}.table-warning{--bs-table-bg:#fff3cd;--bs-table-striped-bg:#f2e7c3;--bs-table-striped-color:#000;--bs-table-active-bg:#e6dbb9;--bs-table-active-color:#000;--bs-table-hover-bg:#ece1be;--bs-table-hover-color:#000;color:#000;border-color:#e6dbb9}.table-danger{--bs-table-bg:#f8d7da;--bs-table-striped-bg:#eccccf;--bs-table-striped-color:#000;--bs-table-active-bg:#dfc2c4;--bs-table-active-color:#000;--bs-table-hover-bg:#e5c7ca;--bs-table-hover-color:#000;color:#000;border-color:#dfc2c4}.table-light{--bs-table-bg:#f8f9fa;--bs-table-striped-bg:#ecedee;--bs-table-striped-color:#000;--bs-table-active-bg:#dfe0e1;--bs-table-active-color:#000;--bs-table-hover-bg:#e5e6e7;--bs-table-hover-color:#000;color:#000;border-color:#dfe0e1}.table-dark{--bs-table-bg:#212529;--bs-table-striped-bg:#2c3034;--bs-table-striped-color:#fff;--bs-table-active-bg:#373b3e;--bs-table-active-color:#fff;--bs-table-hover-bg:#323539;--bs-table-hover-color:#fff;color:#fff;border-color:#373b3e}.table-responsive{overflow-x:auto;-webkit-overflow-scrolling:touch}@media (max-width:575.98px){.table-responsive-sm{overflow-x:auto;-webkit-overflow-scrolling:touch}}@media (max-width:767.98px){.table-responsive-md{overflow-x:auto;-webkit-overflow-scrolling:touch}}@media (max-width:991.98px){.table-responsive-lg{overflow-x:auto;-webkit-overflow-scrolling:touch}}@media (max-width:1199.98px){.table-responsive-xl{overflow-x:auto;-webkit-overflow-scrolling:touch}}@media (max-width:1399.98px){.table-responsive-xxl{overflow-x:auto;-webkit-overflow-scrolling:touch}}.form-label{margin-bottom:.5rem}.col-form-label{padding-top:calc(.375rem + 1px);padding-bottom:calc(.375rem + 1px);margin-bottom:0;font-size:inherit;line-height:1.5}.col-form-label-lg{padding-top:calc(.5rem + 1px);padding-bottom:calc(.5rem + 1px);font-size:1.25rem}.col-form-label-sm{padding-top:calc(.25rem + 1px);padding-bottom:calc(.25rem + 1px);font-size:.875rem}.form-text{margin-top:.25rem;font-size:.875em;color:#6c757d}.form-control{display:block;width:100%;padding:.375rem .75rem;font-size:1rem;font-weight:400;line-height:1.5;color:#212529;background-color:#fff;background-clip:padding-box;border:1px solid #ced4da;-webkit-appearance:none;-moz-appearance:none;appearance:none;border-radius:.25rem;transition:border-color .15s ease-in-out,box-shadow .15s ease-in-out}@media (prefers-reduced-motion:reduce){.form-control{transition:none}}.form-control[type=file]{overflow:hidden}.form-control[type=file]:not(:disabled):not([readonly]){cursor:pointer}.form-control:focus{color:#212529;background-color:#fff;border-color:#86b7fe;outline:0;box-shadow:0 0 0 .25rem rgba(13,110,253,.25)}.form-control::-webkit-date-and-time-value{height:1.5em}.form-control::-moz-placeholder{color:#6c757d;opacity:1}.form-control::placeholder{color:#6c757d;opacity:1}.form-control:disabled,.form-control[readonly]{background-color:#e9ecef;opacity:1}.form-control::file-selector-button{padding:.375rem .75rem;margin:-.375rem -.75rem;-webkit-margin-end:.75rem;margin-inline-end:.75rem;color:#212529;background-color:#e9ecef;pointer-events:none;border-color:inherit;border-style:solid;border-width:0;border-inline-end-width:1px;border-radius:0;transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out}@media (prefers-reduced-motion:reduce){.form-control::file-selector-button{transition:none}}.form-control:hover:not(:disabled):not([readonly])::file-selector-button{background-color:#dde0e3}.form-control::-webkit-file-upload-button{padding:.375rem .75rem;margin:-.375rem -.75rem;-webkit-margin-end:.75rem;margin-inline-end:.75rem;color:#212529;background-color:#e9ecef;pointer-events:none;border-color:inherit;border-style:solid;border-width:0;border-inline-end-width:1px;border-radius:0;-webkit-transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out}@media (prefers-reduced-motion:reduce){.form-control::-webkit-file-upload-button{-webkit-transition:none;transition:none}}.form-control:hover:not(:disabled):not([readonly])::-webkit-file-upload-button{background-color:#dde0e3}.form-control-plaintext{display:block;width:100%;padding:.375rem 0;margin-bottom:0;line-height:1.5;color:#212529;background-color:transparent;border:solid transparent;border-width:1px 0}.form-control-plaintext.form-control-lg,.form-control-plaintext.form-control-sm{padding-right:0;padding-left:0}.form-control-sm{min-height:calc(1.5em + .5rem + 2px);padding:.25rem .5rem;font-size:.875rem;border-radius:.2rem}.form-control-sm::file-selector-button{padding:.25rem .5rem;margin:-.25rem -.5rem;-webkit-margin-end:.5rem;margin-inline-end:.5rem}.form-control-sm::-webkit-file-upload-button{padding:.25rem .5rem;margin:-.25rem -.5rem;-webkit-margin-end:.5rem;margin-inline-end:.5rem}.form-control-lg{min-height:calc(1.5em + 1rem + 2px);padding:.5rem 1rem;font-size:1.25rem;border-radius:.3rem}.form-control-lg::file-selector-button{padding:.5rem 1rem;margin:-.5rem -1rem;-webkit-margin-end:1rem;margin-inline-end:1rem}.form-control-lg::-webkit-file-upload-button{padding:.5rem 1rem;margin:-.5rem -1rem;-webkit-margin-end:1rem;margin-inline-end:1rem}textarea.form-control{min-height:calc(1.5em + .75rem + 2px)}textarea.form-control-sm{min-height:calc(1.5em + .5rem + 2px)}textarea.form-control-lg{min-height:calc(1.5em + 1rem + 2px)}.form-control-color{width:3rem;height:auto;padding:.375rem}.form-control-color:not(:disabled):not([readonly]){cursor:pointer}.form-control-color::-moz-color-swatch{height:1.5em;border-radius:.25rem}.form-control-color::-webkit-color-swatch{height:1.5em;border-radius:.25rem}.form-select{display:block;width:100%;padding:.375rem 2.25rem .375rem .75rem;-moz-padding-start:calc(0.75rem - 3px);font-size:1rem;font-weight:400;line-height:1.5;color:#212529;background-color:#fff;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");background-repeat:no-repeat;background-position:right .75rem center;background-size:16px 12px;border:1px solid #ced4da;border-radius:.25rem;transition:border-color .15s ease-in-out,box-shadow .15s ease-in-out;-webkit-appearance:none;-moz-appearance:none;appearance:none}@media (prefers-reduced-motion:reduce){.form-select{transition:none}}.form-select:focus{border-color:#86b7fe;outline:0;box-shadow:0 0 0 .25rem rgba(13,110,253,.25)}.form-select[multiple],.form-select[size]:not([size="1"]){padding-right:.75rem;background-image:none}.form-select:disabled{background-color:#e9ecef}.form-select:-moz-focusring{color:transparent;text-shadow:0 0 0 #212529}.form-select-sm{padding-top:.25rem;padding-bottom:.25rem;padding-left:.5rem;font-size:.875rem}.form-select-lg{padding-top:.5rem;padding-bottom:.5rem;padding-left:1rem;font-size:1.25rem}.form-check{display:block;min-height:1.5rem;padding-left:1.5em;margin-bottom:.125rem}.form-check .form-check-input{float:left;margin-left:-1.5em}.form-check-input{width:1em;height:1em;margin-top:.25em;vertical-align:top;background-color:#fff;background-repeat:no-repeat;background-position:center;background-size:contain;border:1px solid rgba(0,0,0,.25);-webkit-appearance:none;-moz-appearance:none;appearance:none;-webkit-print-color-adjust:exact;color-adjust:exact}.form-check-input[type=checkbox]{border-radius:.25em}.form-check-input[type=radio]{border-radius:50%}.form-check-input:active{filter:brightness(90%)}.form-check-input:focus{border-color:#86b7fe;outline:0;box-shadow:0 0 0 .25rem rgba(13,110,253,.25)}.form-check-input:checked{background-color:#0d6efd;border-color:#0d6efd}.form-check-input:checked[type=checkbox]{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M6 10l3 3l6-6'/%3e%3c/svg%3e")}.form-check-input:checked[type=radio]{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='2' fill='%23fff'/%3e%3c/svg%3e")}.form-check-input[type=checkbox]:indeterminate{background-color:#0d6efd;border-color:#0d6efd;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M6 10h8'/%3e%3c/svg%3e")}.form-check-input:disabled{pointer-events:none;filter:none;opacity:.5}.form-check-input:disabled~.form-check-label,.form-check-input[disabled]~.form-check-label{opacity:.5}.form-switch{padding-left:2.5em}.form-switch .form-check-input{width:2em;margin-left:-2.5em;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='rgba%280, 0, 0, 0.25%29'/%3e%3c/svg%3e");background-position:left center;border-radius:2em;transition:background-position .15s ease-in-out}@media (prefers-reduced-motion:reduce){.form-switch .form-check-input{transition:none}}.form-switch .form-check-input:focus{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%2386b7fe'/%3e%3c/svg%3e")}.form-switch .form-check-input:checked{background-position:right center;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23fff'/%3e%3c/svg%3e")}.form-check-inline{display:inline-block;margin-right:1rem}.btn-check{position:absolute;clip:rect(0,0,0,0);pointer-events:none}.btn-check:disabled+.btn,.btn-check[disabled]+.btn{pointer-events:none;filter:none;opacity:.65}.form-range{width:100%;height:1.5rem;padding:0;background-color:transparent;-webkit-appearance:none;-moz-appearance:none;appearance:none}.form-range:focus{outline:0}.form-range:focus::-webkit-slider-thumb{box-shadow:0 0 0 1px #fff,0 0 0 .25rem rgba(13,110,253,.25)}.form-range:focus::-moz-range-thumb{box-shadow:0 0 0 1px #fff,0 0 0 .25rem rgba(13,110,253,.25)}.form-range::-moz-focus-outer{border:0}.form-range::-webkit-slider-thumb{width:1rem;height:1rem;margin-top:-.25rem;background-color:#0d6efd;border:0;border-radius:1rem;-webkit-transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;-webkit-appearance:none;appearance:none}@media (prefers-reduced-motion:reduce){.form-range::-webkit-slider-thumb{-webkit-transition:none;transition:none}}.form-range::-webkit-slider-thumb:active{background-color:#b6d4fe}.form-range::-webkit-slider-runnable-track{width:100%;height:.5rem;color:transparent;cursor:pointer;background-color:#dee2e6;border-color:transparent;border-radius:1rem}.form-range::-moz-range-thumb{width:1rem;height:1rem;background-color:#0d6efd;border:0;border-radius:1rem;-moz-transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;-moz-appearance:none;appearance:none}@media (prefers-reduced-motion:reduce){.form-range::-moz-range-thumb{-moz-transition:none;transition:none}}.form-range::-moz-range-thumb:active{background-color:#b6d4fe}.form-range::-moz-range-track{width:100%;height:.5rem;color:transparent;cursor:pointer;background-color:#dee2e6;border-color:transparent;border-radius:1rem}.form-range:disabled{pointer-events:none}.form-range:disabled::-webkit-slider-thumb{background-color:#adb5bd}.form-range:disabled::-moz-range-thumb{background-color:#adb5bd}.form-floating{position:relative}.form-floating>.form-control,.form-floating>.form-select{height:calc(3.5rem + 2px);line-height:1.25}.form-floating>label{position:absolute;top:0;left:0;height:100%;padding:1rem .75rem;pointer-events:none;border:1px solid transparent;transform-origin:0 0;transition:opacity .1s ease-in-out,transform .1s ease-in-out}@media (prefers-reduced-motion:reduce){.form-floating>label{transition:none}}.form-floating>.form-control{padding:1rem .75rem}.form-floating>.form-control::-moz-placeholder{color:transparent}.form-floating>.form-control::placeholder{color:transparent}.form-floating>.form-control:not(:-moz-placeholder-shown){padding-top:1.625rem;padding-bottom:.625rem}.form-floating>.form-control:focus,.form-floating>.form-control:not(:placeholder-shown){padding-top:1.625rem;padding-bottom:.625rem}.form-floating>.form-control:-webkit-autofill{padding-top:1.625rem;padding-bottom:.625rem}.form-floating>.form-select{padding-top:1.625rem;padding-bottom:.625rem}.form-floating>.form-control:not(:-moz-placeholder-shown)~label{opacity:.65;transform:scale(.85) translateY(-.5rem) translateX(.15rem)}.form-floating>.form-control:focus~label,.form-floating>.form-control:not(:placeholder-shown)~label,.form-floating>.form-select~label{opacity:.65;transform:scale(.85) translateY(-.5rem) translateX(.15rem)}.form-floating>.form-control:-webkit-autofill~label{opacity:.65;transform:scale(.85) translateY(-.5rem) translateX(.15rem)}.input-group{position:relative;display:flex;flex-wrap:wrap;align-items:stretch;width:100%}.input-group>.form-control,.input-group>.form-select{position:relative;flex:1 1 auto;width:1%;min-width:0}.input-group>.form-control:focus,.input-group>.form-select:focus{z-index:3}.input-group .btn{position:relative;z-index:2}.input-group .btn:focus{z-index:3}.input-group-text{display:flex;align-items:center;padding:.375rem .75rem;font-size:1rem;font-weight:400;line-height:1.5;color:#212529;text-align:center;white-space:nowrap;background-color:#e9ecef;border:1px solid #ced4da;border-radius:.25rem}.input-group-lg>.btn,.input-group-lg>.form-control,.input-group-lg>.form-select,.input-group-lg>.input-group-text{padding:.5rem 1rem;font-size:1.25rem;border-radius:.3rem}.input-group-sm>.btn,.input-group-sm>.form-control,.input-group-sm>.form-select,.input-group-sm>.input-group-text{padding:.25rem .5rem;font-size:.875rem;border-radius:.2rem}.input-group-lg>.form-select,.input-group-sm>.form-select{padding-right:3rem}.input-group:not(.has-validation)>.dropdown-toggle:nth-last-child(n+3),.input-group:not(.has-validation)>:not(:last-child):not(.dropdown-toggle):not(.dropdown-menu){border-top-right-radius:0;border-bottom-right-radius:0}.input-group.has-validation>.dropdown-toggle:nth-last-child(n+4),.input-group.has-validation>:nth-last-child(n+3):not(.dropdown-toggle):not(.dropdown-menu){border-top-right-radius:0;border-bottom-right-radius:0}.input-group>:not(:first-child):not(.dropdown-menu):not(.valid-tooltip):not(.valid-feedback):not(.invalid-tooltip):not(.invalid-feedback){margin-left:-1px;border-top-left-radius:0;border-bottom-left-radius:0}.valid-feedback{display:none;width:100%;margin-top:.25rem;font-size:.875em;color:#198754}.valid-tooltip{position:absolute;top:100%;z-index:5;display:none;max-width:100%;padding:.25rem .5rem;margin-top:.1rem;font-size:.875rem;color:#fff;background-color:rgba(25,135,84,.9);border-radius:.25rem}.is-valid~.valid-feedback,.is-valid~.valid-tooltip,.was-validated :valid~.valid-feedback,.was-validated :valid~.valid-tooltip{display:block}.form-control.is-valid,.was-validated .form-control:valid{border-color:#198754;padding-right:calc(1.5em + .75rem);background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%23198754' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e");background-repeat:no-repeat;background-position:right calc(.375em + .1875rem) center;background-size:calc(.75em + .375rem) calc(.75em + .375rem)}.form-control.is-valid:focus,.was-validated .form-control:valid:focus{border-color:#198754;box-shadow:0 0 0 .25rem rgba(25,135,84,.25)}.was-validated textarea.form-control:valid,textarea.form-control.is-valid{padding-right:calc(1.5em + .75rem);background-position:top calc(.375em + .1875rem) right calc(.375em + .1875rem)}.form-select.is-valid,.was-validated .form-select:valid{border-color:#198754}.form-select.is-valid:not([multiple]):not([size]),.form-select.is-valid:not([multiple])[size="1"],.was-validated .form-select:valid:not([multiple]):not([size]),.was-validated .form-select:valid:not([multiple])[size="1"]{padding-right:4.125rem;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e"),url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%23198754' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e");background-position:right .75rem center,center right 2.25rem;background-size:16px 12px,calc(.75em + .375rem) calc(.75em + .375rem)}.form-select.is-valid:focus,.was-validated .form-select:valid:focus{border-color:#198754;box-shadow:0 0 0 .25rem rgba(25,135,84,.25)}.form-check-input.is-valid,.was-validated .form-check-input:valid{border-color:#198754}.form-check-input.is-valid:checked,.was-validated .form-check-input:valid:checked{background-color:#198754}.form-check-input.is-valid:focus,.was-validated .form-check-input:valid:focus{box-shadow:0 0 0 .25rem rgba(25,135,84,.25)}.form-check-input.is-valid~.form-check-label,.was-validated .form-check-input:valid~.form-check-label{color:#198754}.form-check-inline .form-check-input~.valid-feedback{margin-left:.5em}.input-group .form-control.is-valid,.input-group .form-select.is-valid,.was-validated .input-group .form-control:valid,.was-validated .input-group .form-select:valid{z-index:1}.input-group .form-control.is-valid:focus,.input-group .form-select.is-valid:focus,.was-validated .input-group .form-control:valid:focus,.was-validated .input-group .form-select:valid:focus{z-index:3}.invalid-feedback{display:none;width:100%;margin-top:.25rem;font-size:.875em;color:#dc3545}.invalid-tooltip{position:absolute;top:100%;z-index:5;display:none;max-width:100%;padding:.25rem .5rem;margin-top:.1rem;font-size:.875rem;color:#fff;background-color:rgba(220,53,69,.9);border-radius:.25rem}.is-invalid~.invalid-feedback,.is-invalid~.invalid-tooltip,.was-validated :invalid~.invalid-feedback,.was-validated :invalid~.invalid-tooltip{display:block}.form-control.is-invalid,.was-validated .form-control:invalid{border-color:#dc3545;padding-right:calc(1.5em + .75rem);background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23dc3545'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e");background-repeat:no-repeat;background-position:right calc(.375em + .1875rem) center;background-size:calc(.75em + .375rem) calc(.75em + .375rem)}.form-control.is-invalid:focus,.was-validated .form-control:invalid:focus{border-color:#dc3545;box-shadow:0 0 0 .25rem rgba(220,53,69,.25)}.was-validated textarea.form-control:invalid,textarea.form-control.is-invalid{padding-right:calc(1.5em + .75rem);background-position:top calc(.375em + .1875rem) right calc(.375em + .1875rem)}.form-select.is-invalid,.was-validated .form-select:invalid{border-color:#dc3545}.form-select.is-invalid:not([multiple]):not([size]),.form-select.is-invalid:not([multiple])[size="1"],.was-validated .form-select:invalid:not([multiple]):not([size]),.was-validated .form-select:invalid:not([multiple])[size="1"]{padding-right:4.125rem;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e"),url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23dc3545'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e");background-position:right .75rem center,center right 2.25rem;background-size:16px 12px,calc(.75em + .375rem) calc(.75em + .375rem)}.form-select.is-invalid:focus,.was-validated .form-select:invalid:focus{border-color:#dc3545;box-shadow:0 0 0 .25rem rgba(220,53,69,.25)}.form-check-input.is-invalid,.was-validated .form-check-input:invalid{border-color:#dc3545}.form-check-input.is-invalid:checked,.was-validated .form-check-input:invalid:checked{background-color:#dc3545}.form-check-input.is-invalid:focus,.was-validated .form-check-input:invalid:focus{box-shadow:0 0 0 .25rem rgba(220,53,69,.25)}.form-check-input.is-invalid~.form-check-label,.was-validated .form-check-input:invalid~.form-check-label{color:#dc3545}.form-check-inline .form-check-input~.invalid-feedback{margin-left:.5em}.input-group .form-control.is-invalid,.input-group .form-select.is-invalid,.was-validated .input-group .form-control:invalid,.was-validated .input-group .form-select:invalid{z-index:2}.input-group .form-control.is-invalid:focus,.input-group .form-select.is-invalid:focus,.was-validated .input-group .form-control:invalid:focus,.was-validated .input-group .form-select:invalid:focus{z-index:3}.btn{display:inline-block;font-weight:400;line-height:1.5;color:#212529;text-align:center;text-decoration:none;vertical-align:middle;cursor:pointer;-webkit-user-select:none;-moz-user-select:none;user-select:none;background-color:transparent;border:1px solid transparent;padding:.375rem .75rem;font-size:1rem;border-radius:.25rem;transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out}@media (prefers-reduced-motion:reduce){.btn{transition:none}}.btn:hover{color:#212529}.btn-check:focus+.btn,.btn:focus{outline:0;box-shadow:0 0 0 .25rem rgba(13,110,253,.25)}.btn.disabled,.btn:disabled,fieldset:disabled .btn{pointer-events:none;opacity:.65}.btn-primary{color:#fff;background-color:#0d6efd;border-color:#0d6efd}.btn-primary:hover{color:#fff;background-color:#0b5ed7;border-color:#0a58ca}.btn-check:focus+.btn-primary,.btn-primary:focus{color:#fff;background-color:#0b5ed7;border-color:#0a58ca;box-shadow:0 0 0 .25rem rgba(49,132,253,.5)}.btn-check:active+.btn-primary,.btn-check:checked+.btn-primary,.btn-primary.active,.btn-primary:active,.show>.btn-primary.dropdown-toggle{color:#fff;background-color:#0a58ca;border-color:#0a53be}.btn-check:active+.btn-primary:focus,.btn-check:checked+.btn-primary:focus,.btn-primary.active:focus,.btn-primary:active:focus,.show>.btn-primary.dropdown-toggle:focus{box-shadow:0 0 0 .25rem rgba(49,132,253,.5)}.btn-primary.disabled,.btn-primary:disabled{color:#fff;background-color:#0d6efd;border-color:#0d6efd}.btn-secondary{color:#fff;background-color:#6c757d;border-color:#6c757d}.btn-secondary:hover{color:#fff;background-color:#5c636a;border-color:#565e64}.btn-check:focus+.btn-secondary,.btn-secondary:focus{color:#fff;background-color:#5c636a;border-color:#565e64;box-shadow:0 0 0 .25rem rgba(130,138,145,.5)}.btn-check:active+.btn-secondary,.btn-check:checked+.btn-secondary,.btn-secondary.active,.btn-secondary:active,.show>.btn-secondary.dropdown-toggle{color:#fff;background-color:#565e64;border-color:#51585e}.btn-check:active+.btn-secondary:focus,.btn-check:checked+.btn-secondary:focus,.btn-secondary.active:focus,.btn-secondary:active:focus,.show>.btn-secondary.dropdown-toggle:focus{box-shadow:0 0 0 .25rem rgba(130,138,145,.5)}.btn-secondary.disabled,.btn-secondary:disabled{color:#fff;background-color:#6c757d;border-color:#6c757d}.btn-success{color:#fff;background-color:#198754;border-color:#198754}.btn-success:hover{color:#fff;background-color:#157347;border-color:#146c43}.btn-check:focus+.btn-success,.btn-success:focus{color:#fff;background-color:#157347;border-color:#146c43;box-shadow:0 0 0 .25rem rgba(60,153,110,.5)}.btn-check:active+.btn-success,.btn-check:checked+.btn-success,.btn-success.active,.btn-success:active,.show>.btn-success.dropdown-toggle{color:#fff;background-color:#146c43;border-color:#13653f}.btn-check:active+.btn-success:focus,.btn-check:checked+.btn-success:focus,.btn-success.active:focus,.btn-success:active:focus,.show>.btn-success.dropdown-toggle:focus{box-shadow:0 0 0 .25rem rgba(60,153,110,.5)}.btn-success.disabled,.btn-success:disabled{color:#fff;background-color:#198754;border-color:#198754}.btn-info{color:#000;background-color:#0dcaf0;border-color:#0dcaf0}.btn-info:hover{color:#000;background-color:#31d2f2;border-color:#25cff2}.btn-check:focus+.btn-info,.btn-info:focus{color:#000;background-color:#31d2f2;border-color:#25cff2;box-shadow:0 0 0 .25rem rgba(11,172,204,.5)}.btn-check:active+.btn-info,.btn-check:checked+.btn-info,.btn-info.active,.btn-info:active,.show>.btn-info.dropdown-toggle{color:#000;background-color:#3dd5f3;border-color:#25cff2}.btn-check:active+.btn-info:focus,.btn-check:checked+.btn-info:focus,.btn-info.active:focus,.btn-info:active:focus,.show>.btn-info.dropdown-toggle:focus{box-shadow:0 0 0 .25rem rgba(11,172,204,.5)}.btn-info.disabled,.btn-info:disabled{color:#000;background-color:#0dcaf0;border-color:#0dcaf0}.btn-warning{color:#000;background-color:#ffc107;border-color:#ffc107}.btn-warning:hover{color:#000;background-color:#ffca2c;border-color:#ffc720}.btn-check:focus+.btn-warning,.btn-warning:focus{color:#000;background-color:#ffca2c;border-color:#ffc720;box-shadow:0 0 0 .25rem rgba(217,164,6,.5)}.btn-check:active+.btn-warning,.btn-check:checked+.btn-warning,.btn-warning.active,.btn-warning:active,.show>.btn-warning.dropdown-toggle{color:#000;background-color:#ffcd39;border-color:#ffc720}.btn-check:active+.btn-warning:focus,.btn-check:checked+.btn-warning:focus,.btn-warning.active:focus,.btn-warning:active:focus,.show>.btn-warning.dropdown-toggle:focus{box-shadow:0 0 0 .25rem rgba(217,164,6,.5)}.btn-warning.disabled,.btn-warning:disabled{color:#000;background-color:#ffc107;border-color:#ffc107}.btn-danger{color:#fff;background-color:#dc3545;border-color:#dc3545}.btn-danger:hover{color:#fff;background-color:#bb2d3b;border-color:#b02a37}.btn-check:focus+.btn-danger,.btn-danger:focus{color:#fff;background-color:#bb2d3b;border-color:#b02a37;box-shadow:0 0 0 .25rem rgba(225,83,97,.5)}.btn-check:active+.btn-danger,.btn-check:checked+.btn-danger,.btn-danger.active,.btn-danger:active,.show>.btn-danger.dropdown-toggle{color:#fff;background-color:#b02a37;border-color:#a52834}.btn-check:active+.btn-danger:focus,.btn-check:checked+.btn-danger:focus,.btn-danger.active:focus,.btn-danger:active:focus,.show>.btn-danger.dropdown-toggle:focus{box-shadow:0 0 0 .25rem rgba(225,83,97,.5)}.btn-danger.disabled,.btn-danger:disabled{color:#fff;background-color:#dc3545;border-color:#dc3545}.btn-light{color:#000;background-color:#f8f9fa;border-color:#f8f9fa}.btn-light:hover{color:#000;background-color:#f9fafb;border-color:#f9fafb}.btn-check:focus+.btn-light,.btn-light:focus{color:#000;background-color:#f9fafb;border-color:#f9fafb;box-shadow:0 0 0 .25rem rgba(211,212,213,.5)}.btn-check:active+.btn-light,.btn-check:checked+.btn-light,.btn-light.active,.btn-light:active,.show>.btn-light.dropdown-toggle{color:#000;background-color:#f9fafb;border-color:#f9fafb}.btn-check:active+.btn-light:focus,.btn-check:checked+.btn-light:focus,.btn-light.active:focus,.btn-light:active:focus,.show>.btn-light.dropdown-toggle:focus{box-shadow:0 0 0 .25rem rgba(211,212,213,.5)}.btn-light.disabled,.btn-light:disabled{color:#000;background-color:#f8f9fa;border-color:#f8f9fa}.btn-dark{color:#fff;background-color:#212529;border-color:#212529}.btn-dark:hover{color:#fff;background-color:#1c1f23;border-color:#1a1e21}.btn-check:focus+.btn-dark,.btn-dark:focus{color:#fff;background-color:#1c1f23;border-color:#1a1e21;box-shadow:0 0 0 .25rem rgba(66,70,73,.5)}.btn-check:active+.btn-dark,.btn-check:checked+.btn-dark,.btn-dark.active,.btn-dark:active,.show>.btn-dark.dropdown-toggle{color:#fff;background-color:#1a1e21;border-color:#191c1f}.btn-check:active+.btn-dark:focus,.btn-check:checked+.btn-dark:focus,.btn-dark.active:focus,.btn-dark:active:focus,.show>.btn-dark.dropdown-toggle:focus{box-shadow:0 0 0 .25rem rgba(66,70,73,.5)}.btn-dark.disabled,.btn-dark:disabled{color:#fff;background-color:#212529;border-color:#212529}.btn-outline-primary{color:#0d6efd;border-color:#0d6efd}.btn-outline-primary:hover{color:#fff;background-color:#0d6efd;border-color:#0d6efd}.btn-check:focus+.btn-outline-primary,.btn-outline-primary:focus{box-shadow:0 0 0 .25rem rgba(13,110,253,.5)}.btn-check:active+.btn-outline-primary,.btn-check:checked+.btn-outline-primary,.btn-outline-primary.active,.btn-outline-primary.dropdown-toggle.show,.btn-outline-primary:active{color:#fff;background-color:#0d6efd;border-color:#0d6efd}.btn-check:active+.btn-outline-primary:focus,.btn-check:checked+.btn-outline-primary:focus,.btn-outline-primary.active:focus,.btn-outline-primary.dropdown-toggle.show:focus,.btn-outline-primary:active:focus{box-shadow:0 0 0 .25rem rgba(13,110,253,.5)}.btn-outline-primary.disabled,.btn-outline-primary:disabled{color:#0d6efd;background-color:transparent}.btn-outline-secondary{color:#6c757d;border-color:#6c757d}.btn-outline-secondary:hover{color:#fff;background-color:#6c757d;border-color:#6c757d}.btn-check:focus+.btn-outline-secondary,.btn-outline-secondary:focus{box-shadow:0 0 0 .25rem rgba(108,117,125,.5)}.btn-check:active+.btn-outline-secondary,.btn-check:checked+.btn-outline-secondary,.btn-outline-secondary.active,.btn-outline-secondary.dropdown-toggle.show,.btn-outline-secondary:active{color:#fff;background-color:#6c757d;border-color:#6c757d}.btn-check:active+.btn-outline-secondary:focus,.btn-check:checked+.btn-outline-secondary:focus,.btn-outline-secondary.active:focus,.btn-outline-secondary.dropdown-toggle.show:focus,.btn-outline-secondary:active:focus{box-shadow:0 0 0 .25rem rgba(108,117,125,.5)}.btn-outline-secondary.disabled,.btn-outline-secondary:disabled{color:#6c757d;background-color:transparent}.btn-outline-success{color:#198754;border-color:#198754}.btn-outline-success:hover{color:#fff;background-color:#198754;border-color:#198754}.btn-check:focus+.btn-outline-success,.btn-outline-success:focus{box-shadow:0 0 0 .25rem rgba(25,135,84,.5)}.btn-check:active+.btn-outline-success,.btn-check:checked+.btn-outline-success,.btn-outline-success.active,.btn-outline-success.dropdown-toggle.show,.btn-outline-success:active{color:#fff;background-color:#198754;border-color:#198754}.btn-check:active+.btn-outline-success:focus,.btn-check:checked+.btn-outline-success:focus,.btn-outline-success.active:focus,.btn-outline-success.dropdown-toggle.show:focus,.btn-outline-success:active:focus{box-shadow:0 0 0 .25rem rgba(25,135,84,.5)}.btn-outline-success.disabled,.btn-outline-success:disabled{color:#198754;background-color:transparent}.btn-outline-info{color:#0dcaf0;border-color:#0dcaf0}.btn-outline-info:hover{color:#000;background-color:#0dcaf0;border-color:#0dcaf0}.btn-check:focus+.btn-outline-info,.btn-outline-info:focus{box-shadow:0 0 0 .25rem rgba(13,202,240,.5)}.btn-check:active+.btn-outline-info,.btn-check:checked+.btn-outline-info,.btn-outline-info.active,.btn-outline-info.dropdown-toggle.show,.btn-outline-info:active{color:#000;background-color:#0dcaf0;border-color:#0dcaf0}.btn-check:active+.btn-outline-info:focus,.btn-check:checked+.btn-outline-info:focus,.btn-outline-info.active:focus,.btn-outline-info.dropdown-toggle.show:focus,.btn-outline-info:active:focus{box-shadow:0 0 0 .25rem rgba(13,202,240,.5)}.btn-outline-info.disabled,.btn-outline-info:disabled{color:#0dcaf0;background-color:transparent}.btn-outline-warning{color:#ffc107;border-color:#ffc107}.btn-outline-warning:hover{color:#000;background-color:#ffc107;border-color:#ffc107}.btn-check:focus+.btn-outline-warning,.btn-outline-warning:focus{box-shadow:0 0 0 .25rem rgba(255,193,7,.5)}.btn-check:active+.btn-outline-warning,.btn-check:checked+.btn-outline-warning,.btn-outline-warning.active,.btn-outline-warning.dropdown-toggle.show,.btn-outline-warning:active{color:#000;background-color:#ffc107;border-color:#ffc107}.btn-check:active+.btn-outline-warning:focus,.btn-check:checked+.btn-outline-warning:focus,.btn-outline-warning.active:focus,.btn-outline-warning.dropdown-toggle.show:focus,.btn-outline-warning:active:focus{box-shadow:0 0 0 .25rem rgba(255,193,7,.5)}.btn-outline-warning.disabled,.btn-outline-warning:disabled{color:#ffc107;background-color:transparent}.btn-outline-danger{color:#dc3545;border-color:#dc3545}.btn-outline-danger:hover{color:#fff;background-color:#dc3545;border-color:#dc3545}.btn-check:focus+.btn-outline-danger,.btn-outline-danger:focus{box-shadow:0 0 0 .25rem rgba(220,53,69,.5)}.btn-check:active+.btn-outline-danger,.btn-check:checked+.btn-outline-danger,.btn-outline-danger.active,.btn-outline-danger.dropdown-toggle.show,.btn-outline-danger:active{color:#fff;background-color:#dc3545;border-color:#dc3545}.btn-check:active+.btn-outline-danger:focus,.btn-check:checked+.btn-outline-danger:focus,.btn-outline-danger.active:focus,.btn-outline-danger.dropdown-toggle.show:focus,.btn-outline-danger:active:focus{box-shadow:0 0 0 .25rem rgba(220,53,69,.5)}.btn-outline-danger.disabled,.btn-outline-danger:disabled{color:#dc3545;background-color:transparent}.btn-outline-light{color:#f8f9fa;border-color:#f8f9fa}.btn-outline-light:hover{color:#000;background-color:#f8f9fa;border-color:#f8f9fa}.btn-check:focus+.btn-outline-light,.btn-outline-light:focus{box-shadow:0 0 0 .25rem rgba(248,249,250,.5)}.btn-check:active+.btn-outline-light,.btn-check:checked+.btn-outline-light,.btn-outline-light.active,.btn-outline-light.dropdown-toggle.show,.btn-outline-light:active{color:#000;background-color:#f8f9fa;border-color:#f8f9fa}.btn-check:active+.btn-outline-light:focus,.btn-check:checked+.btn-outline-light:focus,.btn-outline-light.active:focus,.btn-outline-light.dropdown-toggle.show:focus,.btn-outline-light:active:focus{box-shadow:0 0 0 .25rem rgba(248,249,250,.5)}.btn-outline-light.disabled,.btn-outline-light:disabled{color:#f8f9fa;background-color:transparent}.btn-outline-dark{color:#212529;border-color:#212529}.btn-outline-dark:hover{color:#fff;background-color:#212529;border-color:#212529}.btn-check:focus+.btn-outline-dark,.btn-outline-dark:focus{box-shadow:0 0 0 .25rem rgba(33,37,41,.5)}.btn-check:active+.btn-outline-dark,.btn-check:checked+.btn-outline-dark,.btn-outline-dark.active,.btn-outline-dark.dropdown-toggle.show,.btn-outline-dark:active{color:#fff;background-color:#212529;border-color:#212529}.btn-check:active+.btn-outline-dark:focus,.btn-check:checked+.btn-outline-dark:focus,.btn-outline-dark.active:focus,.btn-outline-dark.dropdown-toggle.show:focus,.btn-outline-dark:active:focus{box-shadow:0 0 0 .25rem rgba(33,37,41,.5)}.btn-outline-dark.disabled,.btn-outline-dark:disabled{color:#212529;background-color:transparent}.btn-link{font-weight:400;color:#0d6efd;text-decoration:underline}.btn-link:hover{color:#0a58ca}.btn-link.disabled,.btn-link:disabled{color:#6c757d}.btn-group-lg>.btn,.btn-lg{padding:.5rem 1rem;font-size:1.25rem;border-radius:.3rem}.btn-group-sm>.btn,.btn-sm{padding:.25rem .5rem;font-size:.875rem;border-radius:.2rem}.fade{transition:opacity .15s linear}@media (prefers-reduced-motion:reduce){.fade{transition:none}}.fade:not(.show){opacity:0}.collapse:not(.show){display:none}.collapsing{height:0;overflow:hidden;transition:height .35s ease}@media (prefers-reduced-motion:reduce){.collapsing{transition:none}}.collapsing.collapse-horizontal{width:0;height:auto;transition:width .35s ease}@media (prefers-reduced-motion:reduce){.collapsing.collapse-horizontal{transition:none}}.dropdown,.dropend,.dropstart,.dropup{position:relative}.dropdown-toggle{white-space:nowrap}.dropdown-toggle::after{display:inline-block;margin-left:.255em;vertical-align:.255em;content:"";border-top:.3em solid;border-right:.3em solid transparent;border-bottom:0;border-left:.3em solid transparent}.dropdown-toggle:empty::after{margin-left:0}.dropdown-menu{position:absolute;z-index:1000;display:none;min-width:10rem;padding:.5rem 0;margin:0;font-size:1rem;color:#212529;text-align:left;list-style:none;background-color:#fff;background-clip:padding-box;border:1px solid rgba(0,0,0,.15);border-radius:.25rem}.dropdown-menu[data-bs-popper]{top:100%;left:0;margin-top:.125rem}.dropdown-menu-start{--bs-position:start}.dropdown-menu-start[data-bs-popper]{right:auto;left:0}.dropdown-menu-end{--bs-position:end}.dropdown-menu-end[data-bs-popper]{right:0;left:auto}@media (min-width:576px){.dropdown-menu-sm-start{--bs-position:start}.dropdown-menu-sm-start[data-bs-popper]{right:auto;left:0}.dropdown-menu-sm-end{--bs-position:end}.dropdown-menu-sm-end[data-bs-popper]{right:0;left:auto}}@media (min-width:768px){.dropdown-menu-md-start{--bs-position:start}.dropdown-menu-md-start[data-bs-popper]{right:auto;left:0}.dropdown-menu-md-end{--bs-position:end}.dropdown-menu-md-end[data-bs-popper]{right:0;left:auto}}@media (min-width:992px){.dropdown-menu-lg-start{--bs-position:start}.dropdown-menu-lg-start[data-bs-popper]{right:auto;left:0}.dropdown-menu-lg-end{--bs-position:end}.dropdown-menu-lg-end[data-bs-popper]{right:0;left:auto}}@media (min-width:1200px){.dropdown-menu-xl-start{--bs-position:start}.dropdown-menu-xl-start[data-bs-popper]{right:auto;left:0}.dropdown-menu-xl-end{--bs-position:end}.dropdown-menu-xl-end[data-bs-popper]{right:0;left:auto}}@media (min-width:1400px){.dropdown-menu-xxl-start{--bs-position:start}.dropdown-menu-xxl-start[data-bs-popper]{right:auto;left:0}.dropdown-menu-xxl-end{--bs-position:end}.dropdown-menu-xxl-end[data-bs-popper]{right:0;left:auto}}.dropup .dropdown-menu[data-bs-popper]{top:auto;bottom:100%;margin-top:0;margin-bottom:.125rem}.dropup .dropdown-toggle::after{display:inline-block;margin-left:.255em;vertical-align:.255em;content:"";border-top:0;border-right:.3em solid transparent;border-bottom:.3em solid;border-left:.3em solid transparent}.dropup .dropdown-toggle:empty::after{margin-left:0}.dropend .dropdown-menu[data-bs-popper]{top:0;right:auto;left:100%;margin-top:0;margin-left:.125rem}.dropend .dropdown-toggle::after{display:inline-block;margin-left:.255em;vertical-align:.255em;content:"";border-top:.3em solid transparent;border-right:0;border-bottom:.3em solid transparent;border-left:.3em solid}.dropend .dropdown-toggle:empty::after{margin-left:0}.dropend .dropdown-toggle::after{vertical-align:0}.dropstart .dropdown-menu[data-bs-popper]{top:0;right:100%;left:auto;margin-top:0;margin-right:.125rem}.dropstart .dropdown-toggle::after{display:inline-block;margin-left:.255em;vertical-align:.255em;content:""}.dropstart .dropdown-toggle::after{display:none}.dropstart .dropdown-toggle::before{display:inline-block;margin-right:.255em;vertical-align:.255em;content:"";border-top:.3em solid transparent;border-right:.3em solid;border-bottom:.3em solid transparent}.dropstart .dropdown-toggle:empty::after{margin-left:0}.dropstart .dropdown-toggle::before{vertical-align:0}.dropdown-divider{height:0;margin:.5rem 0;overflow:hidden;border-top:1px solid rgba(0,0,0,.15)}.dropdown-item{display:block;width:100%;padding:.25rem 1rem;clear:both;font-weight:400;color:#212529;text-align:inherit;text-decoration:none;white-space:nowrap;background-color:transparent;border:0}.dropdown-item:focus,.dropdown-item:hover{color:#1e2125;background-color:#e9ecef}.dropdown-item.active,.dropdown-item:active{color:#fff;text-decoration:none;background-color:#0d6efd}.dropdown-item.disabled,.dropdown-item:disabled{color:#adb5bd;pointer-events:none;background-color:transparent}.dropdown-menu.show{display:block}.dropdown-header{display:block;padding:.5rem 1rem;margin-bottom:0;font-size:.875rem;color:#6c757d;white-space:nowrap}.dropdown-item-text{display:block;padding:.25rem 1rem;color:#212529}.dropdown-menu-dark{color:#dee2e6;background-color:#343a40;border-color:rgba(0,0,0,.15)}.dropdown-menu-dark .dropdown-item{color:#dee2e6}.dropdown-menu-dark .dropdown-item:focus,.dropdown-menu-dark .dropdown-item:hover{color:#fff;background-color:rgba(255,255,255,.15)}.dropdown-menu-dark .dropdown-item.active,.dropdown-menu-dark .dropdown-item:active{color:#fff;background-color:#0d6efd}.dropdown-menu-dark .dropdown-item.disabled,.dropdown-menu-dark .dropdown-item:disabled{color:#adb5bd}.dropdown-menu-dark .dropdown-divider{border-color:rgba(0,0,0,.15)}.dropdown-menu-dark .dropdown-item-text{color:#dee2e6}.dropdown-menu-dark .dropdown-header{color:#adb5bd}.btn-group,.btn-group-vertical{position:relative;display:inline-flex;vertical-align:middle}.btn-group-vertical>.btn,.btn-group>.btn{position:relative;flex:1 1 auto}.btn-group-vertical>.btn-check:checked+.btn,.btn-group-vertical>.btn-check:focus+.btn,.btn-group-vertical>.btn.active,.btn-group-vertical>.btn:active,.btn-group-vertical>.btn:focus,.btn-group-vertical>.btn:hover,.btn-group>.btn-check:checked+.btn,.btn-group>.btn-check:focus+.btn,.btn-group>.btn.active,.btn-group>.btn:active,.btn-group>.btn:focus,.btn-group>.btn:hover{z-index:1}.btn-toolbar{display:flex;flex-wrap:wrap;justify-content:flex-start}.btn-toolbar .input-group{width:auto}.btn-group>.btn-group:not(:first-child),.btn-group>.btn:not(:first-child){margin-left:-1px}.btn-group>.btn-group:not(:last-child)>.btn,.btn-group>.btn:not(:last-child):not(.dropdown-toggle){border-top-right-radius:0;border-bottom-right-radius:0}.btn-group>.btn-group:not(:first-child)>.btn,.btn-group>.btn:nth-child(n+3),.btn-group>:not(.btn-check)+.btn{border-top-left-radius:0;border-bottom-left-radius:0}.dropdown-toggle-split{padding-right:.5625rem;padding-left:.5625rem}.dropdown-toggle-split::after,.dropend .dropdown-toggle-split::after,.dropup .dropdown-toggle-split::after{margin-left:0}.dropstart .dropdown-toggle-split::before{margin-right:0}.btn-group-sm>.btn+.dropdown-toggle-split,.btn-sm+.dropdown-toggle-split{padding-right:.375rem;padding-left:.375rem}.btn-group-lg>.btn+.dropdown-toggle-split,.btn-lg+.dropdown-toggle-split{padding-right:.75rem;padding-left:.75rem}.btn-group-vertical{flex-direction:column;align-items:flex-start;justify-content:center}.btn-group-vertical>.btn,.btn-group-vertical>.btn-group{width:100%}.btn-group-vertical>.btn-group:not(:first-child),.btn-group-vertical>.btn:not(:first-child){margin-top:-1px}.btn-group-vertical>.btn-group:not(:last-child)>.btn,.btn-group-vertical>.btn:not(:last-child):not(.dropdown-toggle){border-bottom-right-radius:0;border-bottom-left-radius:0}.btn-group-vertical>.btn-group:not(:first-child)>.btn,.btn-group-vertical>.btn~.btn{border-top-left-radius:0;border-top-right-radius:0}.nav{display:flex;flex-wrap:wrap;padding-left:0;margin-bottom:0;list-style:none}.nav-link{display:block;padding:.5rem 1rem;color:#0d6efd;text-decoration:none;transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out}@media (prefers-reduced-motion:reduce){.nav-link{transition:none}}.nav-link:focus,.nav-link:hover{color:#0a58ca}.nav-link.disabled{color:#6c757d;pointer-events:none;cursor:default}.nav-tabs{border-bottom:1px solid #dee2e6}.nav-tabs .nav-link{margin-bottom:-1px;background:0 0;border:1px solid transparent;border-top-left-radius:.25rem;border-top-right-radius:.25rem}.nav-tabs .nav-link:focus,.nav-tabs .nav-link:hover{border-color:#e9ecef #e9ecef #dee2e6;isolation:isolate}.nav-tabs .nav-link.disabled{color:#6c757d;background-color:transparent;border-color:transparent}.nav-tabs .nav-item.show .nav-link,.nav-tabs .nav-link.active{color:#495057;background-color:#fff;border-color:#dee2e6 #dee2e6 #fff}.nav-tabs .dropdown-menu{margin-top:-1px;border-top-left-radius:0;border-top-right-radius:0}.nav-pills .nav-link{background:0 0;border:0;border-radius:.25rem}.nav-pills .nav-link.active,.nav-pills .show>.nav-link{color:#fff;background-color:#0d6efd}.nav-fill .nav-item,.nav-fill>.nav-link{flex:1 1 auto;text-align:center}.nav-justified .nav-item,.nav-justified>.nav-link{flex-basis:0;flex-grow:1;text-align:center}.nav-fill .nav-item .nav-link,.nav-justified .nav-item .nav-link{width:100%}.tab-content>.tab-pane{display:none}.tab-content>.active{display:block}.navbar{position:relative;display:flex;flex-wrap:wrap;align-items:center;justify-content:space-between;padding-top:.5rem;padding-bottom:.5rem}.navbar>.container,.navbar>.container-fluid,.navbar>.container-lg,.navbar>.container-md,.navbar>.container-sm,.navbar>.container-xl,.navbar>.container-xxl{display:flex;flex-wrap:inherit;align-items:center;justify-content:space-between}.navbar-brand{padding-top:.3125rem;padding-bottom:.3125rem;margin-right:1rem;font-size:1.25rem;text-decoration:none;white-space:nowrap}.navbar-nav{display:flex;flex-direction:column;padding-left:0;margin-bottom:0;list-style:none}.navbar-nav .nav-link{padding-right:0;padding-left:0}.navbar-nav .dropdown-menu{position:static}.navbar-text{padding-top:.5rem;padding-bottom:.5rem}.navbar-collapse{flex-basis:100%;flex-grow:1;align-items:center}.navbar-toggler{padding:.25rem .75rem;font-size:1.25rem;line-height:1;background-color:transparent;border:1px solid transparent;border-radius:.25rem;transition:box-shadow .15s ease-in-out}@media (prefers-reduced-motion:reduce){.navbar-toggler{transition:none}}.navbar-toggler:hover{text-decoration:none}.navbar-toggler:focus{text-decoration:none;outline:0;box-shadow:0 0 0 .25rem}.navbar-toggler-icon{display:inline-block;width:1.5em;height:1.5em;vertical-align:middle;background-repeat:no-repeat;background-position:center;background-size:100%}.navbar-nav-scroll{max-height:var(--bs-scroll-height,75vh);overflow-y:auto}@media (min-width:576px){.navbar-expand-sm{flex-wrap:nowrap;justify-content:flex-start}.navbar-expand-sm .navbar-nav{flex-direction:row}.navbar-expand-sm .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-sm .navbar-nav .nav-link{padding-right:.5rem;padding-left:.5rem}.navbar-expand-sm .navbar-nav-scroll{overflow:visible}.navbar-expand-sm .navbar-collapse{display:flex!important;flex-basis:auto}.navbar-expand-sm .navbar-toggler{display:none}.navbar-expand-sm .offcanvas-header{display:none}.navbar-expand-sm .offcanvas{position:inherit;bottom:0;z-index:1000;flex-grow:1;visibility:visible!important;background-color:transparent;border-right:0;border-left:0;transition:none;transform:none}.navbar-expand-sm .offcanvas-bottom,.navbar-expand-sm .offcanvas-top{height:auto;border-top:0;border-bottom:0}.navbar-expand-sm .offcanvas-body{display:flex;flex-grow:0;padding:0;overflow-y:visible}}@media (min-width:768px){.navbar-expand-md{flex-wrap:nowrap;justify-content:flex-start}.navbar-expand-md .navbar-nav{flex-direction:row}.navbar-expand-md .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-md .navbar-nav .nav-link{padding-right:.5rem;padding-left:.5rem}.navbar-expand-md .navbar-nav-scroll{overflow:visible}.navbar-expand-md .navbar-collapse{display:flex!important;flex-basis:auto}.navbar-expand-md .navbar-toggler{display:none}.navbar-expand-md .offcanvas-header{display:none}.navbar-expand-md .offcanvas{position:inherit;bottom:0;z-index:1000;flex-grow:1;visibility:visible!important;background-color:transparent;border-right:0;border-left:0;transition:none;transform:none}.navbar-expand-md .offcanvas-bottom,.navbar-expand-md .offcanvas-top{height:auto;border-top:0;border-bottom:0}.navbar-expand-md .offcanvas-body{display:flex;flex-grow:0;padding:0;overflow-y:visible}}@media (min-width:992px){.navbar-expand-lg{flex-wrap:nowrap;justify-content:flex-start}.navbar-expand-lg .navbar-nav{flex-direction:row}.navbar-expand-lg .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-lg .navbar-nav .nav-link{padding-right:.5rem;padding-left:.5rem}.navbar-expand-lg .navbar-nav-scroll{overflow:visible}.navbar-expand-lg .navbar-collapse{display:flex!important;flex-basis:auto}.navbar-expand-lg .navbar-toggler{display:none}.navbar-expand-lg .offcanvas-header{display:none}.navbar-expand-lg .offcanvas{position:inherit;bottom:0;z-index:1000;flex-grow:1;visibility:visible!important;background-color:transparent;border-right:0;border-left:0;transition:none;transform:none}.navbar-expand-lg .offcanvas-bottom,.navbar-expand-lg .offcanvas-top{height:auto;border-top:0;border-bottom:0}.navbar-expand-lg .offcanvas-body{display:flex;flex-grow:0;padding:0;overflow-y:visible}}@media (min-width:1200px){.navbar-expand-xl{flex-wrap:nowrap;justify-content:flex-start}.navbar-expand-xl .navbar-nav{flex-direction:row}.navbar-expand-xl .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-xl .navbar-nav .nav-link{padding-right:.5rem;padding-left:.5rem}.navbar-expand-xl .navbar-nav-scroll{overflow:visible}.navbar-expand-xl .navbar-collapse{display:flex!important;flex-basis:auto}.navbar-expand-xl .navbar-toggler{display:none}.navbar-expand-xl .offcanvas-header{display:none}.navbar-expand-xl .offcanvas{position:inherit;bottom:0;z-index:1000;flex-grow:1;visibility:visible!important;background-color:transparent;border-right:0;border-left:0;transition:none;transform:none}.navbar-expand-xl .offcanvas-bottom,.navbar-expand-xl .offcanvas-top{height:auto;border-top:0;border-bottom:0}.navbar-expand-xl .offcanvas-body{display:flex;flex-grow:0;padding:0;overflow-y:visible}}@media (min-width:1400px){.navbar-expand-xxl{flex-wrap:nowrap;justify-content:flex-start}.navbar-expand-xxl .navbar-nav{flex-direction:row}.navbar-expand-xxl .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-xxl .navbar-nav .nav-link{padding-right:.5rem;padding-left:.5rem}.navbar-expand-xxl .navbar-nav-scroll{overflow:visible}.navbar-expand-xxl .navbar-collapse{display:flex!important;flex-basis:auto}.navbar-expand-xxl .navbar-toggler{display:none}.navbar-expand-xxl .offcanvas-header{display:none}.navbar-expand-xxl .offcanvas{position:inherit;bottom:0;z-index:1000;flex-grow:1;visibility:visible!important;background-color:transparent;border-right:0;border-left:0;transition:none;transform:none}.navbar-expand-xxl .offcanvas-bottom,.navbar-expand-xxl .offcanvas-top{height:auto;border-top:0;border-bottom:0}.navbar-expand-xxl .offcanvas-body{display:flex;flex-grow:0;padding:0;overflow-y:visible}}.navbar-expand{flex-wrap:nowrap;justify-content:flex-start}.navbar-expand .navbar-nav{flex-direction:row}.navbar-expand .navbar-nav .dropdown-menu{position:absolute}.navbar-expand .navbar-nav .nav-link{padding-right:.5rem;padding-left:.5rem}.navbar-expand .navbar-nav-scroll{overflow:visible}.navbar-expand .navbar-collapse{display:flex!important;flex-basis:auto}.navbar-expand .navbar-toggler{display:none}.navbar-expand .offcanvas-header{display:none}.navbar-expand .offcanvas{position:inherit;bottom:0;z-index:1000;flex-grow:1;visibility:visible!important;background-color:transparent;border-right:0;border-left:0;transition:none;transform:none}.navbar-expand .offcanvas-bottom,.navbar-expand .offcanvas-top{height:auto;border-top:0;border-bottom:0}.navbar-expand .offcanvas-body{display:flex;flex-grow:0;padding:0;overflow-y:visible}.navbar-light .navbar-brand{color:rgba(0,0,0,.9)}.navbar-light .navbar-brand:focus,.navbar-light .navbar-brand:hover{color:rgba(0,0,0,.9)}.navbar-light .navbar-nav .nav-link{color:rgba(0,0,0,.55)}.navbar-light .navbar-nav .nav-link:focus,.navbar-light .navbar-nav .nav-link:hover{color:rgba(0,0,0,.7)}.navbar-light .navbar-nav .nav-link.disabled{color:rgba(0,0,0,.3)}.navbar-light .navbar-nav .nav-link.active,.navbar-light .navbar-nav .show>.nav-link{color:rgba(0,0,0,.9)}.navbar-light .navbar-toggler{color:rgba(0,0,0,.55);border-color:rgba(0,0,0,.1)}.navbar-light .navbar-toggler-icon{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%280, 0, 0, 0.55%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e")}.navbar-light .navbar-text{color:rgba(0,0,0,.55)}.navbar-light .navbar-text a,.navbar-light .navbar-text a:focus,.navbar-light .navbar-text a:hover{color:rgba(0,0,0,.9)}.navbar-dark .navbar-brand{color:#fff}.navbar-dark .navbar-brand:focus,.navbar-dark .navbar-brand:hover{color:#fff}.navbar-dark .navbar-nav .nav-link{color:rgba(255,255,255,.55)}.navbar-dark .navbar-nav .nav-link:focus,.navbar-dark .navbar-nav .nav-link:hover{color:rgba(255,255,255,.75)}.navbar-dark .navbar-nav .nav-link.disabled{color:rgba(255,255,255,.25)}.navbar-dark .navbar-nav .nav-link.active,.navbar-dark .navbar-nav .show>.nav-link{color:#fff}.navbar-dark .navbar-toggler{color:rgba(255,255,255,.55);border-color:rgba(255,255,255,.1)}.navbar-dark .navbar-toggler-icon{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.55%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e")}.navbar-dark .navbar-text{color:rgba(255,255,255,.55)}.navbar-dark .navbar-text a,.navbar-dark .navbar-text a:focus,.navbar-dark .navbar-text a:hover{color:#fff}.card{position:relative;display:flex;flex-direction:column;min-width:0;word-wrap:break-word;background-color:#fff;background-clip:border-box;border:1px solid rgba(0,0,0,.125);border-radius:.25rem}.card>hr{margin-right:0;margin-left:0}.card>.list-group{border-top:inherit;border-bottom:inherit}.card>.list-group:first-child{border-top-width:0;border-top-left-radius:calc(.25rem - 1px);border-top-right-radius:calc(.25rem - 1px)}.card>.list-group:last-child{border-bottom-width:0;border-bottom-right-radius:calc(.25rem - 1px);border-bottom-left-radius:calc(.25rem - 1px)}.card>.card-header+.list-group,.card>.list-group+.card-footer{border-top:0}.card-body{flex:1 1 auto;padding:1rem 1rem}.card-title{margin-bottom:.5rem}.card-subtitle{margin-top:-.25rem;margin-bottom:0}.card-text:last-child{margin-bottom:0}.card-link+.card-link{margin-left:1rem}.card-header{padding:.5rem 1rem;margin-bottom:0;background-color:rgba(0,0,0,.03);border-bottom:1px solid rgba(0,0,0,.125)}.card-header:first-child{border-radius:calc(.25rem - 1px) calc(.25rem - 1px) 0 0}.card-footer{padding:.5rem 1rem;background-color:rgba(0,0,0,.03);border-top:1px solid rgba(0,0,0,.125)}.card-footer:last-child{border-radius:0 0 calc(.25rem - 1px) calc(.25rem - 1px)}.card-header-tabs{margin-right:-.5rem;margin-bottom:-.5rem;margin-left:-.5rem;border-bottom:0}.card-header-pills{margin-right:-.5rem;margin-left:-.5rem}.card-img-overlay{position:absolute;top:0;right:0;bottom:0;left:0;padding:1rem;border-radius:calc(.25rem - 1px)}.card-img,.card-img-bottom,.card-img-top{width:100%}.card-img,.card-img-top{border-top-left-radius:calc(.25rem - 1px);border-top-right-radius:calc(.25rem - 1px)}.card-img,.card-img-bottom{border-bottom-right-radius:calc(.25rem - 1px);border-bottom-left-radius:calc(.25rem - 1px)}.card-group>.card{margin-bottom:.75rem}@media (min-width:576px){.card-group{display:flex;flex-flow:row wrap}.card-group>.card{flex:1 0 0%;margin-bottom:0}.card-group>.card+.card{margin-left:0;border-left:0}.card-group>.card:not(:last-child){border-top-right-radius:0;border-bottom-right-radius:0}.card-group>.card:not(:last-child) .card-header,.card-group>.card:not(:last-child) .card-img-top{border-top-right-radius:0}.card-group>.card:not(:last-child) .card-footer,.card-group>.card:not(:last-child) .card-img-bottom{border-bottom-right-radius:0}.card-group>.card:not(:first-child){border-top-left-radius:0;border-bottom-left-radius:0}.card-group>.card:not(:first-child) .card-header,.card-group>.card:not(:first-child) .card-img-top{border-top-left-radius:0}.card-group>.card:not(:first-child) .card-footer,.card-group>.card:not(:first-child) .card-img-bottom{border-bottom-left-radius:0}}.accordion-button{position:relative;display:flex;align-items:center;width:100%;padding:1rem 1.25rem;font-size:1rem;color:#212529;text-align:left;background-color:#fff;border:0;border-radius:0;overflow-anchor:none;transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out,border-radius .15s ease}@media (prefers-reduced-motion:reduce){.accordion-button{transition:none}}.accordion-button:not(.collapsed){color:#0c63e4;background-color:#e7f1ff;box-shadow:inset 0 -1px 0 rgba(0,0,0,.125)}.accordion-button:not(.collapsed)::after{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%230c63e4'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");transform:rotate(-180deg)}.accordion-button::after{flex-shrink:0;width:1.25rem;height:1.25rem;margin-left:auto;content:"";background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23212529'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");background-repeat:no-repeat;background-size:1.25rem;transition:transform .2s ease-in-out}@media (prefers-reduced-motion:reduce){.accordion-button::after{transition:none}}.accordion-button:hover{z-index:2}.accordion-button:focus{z-index:3;border-color:#86b7fe;outline:0;box-shadow:0 0 0 .25rem rgba(13,110,253,.25)}.accordion-header{margin-bottom:0}.accordion-item{background-color:#fff;border:1px solid rgba(0,0,0,.125)}.accordion-item:first-of-type{border-top-left-radius:.25rem;border-top-right-radius:.25rem}.accordion-item:first-of-type .accordion-button{border-top-left-radius:calc(.25rem - 1px);border-top-right-radius:calc(.25rem - 1px)}.accordion-item:not(:first-of-type){border-top:0}.accordion-item:last-of-type{border-bottom-right-radius:.25rem;border-bottom-left-radius:.25rem}.accordion-item:last-of-type .accordion-button.collapsed{border-bottom-right-radius:calc(.25rem - 1px);border-bottom-left-radius:calc(.25rem - 1px)}.accordion-item:last-of-type .accordion-collapse{border-bottom-right-radius:.25rem;border-bottom-left-radius:.25rem}.accordion-body{padding:1rem 1.25rem}.accordion-flush .accordion-collapse{border-width:0}.accordion-flush .accordion-item{border-right:0;border-left:0;border-radius:0}.accordion-flush .accordion-item:first-child{border-top:0}.accordion-flush .accordion-item:last-child{border-bottom:0}.accordion-flush .accordion-item .accordion-button{border-radius:0}.breadcrumb{display:flex;flex-wrap:wrap;padding:0 0;margin-bottom:1rem;list-style:none}.breadcrumb-item+.breadcrumb-item{padding-left:.5rem}.breadcrumb-item+.breadcrumb-item::before{float:left;padding-right:.5rem;color:#6c757d;content:var(--bs-breadcrumb-divider, "/")}.breadcrumb-item.active{color:#6c757d}.pagination{display:flex;padding-left:0;list-style:none}.page-link{position:relative;display:block;color:#0d6efd;text-decoration:none;background-color:#fff;border:1px solid #dee2e6;transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out}@media (prefers-reduced-motion:reduce){.page-link{transition:none}}.page-link:hover{z-index:2;color:#0a58ca;background-color:#e9ecef;border-color:#dee2e6}.page-link:focus{z-index:3;color:#0a58ca;background-color:#e9ecef;outline:0;box-shadow:0 0 0 .25rem rgba(13,110,253,.25)}.page-item:not(:first-child) .page-link{margin-left:-1px}.page-item.active .page-link{z-index:3;color:#fff;background-color:#0d6efd;border-color:#0d6efd}.page-item.disabled .page-link{color:#6c757d;pointer-events:none;background-color:#fff;border-color:#dee2e6}.page-link{padding:.375rem .75rem}.page-item:first-child .page-link{border-top-left-radius:.25rem;border-bottom-left-radius:.25rem}.page-item:last-child .page-link{border-top-right-radius:.25rem;border-bottom-right-radius:.25rem}.pagination-lg .page-link{padding:.75rem 1.5rem;font-size:1.25rem}.pagination-lg .page-item:first-child .page-link{border-top-left-radius:.3rem;border-bottom-left-radius:.3rem}.pagination-lg .page-item:last-child .page-link{border-top-right-radius:.3rem;border-bottom-right-radius:.3rem}.pagination-sm .page-link{padding:.25rem .5rem;font-size:.875rem}.pagination-sm .page-item:first-child .page-link{border-top-left-radius:.2rem;border-bottom-left-radius:.2rem}.pagination-sm .page-item:last-child .page-link{border-top-right-radius:.2rem;border-bottom-right-radius:.2rem}.badge{display:inline-block;padding:.35em .65em;font-size:.75em;font-weight:700;line-height:1;color:#fff;text-align:center;white-space:nowrap;vertical-align:baseline;border-radius:.25rem}.badge:empty{display:none}.btn .badge{position:relative;top:-1px}.alert{position:relative;padding:1rem 1rem;margin-bottom:1rem;border:1px solid transparent;border-radius:.25rem}.alert-heading{color:inherit}.alert-link{font-weight:700}.alert-dismissible{padding-right:3rem}.alert-dismissible .btn-close{position:absolute;top:0;right:0;z-index:2;padding:1.25rem 1rem}.alert-primary{color:#084298;background-color:#cfe2ff;border-color:#b6d4fe}.alert-primary .alert-link{color:#06357a}.alert-secondary{color:#41464b;background-color:#e2e3e5;border-color:#d3d6d8}.alert-secondary .alert-link{color:#34383c}.alert-success{color:#0f5132;background-color:#d1e7dd;border-color:#badbcc}.alert-success .alert-link{color:#0c4128}.alert-info{color:#055160;background-color:#cff4fc;border-color:#b6effb}.alert-info .alert-link{color:#04414d}.alert-warning{color:#664d03;background-color:#fff3cd;border-color:#ffecb5}.alert-warning .alert-link{color:#523e02}.alert-danger{color:#842029;background-color:#f8d7da;border-color:#f5c2c7}.alert-danger .alert-link{color:#6a1a21}.alert-light{color:#636464;background-color:#fefefe;border-color:#fdfdfe}.alert-light .alert-link{color:#4f5050}.alert-dark{color:#141619;background-color:#d3d3d4;border-color:#bcbebf}.alert-dark .alert-link{color:#101214}@-webkit-keyframes progress-bar-stripes{0%{background-position-x:1rem}}@keyframes progress-bar-stripes{0%{background-position-x:1rem}}.progress{display:flex;height:1rem;overflow:hidden;font-size:.75rem;background-color:#e9ecef;border-radius:.25rem}.progress-bar{display:flex;flex-direction:column;justify-content:center;overflow:hidden;color:#fff;text-align:center;white-space:nowrap;background-color:#0d6efd;transition:width .6s ease}@media (prefers-reduced-motion:reduce){.progress-bar{transition:none}}.progress-bar-striped{background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-size:1rem 1rem}.progress-bar-animated{-webkit-animation:1s linear infinite progress-bar-stripes;animation:1s linear infinite progress-bar-stripes}@media (prefers-reduced-motion:reduce){.progress-bar-animated{-webkit-animation:none;animation:none}}.list-group{display:flex;flex-direction:column;padding-left:0;margin-bottom:0;border-radius:.25rem}.list-group-numbered{list-style-type:none;counter-reset:section}.list-group-numbered>li::before{content:counters(section, ".") ". ";counter-increment:section}.list-group-item-action{width:100%;color:#495057;text-align:inherit}.list-group-item-action:focus,.list-group-item-action:hover{z-index:1;color:#495057;text-decoration:none;background-color:#f8f9fa}.list-group-item-action:active{color:#212529;background-color:#e9ecef}.list-group-item{position:relative;display:block;padding:.5rem 1rem;color:#212529;text-decoration:none;background-color:#fff;border:1px solid rgba(0,0,0,.125)}.list-group-item:first-child{border-top-left-radius:inherit;border-top-right-radius:inherit}.list-group-item:last-child{border-bottom-right-radius:inherit;border-bottom-left-radius:inherit}.list-group-item.disabled,.list-group-item:disabled{color:#6c757d;pointer-events:none;background-color:#fff}.list-group-item.active{z-index:2;color:#fff;background-color:#0d6efd;border-color:#0d6efd}.list-group-item+.list-group-item{border-top-width:0}.list-group-item+.list-group-item.active{margin-top:-1px;border-top-width:1px}.list-group-horizontal{flex-direction:row}.list-group-horizontal>.list-group-item:first-child{border-bottom-left-radius:.25rem;border-top-right-radius:0}.list-group-horizontal>.list-group-item:last-child{border-top-right-radius:.25rem;border-bottom-left-radius:0}.list-group-horizontal>.list-group-item.active{margin-top:0}.list-group-horizontal>.list-group-item+.list-group-item{border-top-width:1px;border-left-width:0}.list-group-horizontal>.list-group-item+.list-group-item.active{margin-left:-1px;border-left-width:1px}@media (min-width:576px){.list-group-horizontal-sm{flex-direction:row}.list-group-horizontal-sm>.list-group-item:first-child{border-bottom-left-radius:.25rem;border-top-right-radius:0}.list-group-horizontal-sm>.list-group-item:last-child{border-top-right-radius:.25rem;border-bottom-left-radius:0}.list-group-horizontal-sm>.list-group-item.active{margin-top:0}.list-group-horizontal-sm>.list-group-item+.list-group-item{border-top-width:1px;border-left-width:0}.list-group-horizontal-sm>.list-group-item+.list-group-item.active{margin-left:-1px;border-left-width:1px}}@media (min-width:768px){.list-group-horizontal-md{flex-direction:row}.list-group-horizontal-md>.list-group-item:first-child{border-bottom-left-radius:.25rem;border-top-right-radius:0}.list-group-horizontal-md>.list-group-item:last-child{border-top-right-radius:.25rem;border-bottom-left-radius:0}.list-group-horizontal-md>.list-group-item.active{margin-top:0}.list-group-horizontal-md>.list-group-item+.list-group-item{border-top-width:1px;border-left-width:0}.list-group-horizontal-md>.list-group-item+.list-group-item.active{margin-left:-1px;border-left-width:1px}}@media (min-width:992px){.list-group-horizontal-lg{flex-direction:row}.list-group-horizontal-lg>.list-group-item:first-child{border-bottom-left-radius:.25rem;border-top-right-radius:0}.list-group-horizontal-lg>.list-group-item:last-child{border-top-right-radius:.25rem;border-bottom-left-radius:0}.list-group-horizontal-lg>.list-group-item.active{margin-top:0}.list-group-horizontal-lg>.list-group-item+.list-group-item{border-top-width:1px;border-left-width:0}.list-group-horizontal-lg>.list-group-item+.list-group-item.active{margin-left:-1px;border-left-width:1px}}@media (min-width:1200px){.list-group-horizontal-xl{flex-direction:row}.list-group-horizontal-xl>.list-group-item:first-child{border-bottom-left-radius:.25rem;border-top-right-radius:0}.list-group-horizontal-xl>.list-group-item:last-child{border-top-right-radius:.25rem;border-bottom-left-radius:0}.list-group-horizontal-xl>.list-group-item.active{margin-top:0}.list-group-horizontal-xl>.list-group-item+.list-group-item{border-top-width:1px;border-left-width:0}.list-group-horizontal-xl>.list-group-item+.list-group-item.active{margin-left:-1px;border-left-width:1px}}@media (min-width:1400px){.list-group-horizontal-xxl{flex-direction:row}.list-group-horizontal-xxl>.list-group-item:first-child{border-bottom-left-radius:.25rem;border-top-right-radius:0}.list-group-horizontal-xxl>.list-group-item:last-child{border-top-right-radius:.25rem;border-bottom-left-radius:0}.list-group-horizontal-xxl>.list-group-item.active{margin-top:0}.list-group-horizontal-xxl>.list-group-item+.list-group-item{border-top-width:1px;border-left-width:0}.list-group-horizontal-xxl>.list-group-item+.list-group-item.active{margin-left:-1px;border-left-width:1px}}.list-group-flush{border-radius:0}.list-group-flush>.list-group-item{border-width:0 0 1px}.list-group-flush>.list-group-item:last-child{border-bottom-width:0}.list-group-item-primary{color:#084298;background-color:#cfe2ff}.list-group-item-primary.list-group-item-action:focus,.list-group-item-primary.list-group-item-action:hover{color:#084298;background-color:#bacbe6}.list-group-item-primary.list-group-item-action.active{color:#fff;background-color:#084298;border-color:#084298}.list-group-item-secondary{color:#41464b;background-color:#e2e3e5}.list-group-item-secondary.list-group-item-action:focus,.list-group-item-secondary.list-group-item-action:hover{color:#41464b;background-color:#cbccce}.list-group-item-secondary.list-group-item-action.active{color:#fff;background-color:#41464b;border-color:#41464b}.list-group-item-success{color:#0f5132;background-color:#d1e7dd}.list-group-item-success.list-group-item-action:focus,.list-group-item-success.list-group-item-action:hover{color:#0f5132;background-color:#bcd0c7}.list-group-item-success.list-group-item-action.active{color:#fff;background-color:#0f5132;border-color:#0f5132}.list-group-item-info{color:#055160;background-color:#cff4fc}.list-group-item-info.list-group-item-action:focus,.list-group-item-info.list-group-item-action:hover{color:#055160;background-color:#badce3}.list-group-item-info.list-group-item-action.active{color:#fff;background-color:#055160;border-color:#055160}.list-group-item-warning{color:#664d03;background-color:#fff3cd}.list-group-item-warning.list-group-item-action:focus,.list-group-item-warning.list-group-item-action:hover{color:#664d03;background-color:#e6dbb9}.list-group-item-warning.list-group-item-action.active{color:#fff;background-color:#664d03;border-color:#664d03}.list-group-item-danger{color:#842029;background-color:#f8d7da}.list-group-item-danger.list-group-item-action:focus,.list-group-item-danger.list-group-item-action:hover{color:#842029;background-color:#dfc2c4}.list-group-item-danger.list-group-item-action.active{color:#fff;background-color:#842029;border-color:#842029}.list-group-item-light{color:#636464;background-color:#fefefe}.list-group-item-light.list-group-item-action:focus,.list-group-item-light.list-group-item-action:hover{color:#636464;background-color:#e5e5e5}.list-group-item-light.list-group-item-action.active{color:#fff;background-color:#636464;border-color:#636464}.list-group-item-dark{color:#141619;background-color:#d3d3d4}.list-group-item-dark.list-group-item-action:focus,.list-group-item-dark.list-group-item-action:hover{color:#141619;background-color:#bebebf}.list-group-item-dark.list-group-item-action.active{color:#fff;background-color:#141619;border-color:#141619}.btn-close{box-sizing:content-box;width:1em;height:1em;padding:.25em .25em;color:#000;background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23000'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat;border:0;border-radius:.25rem;opacity:.5}.btn-close:hover{color:#000;text-decoration:none;opacity:.75}.btn-close:focus{outline:0;box-shadow:0 0 0 .25rem rgba(13,110,253,.25);opacity:1}.btn-close.disabled,.btn-close:disabled{pointer-events:none;-webkit-user-select:none;-moz-user-select:none;user-select:none;opacity:.25}.btn-close-white{filter:invert(1) grayscale(100%) brightness(200%)}.toast{width:350px;max-width:100%;font-size:.875rem;pointer-events:auto;background-color:rgba(255,255,255,.85);background-clip:padding-box;border:1px solid rgba(0,0,0,.1);box-shadow:0 .5rem 1rem rgba(0,0,0,.15);border-radius:.25rem}.toast.showing{opacity:0}.toast:not(.show){display:none}.toast-container{width:-webkit-max-content;width:-moz-max-content;width:max-content;max-width:100%;pointer-events:none}.toast-container>:not(:last-child){margin-bottom:.75rem}.toast-header{display:flex;align-items:center;padding:.5rem .75rem;color:#6c757d;background-color:rgba(255,255,255,.85);background-clip:padding-box;border-bottom:1px solid rgba(0,0,0,.05);border-top-left-radius:calc(.25rem - 1px);border-top-right-radius:calc(.25rem - 1px)}.toast-header .btn-close{margin-right:-.375rem;margin-left:.75rem}.toast-body{padding:.75rem;word-wrap:break-word}.modal{position:fixed;top:0;left:0;z-index:1055;display:none;width:100%;height:100%;overflow-x:hidden;overflow-y:auto;outline:0}.modal-dialog{position:relative;width:auto;margin:.5rem;pointer-events:none}.modal.fade .modal-dialog{transition:transform .3s ease-out;transform:translate(0,-50px)}@media (prefers-reduced-motion:reduce){.modal.fade .modal-dialog{transition:none}}.modal.show .modal-dialog{transform:none}.modal.modal-static .modal-dialog{transform:scale(1.02)}.modal-dialog-scrollable{height:calc(100% - 1rem)}.modal-dialog-scrollable .modal-content{max-height:100%;overflow:hidden}.modal-dialog-scrollable .modal-body{overflow-y:auto}.modal-dialog-centered{display:flex;align-items:center;min-height:calc(100% - 1rem)}.modal-content{position:relative;display:flex;flex-direction:column;width:100%;pointer-events:auto;background-color:#fff;background-clip:padding-box;border:1px solid rgba(0,0,0,.2);border-radius:.3rem;outline:0}.modal-backdrop{position:fixed;top:0;left:0;z-index:1050;width:100vw;height:100vh;background-color:#000}.modal-backdrop.fade{opacity:0}.modal-backdrop.show{opacity:.5}.modal-header{display:flex;flex-shrink:0;align-items:center;justify-content:space-between;padding:1rem 1rem;border-bottom:1px solid #dee2e6;border-top-left-radius:calc(.3rem - 1px);border-top-right-radius:calc(.3rem - 1px)}.modal-header .btn-close{padding:.5rem .5rem;margin:-.5rem -.5rem -.5rem auto}.modal-title{margin-bottom:0;line-height:1.5}.modal-body{position:relative;flex:1 1 auto;padding:1rem}.modal-footer{display:flex;flex-wrap:wrap;flex-shrink:0;align-items:center;justify-content:flex-end;padding:.75rem;border-top:1px solid #dee2e6;border-bottom-right-radius:calc(.3rem - 1px);border-bottom-left-radius:calc(.3rem - 1px)}.modal-footer>*{margin:.25rem}@media (min-width:576px){.modal-dialog{max-width:500px;margin:1.75rem auto}.modal-dialog-scrollable{height:calc(100% - 3.5rem)}.modal-dialog-centered{min-height:calc(100% - 3.5rem)}.modal-sm{max-width:300px}}@media (min-width:992px){.modal-lg,.modal-xl{max-width:800px}}@media (min-width:1200px){.modal-xl{max-width:1140px}}.modal-fullscreen{width:100vw;max-width:none;height:100%;margin:0}.modal-fullscreen .modal-content{height:100%;border:0;border-radius:0}.modal-fullscreen .modal-header{border-radius:0}.modal-fullscreen .modal-body{overflow-y:auto}.modal-fullscreen .modal-footer{border-radius:0}@media (max-width:575.98px){.modal-fullscreen-sm-down{width:100vw;max-width:none;height:100%;margin:0}.modal-fullscreen-sm-down .modal-content{height:100%;border:0;border-radius:0}.modal-fullscreen-sm-down .modal-header{border-radius:0}.modal-fullscreen-sm-down .modal-body{overflow-y:auto}.modal-fullscreen-sm-down .modal-footer{border-radius:0}}@media (max-width:767.98px){.modal-fullscreen-md-down{width:100vw;max-width:none;height:100%;margin:0}.modal-fullscreen-md-down .modal-content{height:100%;border:0;border-radius:0}.modal-fullscreen-md-down .modal-header{border-radius:0}.modal-fullscreen-md-down .modal-body{overflow-y:auto}.modal-fullscreen-md-down .modal-footer{border-radius:0}}@media (max-width:991.98px){.modal-fullscreen-lg-down{width:100vw;max-width:none;height:100%;margin:0}.modal-fullscreen-lg-down .modal-content{height:100%;border:0;border-radius:0}.modal-fullscreen-lg-down .modal-header{border-radius:0}.modal-fullscreen-lg-down .modal-body{overflow-y:auto}.modal-fullscreen-lg-down .modal-footer{border-radius:0}}@media (max-width:1199.98px){.modal-fullscreen-xl-down{width:100vw;max-width:none;height:100%;margin:0}.modal-fullscreen-xl-down .modal-content{height:100%;border:0;border-radius:0}.modal-fullscreen-xl-down .modal-header{border-radius:0}.modal-fullscreen-xl-down .modal-body{overflow-y:auto}.modal-fullscreen-xl-down .modal-footer{border-radius:0}}@media (max-width:1399.98px){.modal-fullscreen-xxl-down{width:100vw;max-width:none;height:100%;margin:0}.modal-fullscreen-xxl-down .modal-content{height:100%;border:0;border-radius:0}.modal-fullscreen-xxl-down .modal-header{border-radius:0}.modal-fullscreen-xxl-down .modal-body{overflow-y:auto}.modal-fullscreen-xxl-down .modal-footer{border-radius:0}}.tooltip{position:absolute;z-index:1080;display:block;margin:0;font-family:var(--bs-font-sans-serif);font-style:normal;font-weight:400;line-height:1.5;text-align:left;text-align:start;text-decoration:none;text-shadow:none;text-transform:none;letter-spacing:normal;word-break:normal;word-spacing:normal;white-space:normal;line-break:auto;font-size:.875rem;word-wrap:break-word;opacity:0}.tooltip.show{opacity:.9}.tooltip .tooltip-arrow{position:absolute;display:block;width:.8rem;height:.4rem}.tooltip .tooltip-arrow::before{position:absolute;content:"";border-color:transparent;border-style:solid}.bs-tooltip-auto[data-popper-placement^=top],.bs-tooltip-top{padding:.4rem 0}.bs-tooltip-auto[data-popper-placement^=top] .tooltip-arrow,.bs-tooltip-top .tooltip-arrow{bottom:0}.bs-tooltip-auto[data-popper-placement^=top] .tooltip-arrow::before,.bs-tooltip-top .tooltip-arrow::before{top:-1px;border-width:.4rem .4rem 0;border-top-color:#000}.bs-tooltip-auto[data-popper-placement^=right],.bs-tooltip-end{padding:0 .4rem}.bs-tooltip-auto[data-popper-placement^=right] .tooltip-arrow,.bs-tooltip-end .tooltip-arrow{left:0;width:.4rem;height:.8rem}.bs-tooltip-auto[data-popper-placement^=right] .tooltip-arrow::before,.bs-tooltip-end .tooltip-arrow::before{right:-1px;border-width:.4rem .4rem .4rem 0;border-right-color:#000}.bs-tooltip-auto[data-popper-placement^=bottom],.bs-tooltip-bottom{padding:.4rem 0}.bs-tooltip-auto[data-popper-placement^=bottom] .tooltip-arrow,.bs-tooltip-bottom .tooltip-arrow{top:0}.bs-tooltip-auto[data-popper-placement^=bottom] .tooltip-arrow::before,.bs-tooltip-bottom .tooltip-arrow::before{bottom:-1px;border-width:0 .4rem .4rem;border-bottom-color:#000}.bs-tooltip-auto[data-popper-placement^=left],.bs-tooltip-start{padding:0 .4rem}.bs-tooltip-auto[data-popper-placement^=left] .tooltip-arrow,.bs-tooltip-start .tooltip-arrow{right:0;width:.4rem;height:.8rem}.bs-tooltip-auto[data-popper-placement^=left] .tooltip-arrow::before,.bs-tooltip-start .tooltip-arrow::before{left:-1px;border-width:.4rem 0 .4rem .4rem;border-left-color:#000}.tooltip-inner{max-width:200px;padding:.25rem .5rem;color:#fff;text-align:center;background-color:#000;border-radius:.25rem}.popover{position:absolute;top:0;left:0;z-index:1070;display:block;max-width:276px;font-family:var(--bs-font-sans-serif);font-style:normal;font-weight:400;line-height:1.5;text-align:left;text-align:start;text-decoration:none;text-shadow:none;text-transform:none;letter-spacing:normal;word-break:normal;word-spacing:normal;white-space:normal;line-break:auto;font-size:.875rem;word-wrap:break-word;background-color:#fff;background-clip:padding-box;border:1px solid rgba(0,0,0,.2);border-radius:.3rem}.popover .popover-arrow{position:absolute;display:block;width:1rem;height:.5rem}.popover .popover-arrow::after,.popover .popover-arrow::before{position:absolute;display:block;content:"";border-color:transparent;border-style:solid}.bs-popover-auto[data-popper-placement^=top]>.popover-arrow,.bs-popover-top>.popover-arrow{bottom:calc(-.5rem - 1px)}.bs-popover-auto[data-popper-placement^=top]>.popover-arrow::before,.bs-popover-top>.popover-arrow::before{bottom:0;border-width:.5rem .5rem 0;border-top-color:rgba(0,0,0,.25)}.bs-popover-auto[data-popper-placement^=top]>.popover-arrow::after,.bs-popover-top>.popover-arrow::after{bottom:1px;border-width:.5rem .5rem 0;border-top-color:#fff}.bs-popover-auto[data-popper-placement^=right]>.popover-arrow,.bs-popover-end>.popover-arrow{left:calc(-.5rem - 1px);width:.5rem;height:1rem}.bs-popover-auto[data-popper-placement^=right]>.popover-arrow::before,.bs-popover-end>.popover-arrow::before{left:0;border-width:.5rem .5rem .5rem 0;border-right-color:rgba(0,0,0,.25)}.bs-popover-auto[data-popper-placement^=right]>.popover-arrow::after,.bs-popover-end>.popover-arrow::after{left:1px;border-width:.5rem .5rem .5rem 0;border-right-color:#fff}.bs-popover-auto[data-popper-placement^=bottom]>.popover-arrow,.bs-popover-bottom>.popover-arrow{top:calc(-.5rem - 1px)}.bs-popover-auto[data-popper-placement^=bottom]>.popover-arrow::before,.bs-popover-bottom>.popover-arrow::before{top:0;border-width:0 .5rem .5rem .5rem;border-bottom-color:rgba(0,0,0,.25)}.bs-popover-auto[data-popper-placement^=bottom]>.popover-arrow::after,.bs-popover-bottom>.popover-arrow::after{top:1px;border-width:0 .5rem .5rem .5rem;border-bottom-color:#fff}.bs-popover-auto[data-popper-placement^=bottom] .popover-header::before,.bs-popover-bottom .popover-header::before{position:absolute;top:0;left:50%;display:block;width:1rem;margin-left:-.5rem;content:"";border-bottom:1px solid #f0f0f0}.bs-popover-auto[data-popper-placement^=left]>.popover-arrow,.bs-popover-start>.popover-arrow{right:calc(-.5rem - 1px);width:.5rem;height:1rem}.bs-popover-auto[data-popper-placement^=left]>.popover-arrow::before,.bs-popover-start>.popover-arrow::before{right:0;border-width:.5rem 0 .5rem .5rem;border-left-color:rgba(0,0,0,.25)}.bs-popover-auto[data-popper-placement^=left]>.popover-arrow::after,.bs-popover-start>.popover-arrow::after{right:1px;border-width:.5rem 0 .5rem .5rem;border-left-color:#fff}.popover-header{padding:.5rem 1rem;margin-bottom:0;font-size:1rem;background-color:#f0f0f0;border-bottom:1px solid rgba(0,0,0,.2);border-top-left-radius:calc(.3rem - 1px);border-top-right-radius:calc(.3rem - 1px)}.popover-header:empty{display:none}.popover-body{padding:1rem 1rem;color:#212529}.carousel{position:relative}.carousel.pointer-event{touch-action:pan-y}.carousel-inner{position:relative;width:100%;overflow:hidden}.carousel-inner::after{display:block;clear:both;content:""}.carousel-item{position:relative;display:none;float:left;width:100%;margin-right:-100%;-webkit-backface-visibility:hidden;backface-visibility:hidden;transition:transform .6s ease-in-out}@media (prefers-reduced-motion:reduce){.carousel-item{transition:none}}.carousel-item-next,.carousel-item-prev,.carousel-item.active{display:block}.active.carousel-item-end,.carousel-item-next:not(.carousel-item-start){transform:translateX(100%)}.active.carousel-item-start,.carousel-item-prev:not(.carousel-item-end){transform:translateX(-100%)}.carousel-fade .carousel-item{opacity:0;transition-property:opacity;transform:none}.carousel-fade .carousel-item-next.carousel-item-start,.carousel-fade .carousel-item-prev.carousel-item-end,.carousel-fade .carousel-item.active{z-index:1;opacity:1}.carousel-fade .active.carousel-item-end,.carousel-fade .active.carousel-item-start{z-index:0;opacity:0;transition:opacity 0s .6s}@media (prefers-reduced-motion:reduce){.carousel-fade .active.carousel-item-end,.carousel-fade .active.carousel-item-start{transition:none}}.carousel-control-next,.carousel-control-prev{position:absolute;top:0;bottom:0;z-index:1;display:flex;align-items:center;justify-content:center;width:15%;padding:0;color:#fff;text-align:center;background:0 0;border:0;opacity:.5;transition:opacity .15s ease}@media (prefers-reduced-motion:reduce){.carousel-control-next,.carousel-control-prev{transition:none}}.carousel-control-next:focus,.carousel-control-next:hover,.carousel-control-prev:focus,.carousel-control-prev:hover{color:#fff;text-decoration:none;outline:0;opacity:.9}.carousel-control-prev{left:0}.carousel-control-next{right:0}.carousel-control-next-icon,.carousel-control-prev-icon{display:inline-block;width:2rem;height:2rem;background-repeat:no-repeat;background-position:50%;background-size:100% 100%}.carousel-control-prev-icon{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M11.354 1.646a.5.5 0 0 1 0 .708L5.707 8l5.647 5.646a.5.5 0 0 1-.708.708l-6-6a.5.5 0 0 1 0-.708l6-6a.5.5 0 0 1 .708 0z'/%3e%3c/svg%3e")}.carousel-control-next-icon{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e")}.carousel-indicators{position:absolute;right:0;bottom:0;left:0;z-index:2;display:flex;justify-content:center;padding:0;margin-right:15%;margin-bottom:1rem;margin-left:15%;list-style:none}.carousel-indicators [data-bs-target]{box-sizing:content-box;flex:0 1 auto;width:30px;height:3px;padding:0;margin-right:3px;margin-left:3px;text-indent:-999px;cursor:pointer;background-color:#fff;background-clip:padding-box;border:0;border-top:10px solid transparent;border-bottom:10px solid transparent;opacity:.5;transition:opacity .6s ease}@media (prefers-reduced-motion:reduce){.carousel-indicators [data-bs-target]{transition:none}}.carousel-indicators .active{opacity:1}.carousel-caption{position:absolute;right:15%;bottom:1.25rem;left:15%;padding-top:1.25rem;padding-bottom:1.25rem;color:#fff;text-align:center}.carousel-dark .carousel-control-next-icon,.carousel-dark .carousel-control-prev-icon{filter:invert(1) grayscale(100)}.carousel-dark .carousel-indicators [data-bs-target]{background-color:#000}.carousel-dark .carousel-caption{color:#000}@-webkit-keyframes spinner-border{to{transform:rotate(360deg)}}@keyframes spinner-border{to{transform:rotate(360deg)}}.spinner-border{display:inline-block;width:2rem;height:2rem;vertical-align:-.125em;border:.25em solid currentColor;border-right-color:transparent;border-radius:50%;-webkit-animation:.75s linear infinite spinner-border;animation:.75s linear infinite spinner-border}.spinner-border-sm{width:1rem;height:1rem;border-width:.2em}@-webkit-keyframes spinner-grow{0%{transform:scale(0)}50%{opacity:1;transform:none}}@keyframes spinner-grow{0%{transform:scale(0)}50%{opacity:1;transform:none}}.spinner-grow{display:inline-block;width:2rem;height:2rem;vertical-align:-.125em;background-color:currentColor;border-radius:50%;opacity:0;-webkit-animation:.75s linear infinite spinner-grow;animation:.75s linear infinite spinner-grow}.spinner-grow-sm{width:1rem;height:1rem}@media (prefers-reduced-motion:reduce){.spinner-border,.spinner-grow{-webkit-animation-duration:1.5s;animation-duration:1.5s}}.offcanvas{position:fixed;bottom:0;z-index:1045;display:flex;flex-direction:column;max-width:100%;visibility:hidden;background-color:#fff;background-clip:padding-box;outline:0;transition:transform .3s ease-in-out}@media (prefers-reduced-motion:reduce){.offcanvas{transition:none}}.offcanvas-backdrop{position:fixed;top:0;left:0;z-index:1040;width:100vw;height:100vh;background-color:#000}.offcanvas-backdrop.fade{opacity:0}.offcanvas-backdrop.show{opacity:.5}.offcanvas-header{display:flex;align-items:center;justify-content:space-between;padding:1rem 1rem}.offcanvas-header .btn-close{padding:.5rem .5rem;margin-top:-.5rem;margin-right:-.5rem;margin-bottom:-.5rem}.offcanvas-title{margin-bottom:0;line-height:1.5}.offcanvas-body{flex-grow:1;padding:1rem 1rem;overflow-y:auto}.offcanvas-start{top:0;left:0;width:400px;border-right:1px solid rgba(0,0,0,.2);transform:translateX(-100%)}.offcanvas-end{top:0;right:0;width:400px;border-left:1px solid rgba(0,0,0,.2);transform:translateX(100%)}.offcanvas-top{top:0;right:0;left:0;height:30vh;max-height:100%;border-bottom:1px solid rgba(0,0,0,.2);transform:translateY(-100%)}.offcanvas-bottom{right:0;left:0;height:30vh;max-height:100%;border-top:1px solid rgba(0,0,0,.2);transform:translateY(100%)}.offcanvas.show{transform:none}.placeholder{display:inline-block;min-height:1em;vertical-align:middle;cursor:wait;background-color:currentColor;opacity:.5}.placeholder.btn::before{display:inline-block;content:""}.placeholder-xs{min-height:.6em}.placeholder-sm{min-height:.8em}.placeholder-lg{min-height:1.2em}.placeholder-glow .placeholder{-webkit-animation:placeholder-glow 2s ease-in-out infinite;animation:placeholder-glow 2s ease-in-out infinite}@-webkit-keyframes placeholder-glow{50%{opacity:.2}}@keyframes placeholder-glow{50%{opacity:.2}}.placeholder-wave{-webkit-mask-image:linear-gradient(130deg,#000 55%,rgba(0,0,0,0.8) 75%,#000 95%);mask-image:linear-gradient(130deg,#000 55%,rgba(0,0,0,0.8) 75%,#000 95%);-webkit-mask-size:200% 100%;mask-size:200% 100%;-webkit-animation:placeholder-wave 2s linear infinite;animation:placeholder-wave 2s linear infinite}@-webkit-keyframes placeholder-wave{100%{-webkit-mask-position:-200% 0%;mask-position:-200% 0%}}@keyframes placeholder-wave{100%{-webkit-mask-position:-200% 0%;mask-position:-200% 0%}}.clearfix::after{display:block;clear:both;content:""}.link-primary{color:#0d6efd}.link-primary:focus,.link-primary:hover{color:#0a58ca}.link-secondary{color:#6c757d}.link-secondary:focus,.link-secondary:hover{color:#565e64}.link-success{color:#198754}.link-success:focus,.link-success:hover{color:#146c43}.link-info{color:#0dcaf0}.link-info:focus,.link-info:hover{color:#3dd5f3}.link-warning{color:#ffc107}.link-warning:focus,.link-warning:hover{color:#ffcd39}.link-danger{color:#dc3545}.link-danger:focus,.link-danger:hover{color:#b02a37}.link-light{color:#f8f9fa}.link-light:focus,.link-light:hover{color:#f9fafb}.link-dark{color:#212529}.link-dark:focus,.link-dark:hover{color:#1a1e21}.ratio{position:relative;width:100%}.ratio::before{display:block;padding-top:var(--bs-aspect-ratio);content:""}.ratio>*{position:absolute;top:0;left:0;width:100%;height:100%}.ratio-1x1{--bs-aspect-ratio:100%}.ratio-4x3{--bs-aspect-ratio:calc(3 / 4 * 100%)}.ratio-16x9{--bs-aspect-ratio:calc(9 / 16 * 100%)}.ratio-21x9{--bs-aspect-ratio:calc(9 / 21 * 100%)}.fixed-top{position:fixed;top:0;right:0;left:0;z-index:1030}.fixed-bottom{position:fixed;right:0;bottom:0;left:0;z-index:1030}.sticky-top{position:-webkit-sticky;position:sticky;top:0;z-index:1020}@media (min-width:576px){.sticky-sm-top{position:-webkit-sticky;position:sticky;top:0;z-index:1020}}@media (min-width:768px){.sticky-md-top{position:-webkit-sticky;position:sticky;top:0;z-index:1020}}@media (min-width:992px){.sticky-lg-top{position:-webkit-sticky;position:sticky;top:0;z-index:1020}}@media (min-width:1200px){.sticky-xl-top{position:-webkit-sticky;position:sticky;top:0;z-index:1020}}@media (min-width:1400px){.sticky-xxl-top{position:-webkit-sticky;position:sticky;top:0;z-index:1020}}.hstack{display:flex;flex-direction:row;align-items:center;align-self:stretch}.vstack{display:flex;flex:1 1 auto;flex-direction:column;align-self:stretch}.visually-hidden,.visually-hidden-focusable:not(:focus):not(:focus-within){position:absolute!important;width:1px!important;height:1px!important;padding:0!important;margin:-1px!important;overflow:hidden!important;clip:rect(0,0,0,0)!important;white-space:nowrap!important;border:0!important}.stretched-link::after{position:absolute;top:0;right:0;bottom:0;left:0;z-index:1;content:""}.text-truncate{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.vr{display:inline-block;align-self:stretch;width:1px;min-height:1em;background-color:currentColor;opacity:.25}.align-baseline{vertical-align:baseline!important}.align-top{vertical-align:top!important}.align-middle{vertical-align:middle!important}.align-bottom{vertical-align:bottom!important}.align-text-bottom{vertical-align:text-bottom!important}.align-text-top{vertical-align:text-top!important}.float-start{float:left!important}.float-end{float:right!important}.float-none{float:none!important}.opacity-0{opacity:0!important}.opacity-25{opacity:.25!important}.opacity-50{opacity:.5!important}.opacity-75{opacity:.75!important}.opacity-100{opacity:1!important}.overflow-auto{overflow:auto!important}.overflow-hidden{overflow:hidden!important}.overflow-visible{overflow:visible!important}.overflow-scroll{overflow:scroll!important}.d-inline{display:inline!important}.d-inline-block{display:inline-block!important}.d-block{display:block!important}.d-grid{display:grid!important}.d-table{display:table!important}.d-table-row{display:table-row!important}.d-table-cell{display:table-cell!important}.d-flex{display:flex!important}.d-inline-flex{display:inline-flex!important}.d-none{display:none!important}.shadow{box-shadow:0 .5rem 1rem rgba(0,0,0,.15)!important}.shadow-sm{box-shadow:0 .125rem .25rem rgba(0,0,0,.075)!important}.shadow-lg{box-shadow:0 1rem 3rem rgba(0,0,0,.175)!important}.shadow-none{box-shadow:none!important}.position-static{position:static!important}.position-relative{position:relative!important}.position-absolute{position:absolute!important}.position-fixed{position:fixed!important}.position-sticky{position:-webkit-sticky!important;position:sticky!important}.top-0{top:0!important}.top-50{top:50%!important}.top-100{top:100%!important}.bottom-0{bottom:0!important}.bottom-50{bottom:50%!important}.bottom-100{bottom:100%!important}.start-0{left:0!important}.start-50{left:50%!important}.start-100{left:100%!important}.end-0{right:0!important}.end-50{right:50%!important}.end-100{right:100%!important}.translate-middle{transform:translate(-50%,-50%)!important}.translate-middle-x{transform:translateX(-50%)!important}.translate-middle-y{transform:translateY(-50%)!important}.border{border:1px solid #dee2e6!important}.border-0{border:0!important}.border-top{border-top:1px solid #dee2e6!important}.border-top-0{border-top:0!important}.border-end{border-right:1px solid #dee2e6!important}.border-end-0{border-right:0!important}.border-bottom{border-bottom:1px solid #dee2e6!important}.border-bottom-0{border-bottom:0!important}.border-start{border-left:1px solid #dee2e6!important}.border-start-0{border-left:0!important}.border-primary{border-color:#0d6efd!important}.border-secondary{border-color:#6c757d!important}.border-success{border-color:#198754!important}.border-info{border-color:#0dcaf0!important}.border-warning{border-color:#ffc107!important}.border-danger{border-color:#dc3545!important}.border-light{border-color:#f8f9fa!important}.border-dark{border-color:#212529!important}.border-white{border-color:#fff!important}.border-1{border-width:1px!important}.border-2{border-width:2px!important}.border-3{border-width:3px!important}.border-4{border-width:4px!important}.border-5{border-width:5px!important}.w-25{width:25%!important}.w-50{width:50%!important}.w-75{width:75%!important}.w-100{width:100%!important}.w-auto{width:auto!important}.mw-100{max-width:100%!important}.vw-100{width:100vw!important}.min-vw-100{min-width:100vw!important}.h-25{height:25%!important}.h-50{height:50%!important}.h-75{height:75%!important}.h-100{height:100%!important}.h-auto{height:auto!important}.mh-100{max-height:100%!important}.vh-100{height:100vh!important}.min-vh-100{min-height:100vh!important}.flex-fill{flex:1 1 auto!important}.flex-row{flex-direction:row!important}.flex-column{flex-direction:column!important}.flex-row-reverse{flex-direction:row-reverse!important}.flex-column-reverse{flex-direction:column-reverse!important}.flex-grow-0{flex-grow:0!important}.flex-grow-1{flex-grow:1!important}.flex-shrink-0{flex-shrink:0!important}.flex-shrink-1{flex-shrink:1!important}.flex-wrap{flex-wrap:wrap!important}.flex-nowrap{flex-wrap:nowrap!important}.flex-wrap-reverse{flex-wrap:wrap-reverse!important}.gap-0{gap:0!important}.gap-1{gap:.25rem!important}.gap-2{gap:.5rem!important}.gap-3{gap:1rem!important}.gap-4{gap:1.5rem!important}.gap-5{gap:3rem!important}.justify-content-start{justify-content:flex-start!important}.justify-content-end{justify-content:flex-end!important}.justify-content-center{justify-content:center!important}.justify-content-between{justify-content:space-between!important}.justify-content-around{justify-content:space-around!important}.justify-content-evenly{justify-content:space-evenly!important}.align-items-start{align-items:flex-start!important}.align-items-end{align-items:flex-end!important}.align-items-center{align-items:center!important}.align-items-baseline{align-items:baseline!important}.align-items-stretch{align-items:stretch!important}.align-content-start{align-content:flex-start!important}.align-content-end{align-content:flex-end!important}.align-content-center{align-content:center!important}.align-content-between{align-content:space-between!important}.align-content-around{align-content:space-around!important}.align-content-stretch{align-content:stretch!important}.align-self-auto{align-self:auto!important}.align-self-start{align-self:flex-start!important}.align-self-end{align-self:flex-end!important}.align-self-center{align-self:center!important}.align-self-baseline{align-self:baseline!important}.align-self-stretch{align-self:stretch!important}.order-first{order:-1!important}.order-0{order:0!important}.order-1{order:1!important}.order-2{order:2!important}.order-3{order:3!important}.order-4{order:4!important}.order-5{order:5!important}.order-last{order:6!important}.m-0{margin:0!important}.m-1{margin:.25rem!important}.m-2{margin:.5rem!important}.m-3{margin:1rem!important}.m-4{margin:1.5rem!important}.m-5{margin:3rem!important}.m-auto{margin:auto!important}.mx-0{margin-right:0!important;margin-left:0!important}.mx-1{margin-right:.25rem!important;margin-left:.25rem!important}.mx-2{margin-right:.5rem!important;margin-left:.5rem!important}.mx-3{margin-right:1rem!important;margin-left:1rem!important}.mx-4{margin-right:1.5rem!important;margin-left:1.5rem!important}.mx-5{margin-right:3rem!important;margin-left:3rem!important}.mx-auto{margin-right:auto!important;margin-left:auto!important}.my-0{margin-top:0!important;margin-bottom:0!important}.my-1{margin-top:.25rem!important;margin-bottom:.25rem!important}.my-2{margin-top:.5rem!important;margin-bottom:.5rem!important}.my-3{margin-top:1rem!important;margin-bottom:1rem!important}.my-4{margin-top:1.5rem!important;margin-bottom:1.5rem!important}.my-5{margin-top:3rem!important;margin-bottom:3rem!important}.my-auto{margin-top:auto!important;margin-bottom:auto!important}.mt-0{margin-top:0!important}.mt-1{margin-top:.25rem!important}.mt-2{margin-top:.5rem!important}.mt-3{margin-top:1rem!important}.mt-4{margin-top:1.5rem!important}.mt-5{margin-top:3rem!important}.mt-auto{margin-top:auto!important}.me-0{margin-right:0!important}.me-1{margin-right:.25rem!important}.me-2{margin-right:.5rem!important}.me-3{margin-right:1rem!important}.me-4{margin-right:1.5rem!important}.me-5{margin-right:3rem!important}.me-auto{margin-right:auto!important}.mb-0{margin-bottom:0!important}.mb-1{margin-bottom:.25rem!important}.mb-2{margin-bottom:.5rem!important}.mb-3{margin-bottom:1rem!important}.mb-4{margin-bottom:1.5rem!important}.mb-5{margin-bottom:3rem!important}.mb-auto{margin-bottom:auto!important}.ms-0{margin-left:0!important}.ms-1{margin-left:.25rem!important}.ms-2{margin-left:.5rem!important}.ms-3{margin-left:1rem!important}.ms-4{margin-left:1.5rem!important}.ms-5{margin-left:3rem!important}.ms-auto{margin-left:auto!important}.p-0{padding:0!important}.p-1{padding:.25rem!important}.p-2{padding:.5rem!important}.p-3{padding:1rem!important}.p-4{padding:1.5rem!important}.p-5{padding:3rem!important}.px-0{padding-right:0!important;padding-left:0!important}.px-1{padding-right:.25rem!important;padding-left:.25rem!important}.px-2{padding-right:.5rem!important;padding-left:.5rem!important}.px-3{padding-right:1rem!important;padding-left:1rem!important}.px-4{padding-right:1.5rem!important;padding-left:1.5rem!important}.px-5{padding-right:3rem!important;padding-left:3rem!important}.py-0{padding-top:0!important;padding-bottom:0!important}.py-1{padding-top:.25rem!important;padding-bottom:.25rem!important}.py-2{padding-top:.5rem!important;padding-bottom:.5rem!important}.py-3{padding-top:1rem!important;padding-bottom:1rem!important}.py-4{padding-top:1.5rem!important;padding-bottom:1.5rem!important}.py-5{padding-top:3rem!important;padding-bottom:3rem!important}.pt-0{padding-top:0!important}.pt-1{padding-top:.25rem!important}.pt-2{padding-top:.5rem!important}.pt-3{padding-top:1rem!important}.pt-4{padding-top:1.5rem!important}.pt-5{padding-top:3rem!important}.pe-0{padding-right:0!important}.pe-1{padding-right:.25rem!important}.pe-2{padding-right:.5rem!important}.pe-3{padding-right:1rem!important}.pe-4{padding-right:1.5rem!important}.pe-5{padding-right:3rem!important}.pb-0{padding-bottom:0!important}.pb-1{padding-bottom:.25rem!important}.pb-2{padding-bottom:.5rem!important}.pb-3{padding-bottom:1rem!important}.pb-4{padding-bottom:1.5rem!important}.pb-5{padding-bottom:3rem!important}.ps-0{padding-left:0!important}.ps-1{padding-left:.25rem!important}.ps-2{padding-left:.5rem!important}.ps-3{padding-left:1rem!important}.ps-4{padding-left:1.5rem!important}.ps-5{padding-left:3rem!important}.font-monospace{font-family:var(--bs-font-monospace)!important}.fs-1{font-size:calc(1.375rem + 1.5vw)!important}.fs-2{font-size:calc(1.325rem + .9vw)!important}.fs-3{font-size:calc(1.3rem + .6vw)!important}.fs-4{font-size:calc(1.275rem + .3vw)!important}.fs-5{font-size:1.25rem!important}.fs-6{font-size:1rem!important}.fst-italic{font-style:italic!important}.fst-normal{font-style:normal!important}.fw-light{font-weight:300!important}.fw-lighter{font-weight:lighter!important}.fw-normal{font-weight:400!important}.fw-bold{font-weight:700!important}.fw-bolder{font-weight:bolder!important}.lh-1{line-height:1!important}.lh-sm{line-height:1.25!important}.lh-base{line-height:1.5!important}.lh-lg{line-height:2!important}.text-start{text-align:left!important}.text-end{text-align:right!important}.text-center{text-align:center!important}.text-decoration-none{text-decoration:none!important}.text-decoration-underline{text-decoration:underline!important}.text-decoration-line-through{text-decoration:line-through!important}.text-lowercase{text-transform:lowercase!important}.text-uppercase{text-transform:uppercase!important}.text-capitalize{text-transform:capitalize!important}.text-wrap{white-space:normal!important}.text-nowrap{white-space:nowrap!important}.text-break{word-wrap:break-word!important;word-break:break-word!important}.text-primary{--bs-text-opacity:1;color:rgba(var(--bs-primary-rgb),var(--bs-text-opacity))!important}.text-secondary{--bs-text-opacity:1;color:rgba(var(--bs-secondary-rgb),var(--bs-text-opacity))!important}.text-success{--bs-text-opacity:1;color:rgba(var(--bs-success-rgb),var(--bs-text-opacity))!important}.text-info{--bs-text-opacity:1;color:rgba(var(--bs-info-rgb),var(--bs-text-opacity))!important}.text-warning{--bs-text-opacity:1;color:rgba(var(--bs-warning-rgb),var(--bs-text-opacity))!important}.text-danger{--bs-text-opacity:1;color:rgba(var(--bs-danger-rgb),var(--bs-text-opacity))!important}.text-light{--bs-text-opacity:1;color:rgba(var(--bs-light-rgb),var(--bs-text-opacity))!important}.text-dark{--bs-text-opacity:1;color:rgba(var(--bs-dark-rgb),var(--bs-text-opacity))!important}.text-black{--bs-text-opacity:1;color:rgba(var(--bs-black-rgb),var(--bs-text-opacity))!important}.text-white{--bs-text-opacity:1;color:rgba(var(--bs-white-rgb),var(--bs-text-opacity))!important}.text-body{--bs-text-opacity:1;color:rgba(var(--bs-body-rgb),var(--bs-text-opacity))!important}.text-muted{--bs-text-opacity:1;color:#6c757d!important}.text-black-50{--bs-text-opacity:1;color:rgba(0,0,0,.5)!important}.text-white-50{--bs-text-opacity:1;color:rgba(255,255,255,.5)!important}.text-reset{--bs-text-opacity:1;color:inherit!important}.text-opacity-25{--bs-text-opacity:0.25}.text-opacity-50{--bs-text-opacity:0.5}.text-opacity-75{--bs-text-opacity:0.75}.text-opacity-100{--bs-text-opacity:1}.bg-primary{--bs-bg-opacity:1;background-color:rgba(var(--bs-primary-rgb),var(--bs-bg-opacity))!important}.bg-secondary{--bs-bg-opacity:1;background-color:rgba(var(--bs-secondary-rgb),var(--bs-bg-opacity))!important}.bg-success{--bs-bg-opacity:1;background-color:rgba(var(--bs-success-rgb),var(--bs-bg-opacity))!important}.bg-info{--bs-bg-opacity:1;background-color:rgba(var(--bs-info-rgb),var(--bs-bg-opacity))!important}.bg-warning{--bs-bg-opacity:1;background-color:rgba(var(--bs-warning-rgb),var(--bs-bg-opacity))!important}.bg-danger{--bs-bg-opacity:1;background-color:rgba(var(--bs-danger-rgb),var(--bs-bg-opacity))!important}.bg-light{--bs-bg-opacity:1;background-color:rgba(var(--bs-light-rgb),var(--bs-bg-opacity))!important}.bg-dark{--bs-bg-opacity:1;background-color:rgba(var(--bs-dark-rgb),var(--bs-bg-opacity))!important}.bg-black{--bs-bg-opacity:1;background-color:rgba(var(--bs-black-rgb),var(--bs-bg-opacity))!important}.bg-white{--bs-bg-opacity:1;background-color:rgba(var(--bs-white-rgb),var(--bs-bg-opacity))!important}.bg-body{--bs-bg-opacity:1;background-color:rgba(var(--bs-body-rgb),var(--bs-bg-opacity))!important}.bg-transparent{--bs-bg-opacity:1;background-color:transparent!important}.bg-opacity-10{--bs-bg-opacity:0.1}.bg-opacity-25{--bs-bg-opacity:0.25}.bg-opacity-50{--bs-bg-opacity:0.5}.bg-opacity-75{--bs-bg-opacity:0.75}.bg-opacity-100{--bs-bg-opacity:1}.bg-gradient{background-image:var(--bs-gradient)!important}.user-select-all{-webkit-user-select:all!important;-moz-user-select:all!important;user-select:all!important}.user-select-auto{-webkit-user-select:auto!important;-moz-user-select:auto!important;user-select:auto!important}.user-select-none{-webkit-user-select:none!important;-moz-user-select:none!important;user-select:none!important}.pe-none{pointer-events:none!important}.pe-auto{pointer-events:auto!important}.rounded{border-radius:.25rem!important}.rounded-0{border-radius:0!important}.rounded-1{border-radius:.2rem!important}.rounded-2{border-radius:.25rem!important}.rounded-3{border-radius:.3rem!important}.rounded-circle{border-radius:50%!important}.rounded-pill{border-radius:50rem!important}.rounded-top{border-top-left-radius:.25rem!important;border-top-right-radius:.25rem!important}.rounded-end{border-top-right-radius:.25rem!important;border-bottom-right-radius:.25rem!important}.rounded-bottom{border-bottom-right-radius:.25rem!important;border-bottom-left-radius:.25rem!important}.rounded-start{border-bottom-left-radius:.25rem!important;border-top-left-radius:.25rem!important}.visible{visibility:visible!important}.invisible{visibility:hidden!important}@media (min-width:576px){.float-sm-start{float:left!important}.float-sm-end{float:right!important}.float-sm-none{float:none!important}.d-sm-inline{display:inline!important}.d-sm-inline-block{display:inline-block!important}.d-sm-block{display:block!important}.d-sm-grid{display:grid!important}.d-sm-table{display:table!important}.d-sm-table-row{display:table-row!important}.d-sm-table-cell{display:table-cell!important}.d-sm-flex{display:flex!important}.d-sm-inline-flex{display:inline-flex!important}.d-sm-none{display:none!important}.flex-sm-fill{flex:1 1 auto!important}.flex-sm-row{flex-direction:row!important}.flex-sm-column{flex-direction:column!important}.flex-sm-row-reverse{flex-direction:row-reverse!important}.flex-sm-column-reverse{flex-direction:column-reverse!important}.flex-sm-grow-0{flex-grow:0!important}.flex-sm-grow-1{flex-grow:1!important}.flex-sm-shrink-0{flex-shrink:0!important}.flex-sm-shrink-1{flex-shrink:1!important}.flex-sm-wrap{flex-wrap:wrap!important}.flex-sm-nowrap{flex-wrap:nowrap!important}.flex-sm-wrap-reverse{flex-wrap:wrap-reverse!important}.gap-sm-0{gap:0!important}.gap-sm-1{gap:.25rem!important}.gap-sm-2{gap:.5rem!important}.gap-sm-3{gap:1rem!important}.gap-sm-4{gap:1.5rem!important}.gap-sm-5{gap:3rem!important}.justify-content-sm-start{justify-content:flex-start!important}.justify-content-sm-end{justify-content:flex-end!important}.justify-content-sm-center{justify-content:center!important}.justify-content-sm-between{justify-content:space-between!important}.justify-content-sm-around{justify-content:space-around!important}.justify-content-sm-evenly{justify-content:space-evenly!important}.align-items-sm-start{align-items:flex-start!important}.align-items-sm-end{align-items:flex-end!important}.align-items-sm-center{align-items:center!important}.align-items-sm-baseline{align-items:baseline!important}.align-items-sm-stretch{align-items:stretch!important}.align-content-sm-start{align-content:flex-start!important}.align-content-sm-end{align-content:flex-end!important}.align-content-sm-center{align-content:center!important}.align-content-sm-between{align-content:space-between!important}.align-content-sm-around{align-content:space-around!important}.align-content-sm-stretch{align-content:stretch!important}.align-self-sm-auto{align-self:auto!important}.align-self-sm-start{align-self:flex-start!important}.align-self-sm-end{align-self:flex-end!important}.align-self-sm-center{align-self:center!important}.align-self-sm-baseline{align-self:baseline!important}.align-self-sm-stretch{align-self:stretch!important}.order-sm-first{order:-1!important}.order-sm-0{order:0!important}.order-sm-1{order:1!important}.order-sm-2{order:2!important}.order-sm-3{order:3!important}.order-sm-4{order:4!important}.order-sm-5{order:5!important}.order-sm-last{order:6!important}.m-sm-0{margin:0!important}.m-sm-1{margin:.25rem!important}.m-sm-2{margin:.5rem!important}.m-sm-3{margin:1rem!important}.m-sm-4{margin:1.5rem!important}.m-sm-5{margin:3rem!important}.m-sm-auto{margin:auto!important}.mx-sm-0{margin-right:0!important;margin-left:0!important}.mx-sm-1{margin-right:.25rem!important;margin-left:.25rem!important}.mx-sm-2{margin-right:.5rem!important;margin-left:.5rem!important}.mx-sm-3{margin-right:1rem!important;margin-left:1rem!important}.mx-sm-4{margin-right:1.5rem!important;margin-left:1.5rem!important}.mx-sm-5{margin-right:3rem!important;margin-left:3rem!important}.mx-sm-auto{margin-right:auto!important;margin-left:auto!important}.my-sm-0{margin-top:0!important;margin-bottom:0!important}.my-sm-1{margin-top:.25rem!important;margin-bottom:.25rem!important}.my-sm-2{margin-top:.5rem!important;margin-bottom:.5rem!important}.my-sm-3{margin-top:1rem!important;margin-bottom:1rem!important}.my-sm-4{margin-top:1.5rem!important;margin-bottom:1.5rem!important}.my-sm-5{margin-top:3rem!important;margin-bottom:3rem!important}.my-sm-auto{margin-top:auto!important;margin-bottom:auto!important}.mt-sm-0{margin-top:0!important}.mt-sm-1{margin-top:.25rem!important}.mt-sm-2{margin-top:.5rem!important}.mt-sm-3{margin-top:1rem!important}.mt-sm-4{margin-top:1.5rem!important}.mt-sm-5{margin-top:3rem!important}.mt-sm-auto{margin-top:auto!important}.me-sm-0{margin-right:0!important}.me-sm-1{margin-right:.25rem!important}.me-sm-2{margin-right:.5rem!important}.me-sm-3{margin-right:1rem!important}.me-sm-4{margin-right:1.5rem!important}.me-sm-5{margin-right:3rem!important}.me-sm-auto{margin-right:auto!important}.mb-sm-0{margin-bottom:0!important}.mb-sm-1{margin-bottom:.25rem!important}.mb-sm-2{margin-bottom:.5rem!important}.mb-sm-3{margin-bottom:1rem!important}.mb-sm-4{margin-bottom:1.5rem!important}.mb-sm-5{margin-bottom:3rem!important}.mb-sm-auto{margin-bottom:auto!important}.ms-sm-0{margin-left:0!important}.ms-sm-1{margin-left:.25rem!important}.ms-sm-2{margin-left:.5rem!important}.ms-sm-3{margin-left:1rem!important}.ms-sm-4{margin-left:1.5rem!important}.ms-sm-5{margin-left:3rem!important}.ms-sm-auto{margin-left:auto!important}.p-sm-0{padding:0!important}.p-sm-1{padding:.25rem!important}.p-sm-2{padding:.5rem!important}.p-sm-3{padding:1rem!important}.p-sm-4{padding:1.5rem!important}.p-sm-5{padding:3rem!important}.px-sm-0{padding-right:0!important;padding-left:0!important}.px-sm-1{padding-right:.25rem!important;padding-left:.25rem!important}.px-sm-2{padding-right:.5rem!important;padding-left:.5rem!important}.px-sm-3{padding-right:1rem!important;padding-left:1rem!important}.px-sm-4{padding-right:1.5rem!important;padding-left:1.5rem!important}.px-sm-5{padding-right:3rem!important;padding-left:3rem!important}.py-sm-0{padding-top:0!important;padding-bottom:0!important}.py-sm-1{padding-top:.25rem!important;padding-bottom:.25rem!important}.py-sm-2{padding-top:.5rem!important;padding-bottom:.5rem!important}.py-sm-3{padding-top:1rem!important;padding-bottom:1rem!important}.py-sm-4{padding-top:1.5rem!important;padding-bottom:1.5rem!important}.py-sm-5{padding-top:3rem!important;padding-bottom:3rem!important}.pt-sm-0{padding-top:0!important}.pt-sm-1{padding-top:.25rem!important}.pt-sm-2{padding-top:.5rem!important}.pt-sm-3{padding-top:1rem!important}.pt-sm-4{padding-top:1.5rem!important}.pt-sm-5{padding-top:3rem!important}.pe-sm-0{padding-right:0!important}.pe-sm-1{padding-right:.25rem!important}.pe-sm-2{padding-right:.5rem!important}.pe-sm-3{padding-right:1rem!important}.pe-sm-4{padding-right:1.5rem!important}.pe-sm-5{padding-right:3rem!important}.pb-sm-0{padding-bottom:0!important}.pb-sm-1{padding-bottom:.25rem!important}.pb-sm-2{padding-bottom:.5rem!important}.pb-sm-3{padding-bottom:1rem!important}.pb-sm-4{padding-bottom:1.5rem!important}.pb-sm-5{padding-bottom:3rem!important}.ps-sm-0{padding-left:0!important}.ps-sm-1{padding-left:.25rem!important}.ps-sm-2{padding-left:.5rem!important}.ps-sm-3{padding-left:1rem!important}.ps-sm-4{padding-left:1.5rem!important}.ps-sm-5{padding-left:3rem!important}.text-sm-start{text-align:left!important}.text-sm-end{text-align:right!important}.text-sm-center{text-align:center!important}}@media (min-width:768px){.float-md-start{float:left!important}.float-md-end{float:right!important}.float-md-none{float:none!important}.d-md-inline{display:inline!important}.d-md-inline-block{display:inline-block!important}.d-md-block{display:block!important}.d-md-grid{display:grid!important}.d-md-table{display:table!important}.d-md-table-row{display:table-row!important}.d-md-table-cell{display:table-cell!important}.d-md-flex{display:flex!important}.d-md-inline-flex{display:inline-flex!important}.d-md-none{display:none!important}.flex-md-fill{flex:1 1 auto!important}.flex-md-row{flex-direction:row!important}.flex-md-column{flex-direction:column!important}.flex-md-row-reverse{flex-direction:row-reverse!important}.flex-md-column-reverse{flex-direction:column-reverse!important}.flex-md-grow-0{flex-grow:0!important}.flex-md-grow-1{flex-grow:1!important}.flex-md-shrink-0{flex-shrink:0!important}.flex-md-shrink-1{flex-shrink:1!important}.flex-md-wrap{flex-wrap:wrap!important}.flex-md-nowrap{flex-wrap:nowrap!important}.flex-md-wrap-reverse{flex-wrap:wrap-reverse!important}.gap-md-0{gap:0!important}.gap-md-1{gap:.25rem!important}.gap-md-2{gap:.5rem!important}.gap-md-3{gap:1rem!important}.gap-md-4{gap:1.5rem!important}.gap-md-5{gap:3rem!important}.justify-content-md-start{justify-content:flex-start!important}.justify-content-md-end{justify-content:flex-end!important}.justify-content-md-center{justify-content:center!important}.justify-content-md-between{justify-content:space-between!important}.justify-content-md-around{justify-content:space-around!important}.justify-content-md-evenly{justify-content:space-evenly!important}.align-items-md-start{align-items:flex-start!important}.align-items-md-end{align-items:flex-end!important}.align-items-md-center{align-items:center!important}.align-items-md-baseline{align-items:baseline!important}.align-items-md-stretch{align-items:stretch!important}.align-content-md-start{align-content:flex-start!important}.align-content-md-end{align-content:flex-end!important}.align-content-md-center{align-content:center!important}.align-content-md-between{align-content:space-between!important}.align-content-md-around{align-content:space-around!important}.align-content-md-stretch{align-content:stretch!important}.align-self-md-auto{align-self:auto!important}.align-self-md-start{align-self:flex-start!important}.align-self-md-end{align-self:flex-end!important}.align-self-md-center{align-self:center!important}.align-self-md-baseline{align-self:baseline!important}.align-self-md-stretch{align-self:stretch!important}.order-md-first{order:-1!important}.order-md-0{order:0!important}.order-md-1{order:1!important}.order-md-2{order:2!important}.order-md-3{order:3!important}.order-md-4{order:4!important}.order-md-5{order:5!important}.order-md-last{order:6!important}.m-md-0{margin:0!important}.m-md-1{margin:.25rem!important}.m-md-2{margin:.5rem!important}.m-md-3{margin:1rem!important}.m-md-4{margin:1.5rem!important}.m-md-5{margin:3rem!important}.m-md-auto{margin:auto!important}.mx-md-0{margin-right:0!important;margin-left:0!important}.mx-md-1{margin-right:.25rem!important;margin-left:.25rem!important}.mx-md-2{margin-right:.5rem!important;margin-left:.5rem!important}.mx-md-3{margin-right:1rem!important;margin-left:1rem!important}.mx-md-4{margin-right:1.5rem!important;margin-left:1.5rem!important}.mx-md-5{margin-right:3rem!important;margin-left:3rem!important}.mx-md-auto{margin-right:auto!important;margin-left:auto!important}.my-md-0{margin-top:0!important;margin-bottom:0!important}.my-md-1{margin-top:.25rem!important;margin-bottom:.25rem!important}.my-md-2{margin-top:.5rem!important;margin-bottom:.5rem!important}.my-md-3{margin-top:1rem!important;margin-bottom:1rem!important}.my-md-4{margin-top:1.5rem!important;margin-bottom:1.5rem!important}.my-md-5{margin-top:3rem!important;margin-bottom:3rem!important}.my-md-auto{margin-top:auto!important;margin-bottom:auto!important}.mt-md-0{margin-top:0!important}.mt-md-1{margin-top:.25rem!important}.mt-md-2{margin-top:.5rem!important}.mt-md-3{margin-top:1rem!important}.mt-md-4{margin-top:1.5rem!important}.mt-md-5{margin-top:3rem!important}.mt-md-auto{margin-top:auto!important}.me-md-0{margin-right:0!important}.me-md-1{margin-right:.25rem!important}.me-md-2{margin-right:.5rem!important}.me-md-3{margin-right:1rem!important}.me-md-4{margin-right:1.5rem!important}.me-md-5{margin-right:3rem!important}.me-md-auto{margin-right:auto!important}.mb-md-0{margin-bottom:0!important}.mb-md-1{margin-bottom:.25rem!important}.mb-md-2{margin-bottom:.5rem!important}.mb-md-3{margin-bottom:1rem!important}.mb-md-4{margin-bottom:1.5rem!important}.mb-md-5{margin-bottom:3rem!important}.mb-md-auto{margin-bottom:auto!important}.ms-md-0{margin-left:0!important}.ms-md-1{margin-left:.25rem!important}.ms-md-2{margin-left:.5rem!important}.ms-md-3{margin-left:1rem!important}.ms-md-4{margin-left:1.5rem!important}.ms-md-5{margin-left:3rem!important}.ms-md-auto{margin-left:auto!important}.p-md-0{padding:0!important}.p-md-1{padding:.25rem!important}.p-md-2{padding:.5rem!important}.p-md-3{padding:1rem!important}.p-md-4{padding:1.5rem!important}.p-md-5{padding:3rem!important}.px-md-0{padding-right:0!important;padding-left:0!important}.px-md-1{padding-right:.25rem!important;padding-left:.25rem!important}.px-md-2{padding-right:.5rem!important;padding-left:.5rem!important}.px-md-3{padding-right:1rem!important;padding-left:1rem!important}.px-md-4{padding-right:1.5rem!important;padding-left:1.5rem!important}.px-md-5{padding-right:3rem!important;padding-left:3rem!important}.py-md-0{padding-top:0!important;padding-bottom:0!important}.py-md-1{padding-top:.25rem!important;padding-bottom:.25rem!important}.py-md-2{padding-top:.5rem!important;padding-bottom:.5rem!important}.py-md-3{padding-top:1rem!important;padding-bottom:1rem!important}.py-md-4{padding-top:1.5rem!important;padding-bottom:1.5rem!important}.py-md-5{padding-top:3rem!important;padding-bottom:3rem!important}.pt-md-0{padding-top:0!important}.pt-md-1{padding-top:.25rem!important}.pt-md-2{padding-top:.5rem!important}.pt-md-3{padding-top:1rem!important}.pt-md-4{padding-top:1.5rem!important}.pt-md-5{padding-top:3rem!important}.pe-md-0{padding-right:0!important}.pe-md-1{padding-right:.25rem!important}.pe-md-2{padding-right:.5rem!important}.pe-md-3{padding-right:1rem!important}.pe-md-4{padding-right:1.5rem!important}.pe-md-5{padding-right:3rem!important}.pb-md-0{padding-bottom:0!important}.pb-md-1{padding-bottom:.25rem!important}.pb-md-2{padding-bottom:.5rem!important}.pb-md-3{padding-bottom:1rem!important}.pb-md-4{padding-bottom:1.5rem!important}.pb-md-5{padding-bottom:3rem!important}.ps-md-0{padding-left:0!important}.ps-md-1{padding-left:.25rem!important}.ps-md-2{padding-left:.5rem!important}.ps-md-3{padding-left:1rem!important}.ps-md-4{padding-left:1.5rem!important}.ps-md-5{padding-left:3rem!important}.text-md-start{text-align:left!important}.text-md-end{text-align:right!important}.text-md-center{text-align:center!important}}@media (min-width:992px){.float-lg-start{float:left!important}.float-lg-end{float:right!important}.float-lg-none{float:none!important}.d-lg-inline{display:inline!important}.d-lg-inline-block{display:inline-block!important}.d-lg-block{display:block!important}.d-lg-grid{display:grid!important}.d-lg-table{display:table!important}.d-lg-table-row{display:table-row!important}.d-lg-table-cell{display:table-cell!important}.d-lg-flex{display:flex!important}.d-lg-inline-flex{display:inline-flex!important}.d-lg-none{display:none!important}.flex-lg-fill{flex:1 1 auto!important}.flex-lg-row{flex-direction:row!important}.flex-lg-column{flex-direction:column!important}.flex-lg-row-reverse{flex-direction:row-reverse!important}.flex-lg-column-reverse{flex-direction:column-reverse!important}.flex-lg-grow-0{flex-grow:0!important}.flex-lg-grow-1{flex-grow:1!important}.flex-lg-shrink-0{flex-shrink:0!important}.flex-lg-shrink-1{flex-shrink:1!important}.flex-lg-wrap{flex-wrap:wrap!important}.flex-lg-nowrap{flex-wrap:nowrap!important}.flex-lg-wrap-reverse{flex-wrap:wrap-reverse!important}.gap-lg-0{gap:0!important}.gap-lg-1{gap:.25rem!important}.gap-lg-2{gap:.5rem!important}.gap-lg-3{gap:1rem!important}.gap-lg-4{gap:1.5rem!important}.gap-lg-5{gap:3rem!important}.justify-content-lg-start{justify-content:flex-start!important}.justify-content-lg-end{justify-content:flex-end!important}.justify-content-lg-center{justify-content:center!important}.justify-content-lg-between{justify-content:space-between!important}.justify-content-lg-around{justify-content:space-around!important}.justify-content-lg-evenly{justify-content:space-evenly!important}.align-items-lg-start{align-items:flex-start!important}.align-items-lg-end{align-items:flex-end!important}.align-items-lg-center{align-items:center!important}.align-items-lg-baseline{align-items:baseline!important}.align-items-lg-stretch{align-items:stretch!important}.align-content-lg-start{align-content:flex-start!important}.align-content-lg-end{align-content:flex-end!important}.align-content-lg-center{align-content:center!important}.align-content-lg-between{align-content:space-between!important}.align-content-lg-around{align-content:space-around!important}.align-content-lg-stretch{align-content:stretch!important}.align-self-lg-auto{align-self:auto!important}.align-self-lg-start{align-self:flex-start!important}.align-self-lg-end{align-self:flex-end!important}.align-self-lg-center{align-self:center!important}.align-self-lg-baseline{align-self:baseline!important}.align-self-lg-stretch{align-self:stretch!important}.order-lg-first{order:-1!important}.order-lg-0{order:0!important}.order-lg-1{order:1!important}.order-lg-2{order:2!important}.order-lg-3{order:3!important}.order-lg-4{order:4!important}.order-lg-5{order:5!important}.order-lg-last{order:6!important}.m-lg-0{margin:0!important}.m-lg-1{margin:.25rem!important}.m-lg-2{margin:.5rem!important}.m-lg-3{margin:1rem!important}.m-lg-4{margin:1.5rem!important}.m-lg-5{margin:3rem!important}.m-lg-auto{margin:auto!important}.mx-lg-0{margin-right:0!important;margin-left:0!important}.mx-lg-1{margin-right:.25rem!important;margin-left:.25rem!important}.mx-lg-2{margin-right:.5rem!important;margin-left:.5rem!important}.mx-lg-3{margin-right:1rem!important;margin-left:1rem!important}.mx-lg-4{margin-right:1.5rem!important;margin-left:1.5rem!important}.mx-lg-5{margin-right:3rem!important;margin-left:3rem!important}.mx-lg-auto{margin-right:auto!important;margin-left:auto!important}.my-lg-0{margin-top:0!important;margin-bottom:0!important}.my-lg-1{margin-top:.25rem!important;margin-bottom:.25rem!important}.my-lg-2{margin-top:.5rem!important;margin-bottom:.5rem!important}.my-lg-3{margin-top:1rem!important;margin-bottom:1rem!important}.my-lg-4{margin-top:1.5rem!important;margin-bottom:1.5rem!important}.my-lg-5{margin-top:3rem!important;margin-bottom:3rem!important}.my-lg-auto{margin-top:auto!important;margin-bottom:auto!important}.mt-lg-0{margin-top:0!important}.mt-lg-1{margin-top:.25rem!important}.mt-lg-2{margin-top:.5rem!important}.mt-lg-3{margin-top:1rem!important}.mt-lg-4{margin-top:1.5rem!important}.mt-lg-5{margin-top:3rem!important}.mt-lg-auto{margin-top:auto!important}.me-lg-0{margin-right:0!important}.me-lg-1{margin-right:.25rem!important}.me-lg-2{margin-right:.5rem!important}.me-lg-3{margin-right:1rem!important}.me-lg-4{margin-right:1.5rem!important}.me-lg-5{margin-right:3rem!important}.me-lg-auto{margin-right:auto!important}.mb-lg-0{margin-bottom:0!important}.mb-lg-1{margin-bottom:.25rem!important}.mb-lg-2{margin-bottom:.5rem!important}.mb-lg-3{margin-bottom:1rem!important}.mb-lg-4{margin-bottom:1.5rem!important}.mb-lg-5{margin-bottom:3rem!important}.mb-lg-auto{margin-bottom:auto!important}.ms-lg-0{margin-left:0!important}.ms-lg-1{margin-left:.25rem!important}.ms-lg-2{margin-left:.5rem!important}.ms-lg-3{margin-left:1rem!important}.ms-lg-4{margin-left:1.5rem!important}.ms-lg-5{margin-left:3rem!important}.ms-lg-auto{margin-left:auto!important}.p-lg-0{padding:0!important}.p-lg-1{padding:.25rem!important}.p-lg-2{padding:.5rem!important}.p-lg-3{padding:1rem!important}.p-lg-4{padding:1.5rem!important}.p-lg-5{padding:3rem!important}.px-lg-0{padding-right:0!important;padding-left:0!important}.px-lg-1{padding-right:.25rem!important;padding-left:.25rem!important}.px-lg-2{padding-right:.5rem!important;padding-left:.5rem!important}.px-lg-3{padding-right:1rem!important;padding-left:1rem!important}.px-lg-4{padding-right:1.5rem!important;padding-left:1.5rem!important}.px-lg-5{padding-right:3rem!important;padding-left:3rem!important}.py-lg-0{padding-top:0!important;padding-bottom:0!important}.py-lg-1{padding-top:.25rem!important;padding-bottom:.25rem!important}.py-lg-2{padding-top:.5rem!important;padding-bottom:.5rem!important}.py-lg-3{padding-top:1rem!important;padding-bottom:1rem!important}.py-lg-4{padding-top:1.5rem!important;padding-bottom:1.5rem!important}.py-lg-5{padding-top:3rem!important;padding-bottom:3rem!important}.pt-lg-0{padding-top:0!important}.pt-lg-1{padding-top:.25rem!important}.pt-lg-2{padding-top:.5rem!important}.pt-lg-3{padding-top:1rem!important}.pt-lg-4{padding-top:1.5rem!important}.pt-lg-5{padding-top:3rem!important}.pe-lg-0{padding-right:0!important}.pe-lg-1{padding-right:.25rem!important}.pe-lg-2{padding-right:.5rem!important}.pe-lg-3{padding-right:1rem!important}.pe-lg-4{padding-right:1.5rem!important}.pe-lg-5{padding-right:3rem!important}.pb-lg-0{padding-bottom:0!important}.pb-lg-1{padding-bottom:.25rem!important}.pb-lg-2{padding-bottom:.5rem!important}.pb-lg-3{padding-bottom:1rem!important}.pb-lg-4{padding-bottom:1.5rem!important}.pb-lg-5{padding-bottom:3rem!important}.ps-lg-0{padding-left:0!important}.ps-lg-1{padding-left:.25rem!important}.ps-lg-2{padding-left:.5rem!important}.ps-lg-3{padding-left:1rem!important}.ps-lg-4{padding-left:1.5rem!important}.ps-lg-5{padding-left:3rem!important}.text-lg-start{text-align:left!important}.text-lg-end{text-align:right!important}.text-lg-center{text-align:center!important}}@media (min-width:1200px){.float-xl-start{float:left!important}.float-xl-end{float:right!important}.float-xl-none{float:none!important}.d-xl-inline{display:inline!important}.d-xl-inline-block{display:inline-block!important}.d-xl-block{display:block!important}.d-xl-grid{display:grid!important}.d-xl-table{display:table!important}.d-xl-table-row{display:table-row!important}.d-xl-table-cell{display:table-cell!important}.d-xl-flex{display:flex!important}.d-xl-inline-flex{display:inline-flex!important}.d-xl-none{display:none!important}.flex-xl-fill{flex:1 1 auto!important}.flex-xl-row{flex-direction:row!important}.flex-xl-column{flex-direction:column!important}.flex-xl-row-reverse{flex-direction:row-reverse!important}.flex-xl-column-reverse{flex-direction:column-reverse!important}.flex-xl-grow-0{flex-grow:0!important}.flex-xl-grow-1{flex-grow:1!important}.flex-xl-shrink-0{flex-shrink:0!important}.flex-xl-shrink-1{flex-shrink:1!important}.flex-xl-wrap{flex-wrap:wrap!important}.flex-xl-nowrap{flex-wrap:nowrap!important}.flex-xl-wrap-reverse{flex-wrap:wrap-reverse!important}.gap-xl-0{gap:0!important}.gap-xl-1{gap:.25rem!important}.gap-xl-2{gap:.5rem!important}.gap-xl-3{gap:1rem!important}.gap-xl-4{gap:1.5rem!important}.gap-xl-5{gap:3rem!important}.justify-content-xl-start{justify-content:flex-start!important}.justify-content-xl-end{justify-content:flex-end!important}.justify-content-xl-center{justify-content:center!important}.justify-content-xl-between{justify-content:space-between!important}.justify-content-xl-around{justify-content:space-around!important}.justify-content-xl-evenly{justify-content:space-evenly!important}.align-items-xl-start{align-items:flex-start!important}.align-items-xl-end{align-items:flex-end!important}.align-items-xl-center{align-items:center!important}.align-items-xl-baseline{align-items:baseline!important}.align-items-xl-stretch{align-items:stretch!important}.align-content-xl-start{align-content:flex-start!important}.align-content-xl-end{align-content:flex-end!important}.align-content-xl-center{align-content:center!important}.align-content-xl-between{align-content:space-between!important}.align-content-xl-around{align-content:space-around!important}.align-content-xl-stretch{align-content:stretch!important}.align-self-xl-auto{align-self:auto!important}.align-self-xl-start{align-self:flex-start!important}.align-self-xl-end{align-self:flex-end!important}.align-self-xl-center{align-self:center!important}.align-self-xl-baseline{align-self:baseline!important}.align-self-xl-stretch{align-self:stretch!important}.order-xl-first{order:-1!important}.order-xl-0{order:0!important}.order-xl-1{order:1!important}.order-xl-2{order:2!important}.order-xl-3{order:3!important}.order-xl-4{order:4!important}.order-xl-5{order:5!important}.order-xl-last{order:6!important}.m-xl-0{margin:0!important}.m-xl-1{margin:.25rem!important}.m-xl-2{margin:.5rem!important}.m-xl-3{margin:1rem!important}.m-xl-4{margin:1.5rem!important}.m-xl-5{margin:3rem!important}.m-xl-auto{margin:auto!important}.mx-xl-0{margin-right:0!important;margin-left:0!important}.mx-xl-1{margin-right:.25rem!important;margin-left:.25rem!important}.mx-xl-2{margin-right:.5rem!important;margin-left:.5rem!important}.mx-xl-3{margin-right:1rem!important;margin-left:1rem!important}.mx-xl-4{margin-right:1.5rem!important;margin-left:1.5rem!important}.mx-xl-5{margin-right:3rem!important;margin-left:3rem!important}.mx-xl-auto{margin-right:auto!important;margin-left:auto!important}.my-xl-0{margin-top:0!important;margin-bottom:0!important}.my-xl-1{margin-top:.25rem!important;margin-bottom:.25rem!important}.my-xl-2{margin-top:.5rem!important;margin-bottom:.5rem!important}.my-xl-3{margin-top:1rem!important;margin-bottom:1rem!important}.my-xl-4{margin-top:1.5rem!important;margin-bottom:1.5rem!important}.my-xl-5{margin-top:3rem!important;margin-bottom:3rem!important}.my-xl-auto{margin-top:auto!important;margin-bottom:auto!important}.mt-xl-0{margin-top:0!important}.mt-xl-1{margin-top:.25rem!important}.mt-xl-2{margin-top:.5rem!important}.mt-xl-3{margin-top:1rem!important}.mt-xl-4{margin-top:1.5rem!important}.mt-xl-5{margin-top:3rem!important}.mt-xl-auto{margin-top:auto!important}.me-xl-0{margin-right:0!important}.me-xl-1{margin-right:.25rem!important}.me-xl-2{margin-right:.5rem!important}.me-xl-3{margin-right:1rem!important}.me-xl-4{margin-right:1.5rem!important}.me-xl-5{margin-right:3rem!important}.me-xl-auto{margin-right:auto!important}.mb-xl-0{margin-bottom:0!important}.mb-xl-1{margin-bottom:.25rem!important}.mb-xl-2{margin-bottom:.5rem!important}.mb-xl-3{margin-bottom:1rem!important}.mb-xl-4{margin-bottom:1.5rem!important}.mb-xl-5{margin-bottom:3rem!important}.mb-xl-auto{margin-bottom:auto!important}.ms-xl-0{margin-left:0!important}.ms-xl-1{margin-left:.25rem!important}.ms-xl-2{margin-left:.5rem!important}.ms-xl-3{margin-left:1rem!important}.ms-xl-4{margin-left:1.5rem!important}.ms-xl-5{margin-left:3rem!important}.ms-xl-auto{margin-left:auto!important}.p-xl-0{padding:0!important}.p-xl-1{padding:.25rem!important}.p-xl-2{padding:.5rem!important}.p-xl-3{padding:1rem!important}.p-xl-4{padding:1.5rem!important}.p-xl-5{padding:3rem!important}.px-xl-0{padding-right:0!important;padding-left:0!important}.px-xl-1{padding-right:.25rem!important;padding-left:.25rem!important}.px-xl-2{padding-right:.5rem!important;padding-left:.5rem!important}.px-xl-3{padding-right:1rem!important;padding-left:1rem!important}.px-xl-4{padding-right:1.5rem!important;padding-left:1.5rem!important}.px-xl-5{padding-right:3rem!important;padding-left:3rem!important}.py-xl-0{padding-top:0!important;padding-bottom:0!important}.py-xl-1{padding-top:.25rem!important;padding-bottom:.25rem!important}.py-xl-2{padding-top:.5rem!important;padding-bottom:.5rem!important}.py-xl-3{padding-top:1rem!important;padding-bottom:1rem!important}.py-xl-4{padding-top:1.5rem!important;padding-bottom:1.5rem!important}.py-xl-5{padding-top:3rem!important;padding-bottom:3rem!important}.pt-xl-0{padding-top:0!important}.pt-xl-1{padding-top:.25rem!important}.pt-xl-2{padding-top:.5rem!important}.pt-xl-3{padding-top:1rem!important}.pt-xl-4{padding-top:1.5rem!important}.pt-xl-5{padding-top:3rem!important}.pe-xl-0{padding-right:0!important}.pe-xl-1{padding-right:.25rem!important}.pe-xl-2{padding-right:.5rem!important}.pe-xl-3{padding-right:1rem!important}.pe-xl-4{padding-right:1.5rem!important}.pe-xl-5{padding-right:3rem!important}.pb-xl-0{padding-bottom:0!important}.pb-xl-1{padding-bottom:.25rem!important}.pb-xl-2{padding-bottom:.5rem!important}.pb-xl-3{padding-bottom:1rem!important}.pb-xl-4{padding-bottom:1.5rem!important}.pb-xl-5{padding-bottom:3rem!important}.ps-xl-0{padding-left:0!important}.ps-xl-1{padding-left:.25rem!important}.ps-xl-2{padding-left:.5rem!important}.ps-xl-3{padding-left:1rem!important}.ps-xl-4{padding-left:1.5rem!important}.ps-xl-5{padding-left:3rem!important}.text-xl-start{text-align:left!important}.text-xl-end{text-align:right!important}.text-xl-center{text-align:center!important}}@media (min-width:1400px){.float-xxl-start{float:left!important}.float-xxl-end{float:right!important}.float-xxl-none{float:none!important}.d-xxl-inline{display:inline!important}.d-xxl-inline-block{display:inline-block!important}.d-xxl-block{display:block!important}.d-xxl-grid{display:grid!important}.d-xxl-table{display:table!important}.d-xxl-table-row{display:table-row!important}.d-xxl-table-cell{display:table-cell!important}.d-xxl-flex{display:flex!important}.d-xxl-inline-flex{display:inline-flex!important}.d-xxl-none{display:none!important}.flex-xxl-fill{flex:1 1 auto!important}.flex-xxl-row{flex-direction:row!important}.flex-xxl-column{flex-direction:column!important}.flex-xxl-row-reverse{flex-direction:row-reverse!important}.flex-xxl-column-reverse{flex-direction:column-reverse!important}.flex-xxl-grow-0{flex-grow:0!important}.flex-xxl-grow-1{flex-grow:1!important}.flex-xxl-shrink-0{flex-shrink:0!important}.flex-xxl-shrink-1{flex-shrink:1!important}.flex-xxl-wrap{flex-wrap:wrap!important}.flex-xxl-nowrap{flex-wrap:nowrap!important}.flex-xxl-wrap-reverse{flex-wrap:wrap-reverse!important}.gap-xxl-0{gap:0!important}.gap-xxl-1{gap:.25rem!important}.gap-xxl-2{gap:.5rem!important}.gap-xxl-3{gap:1rem!important}.gap-xxl-4{gap:1.5rem!important}.gap-xxl-5{gap:3rem!important}.justify-content-xxl-start{justify-content:flex-start!important}.justify-content-xxl-end{justify-content:flex-end!important}.justify-content-xxl-center{justify-content:center!important}.justify-content-xxl-between{justify-content:space-between!important}.justify-content-xxl-around{justify-content:space-around!important}.justify-content-xxl-evenly{justify-content:space-evenly!important}.align-items-xxl-start{align-items:flex-start!important}.align-items-xxl-end{align-items:flex-end!important}.align-items-xxl-center{align-items:center!important}.align-items-xxl-baseline{align-items:baseline!important}.align-items-xxl-stretch{align-items:stretch!important}.align-content-xxl-start{align-content:flex-start!important}.align-content-xxl-end{align-content:flex-end!important}.align-content-xxl-center{align-content:center!important}.align-content-xxl-between{align-content:space-between!important}.align-content-xxl-around{align-content:space-around!important}.align-content-xxl-stretch{align-content:stretch!important}.align-self-xxl-auto{align-self:auto!important}.align-self-xxl-start{align-self:flex-start!important}.align-self-xxl-end{align-self:flex-end!important}.align-self-xxl-center{align-self:center!important}.align-self-xxl-baseline{align-self:baseline!important}.align-self-xxl-stretch{align-self:stretch!important}.order-xxl-first{order:-1!important}.order-xxl-0{order:0!important}.order-xxl-1{order:1!important}.order-xxl-2{order:2!important}.order-xxl-3{order:3!important}.order-xxl-4{order:4!important}.order-xxl-5{order:5!important}.order-xxl-last{order:6!important}.m-xxl-0{margin:0!important}.m-xxl-1{margin:.25rem!important}.m-xxl-2{margin:.5rem!important}.m-xxl-3{margin:1rem!important}.m-xxl-4{margin:1.5rem!important}.m-xxl-5{margin:3rem!important}.m-xxl-auto{margin:auto!important}.mx-xxl-0{margin-right:0!important;margin-left:0!important}.mx-xxl-1{margin-right:.25rem!important;margin-left:.25rem!important}.mx-xxl-2{margin-right:.5rem!important;margin-left:.5rem!important}.mx-xxl-3{margin-right:1rem!important;margin-left:1rem!important}.mx-xxl-4{margin-right:1.5rem!important;margin-left:1.5rem!important}.mx-xxl-5{margin-right:3rem!important;margin-left:3rem!important}.mx-xxl-auto{margin-right:auto!important;margin-left:auto!important}.my-xxl-0{margin-top:0!important;margin-bottom:0!important}.my-xxl-1{margin-top:.25rem!important;margin-bottom:.25rem!important}.my-xxl-2{margin-top:.5rem!important;margin-bottom:.5rem!important}.my-xxl-3{margin-top:1rem!important;margin-bottom:1rem!important}.my-xxl-4{margin-top:1.5rem!important;margin-bottom:1.5rem!important}.my-xxl-5{margin-top:3rem!important;margin-bottom:3rem!important}.my-xxl-auto{margin-top:auto!important;margin-bottom:auto!important}.mt-xxl-0{margin-top:0!important}.mt-xxl-1{margin-top:.25rem!important}.mt-xxl-2{margin-top:.5rem!important}.mt-xxl-3{margin-top:1rem!important}.mt-xxl-4{margin-top:1.5rem!important}.mt-xxl-5{margin-top:3rem!important}.mt-xxl-auto{margin-top:auto!important}.me-xxl-0{margin-right:0!important}.me-xxl-1{margin-right:.25rem!important}.me-xxl-2{margin-right:.5rem!important}.me-xxl-3{margin-right:1rem!important}.me-xxl-4{margin-right:1.5rem!important}.me-xxl-5{margin-right:3rem!important}.me-xxl-auto{margin-right:auto!important}.mb-xxl-0{margin-bottom:0!important}.mb-xxl-1{margin-bottom:.25rem!important}.mb-xxl-2{margin-bottom:.5rem!important}.mb-xxl-3{margin-bottom:1rem!important}.mb-xxl-4{margin-bottom:1.5rem!important}.mb-xxl-5{margin-bottom:3rem!important}.mb-xxl-auto{margin-bottom:auto!important}.ms-xxl-0{margin-left:0!important}.ms-xxl-1{margin-left:.25rem!important}.ms-xxl-2{margin-left:.5rem!important}.ms-xxl-3{margin-left:1rem!important}.ms-xxl-4{margin-left:1.5rem!important}.ms-xxl-5{margin-left:3rem!important}.ms-xxl-auto{margin-left:auto!important}.p-xxl-0{padding:0!important}.p-xxl-1{padding:.25rem!important}.p-xxl-2{padding:.5rem!important}.p-xxl-3{padding:1rem!important}.p-xxl-4{padding:1.5rem!important}.p-xxl-5{padding:3rem!important}.px-xxl-0{padding-right:0!important;padding-left:0!important}.px-xxl-1{padding-right:.25rem!important;padding-left:.25rem!important}.px-xxl-2{padding-right:.5rem!important;padding-left:.5rem!important}.px-xxl-3{padding-right:1rem!important;padding-left:1rem!important}.px-xxl-4{padding-right:1.5rem!important;padding-left:1.5rem!important}.px-xxl-5{padding-right:3rem!important;padding-left:3rem!important}.py-xxl-0{padding-top:0!important;padding-bottom:0!important}.py-xxl-1{padding-top:.25rem!important;padding-bottom:.25rem!important}.py-xxl-2{padding-top:.5rem!important;padding-bottom:.5rem!important}.py-xxl-3{padding-top:1rem!important;padding-bottom:1rem!important}.py-xxl-4{padding-top:1.5rem!important;padding-bottom:1.5rem!important}.py-xxl-5{padding-top:3rem!important;padding-bottom:3rem!important}.pt-xxl-0{padding-top:0!important}.pt-xxl-1{padding-top:.25rem!important}.pt-xxl-2{padding-top:.5rem!important}.pt-xxl-3{padding-top:1rem!important}.pt-xxl-4{padding-top:1.5rem!important}.pt-xxl-5{padding-top:3rem!important}.pe-xxl-0{padding-right:0!important}.pe-xxl-1{padding-right:.25rem!important}.pe-xxl-2{padding-right:.5rem!important}.pe-xxl-3{padding-right:1rem!important}.pe-xxl-4{padding-right:1.5rem!important}.pe-xxl-5{padding-right:3rem!important}.pb-xxl-0{padding-bottom:0!important}.pb-xxl-1{padding-bottom:.25rem!important}.pb-xxl-2{padding-bottom:.5rem!important}.pb-xxl-3{padding-bottom:1rem!important}.pb-xxl-4{padding-bottom:1.5rem!important}.pb-xxl-5{padding-bottom:3rem!important}.ps-xxl-0{padding-left:0!important}.ps-xxl-1{padding-left:.25rem!important}.ps-xxl-2{padding-left:.5rem!important}.ps-xxl-3{padding-left:1rem!important}.ps-xxl-4{padding-left:1.5rem!important}.ps-xxl-5{padding-left:3rem!important}.text-xxl-start{text-align:left!important}.text-xxl-end{text-align:right!important}.text-xxl-center{text-align:center!important}}@media (min-width:1200px){.fs-1{font-size:2.5rem!important}.fs-2{font-size:2rem!important}.fs-3{font-size:1.75rem!important}.fs-4{font-size:1.5rem!important}}@media print{.d-print-inline{display:inline!important}.d-print-inline-block{display:inline-block!important}.d-print-block{display:block!important}.d-print-grid{display:grid!important}.d-print-table{display:table!important}.d-print-table-row{display:table-row!important}.d-print-table-cell{display:table-cell!important}.d-print-flex{display:flex!important}.d-print-inline-flex{display:inline-flex!important}.d-print-none{display:none!important}} +/*# sourceMappingURL=bootstrap.min.css.map */ \ No newline at end of file diff --git a/KB-Samples/LargeDiagram/wwwroot/bootstrap/bootstrap.min.css.map b/KB-Samples/LargeDiagram/wwwroot/bootstrap/bootstrap.min.css.map new file mode 100644 index 00000000..afcd9e33 --- /dev/null +++ b/KB-Samples/LargeDiagram/wwwroot/bootstrap/bootstrap.min.css.map @@ -0,0 +1 @@ +{"version":3,"sources":["../../scss/bootstrap.scss","../../scss/_root.scss","../../scss/_reboot.scss","dist/css/bootstrap.css","../../scss/vendor/_rfs.scss","../../scss/mixins/_border-radius.scss","../../scss/_type.scss","../../scss/mixins/_lists.scss","../../scss/_images.scss","../../scss/mixins/_image.scss","../../scss/_containers.scss","../../scss/mixins/_container.scss","../../scss/mixins/_breakpoints.scss","../../scss/_grid.scss","../../scss/mixins/_grid.scss","../../scss/_tables.scss","../../scss/mixins/_table-variants.scss","../../scss/forms/_labels.scss","../../scss/forms/_form-text.scss","../../scss/forms/_form-control.scss","../../scss/mixins/_transition.scss","../../scss/mixins/_gradients.scss","../../scss/forms/_form-select.scss","../../scss/forms/_form-check.scss","../../scss/forms/_form-range.scss","../../scss/forms/_floating-labels.scss","../../scss/forms/_input-group.scss","../../scss/mixins/_forms.scss","../../scss/_buttons.scss","../../scss/mixins/_buttons.scss","../../scss/_transitions.scss","../../scss/_dropdown.scss","../../scss/mixins/_caret.scss","../../scss/_button-group.scss","../../scss/_nav.scss","../../scss/_navbar.scss","../../scss/_card.scss","../../scss/_accordion.scss","../../scss/_breadcrumb.scss","../../scss/_pagination.scss","../../scss/mixins/_pagination.scss","../../scss/_badge.scss","../../scss/_alert.scss","../../scss/mixins/_alert.scss","../../scss/_progress.scss","../../scss/_list-group.scss","../../scss/mixins/_list-group.scss","../../scss/_close.scss","../../scss/_toasts.scss","../../scss/_modal.scss","../../scss/mixins/_backdrop.scss","../../scss/_tooltip.scss","../../scss/mixins/_reset-text.scss","../../scss/_popover.scss","../../scss/_carousel.scss","../../scss/mixins/_clearfix.scss","../../scss/_spinners.scss","../../scss/_offcanvas.scss","../../scss/_placeholders.scss","../../scss/helpers/_colored-links.scss","../../scss/helpers/_ratio.scss","../../scss/helpers/_position.scss","../../scss/helpers/_stacks.scss","../../scss/helpers/_visually-hidden.scss","../../scss/mixins/_visually-hidden.scss","../../scss/helpers/_stretched-link.scss","../../scss/helpers/_text-truncation.scss","../../scss/mixins/_text-truncate.scss","../../scss/helpers/_vr.scss","../../scss/mixins/_utilities.scss","../../scss/utilities/_api.scss"],"names":[],"mappings":"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","sourcesContent":["/*!\n * Bootstrap v5.1.0 (https://getbootstrap.com/)\n * Copyright 2011-2021 The Bootstrap Authors\n * Copyright 2011-2021 Twitter, Inc.\n * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)\n */\n\n// scss-docs-start import-stack\n// Configuration\n@import \"functions\";\n@import \"variables\";\n@import \"mixins\";\n@import \"utilities\";\n\n// Layout & components\n@import \"root\";\n@import \"reboot\";\n@import \"type\";\n@import \"images\";\n@import \"containers\";\n@import \"grid\";\n@import \"tables\";\n@import \"forms\";\n@import \"buttons\";\n@import \"transitions\";\n@import \"dropdown\";\n@import \"button-group\";\n@import \"nav\";\n@import \"navbar\";\n@import \"card\";\n@import \"accordion\";\n@import \"breadcrumb\";\n@import \"pagination\";\n@import \"badge\";\n@import \"alert\";\n@import \"progress\";\n@import \"list-group\";\n@import \"close\";\n@import \"toasts\";\n@import \"modal\";\n@import \"tooltip\";\n@import \"popover\";\n@import \"carousel\";\n@import \"spinners\";\n@import \"offcanvas\";\n@import \"placeholders\";\n\n// Helpers\n@import \"helpers\";\n\n// Utilities\n@import \"utilities/api\";\n// scss-docs-end import-stack\n",":root {\n // Note: Custom variable values only support SassScript inside `#{}`.\n\n // Colors\n //\n // Generate palettes for full colors, grays, and theme colors.\n\n @each $color, $value in $colors {\n --#{$variable-prefix}#{$color}: #{$value};\n }\n\n @each $color, $value in $grays {\n --#{$variable-prefix}gray-#{$color}: #{$value};\n }\n\n @each $color, $value in $theme-colors {\n --#{$variable-prefix}#{$color}: #{$value};\n }\n\n @each $color, $value in $theme-colors-rgb {\n --#{$variable-prefix}#{$color}-rgb: #{$value};\n }\n\n --#{$variable-prefix}white-rgb: #{to-rgb($white)};\n --#{$variable-prefix}black-rgb: #{to-rgb($black)};\n --#{$variable-prefix}body-rgb: #{to-rgb($body-color)};\n\n // Fonts\n\n // Note: Use `inspect` for lists so that quoted items keep the quotes.\n // See https://github.com/sass/sass/issues/2383#issuecomment-336349172\n --#{$variable-prefix}font-sans-serif: #{inspect($font-family-sans-serif)};\n --#{$variable-prefix}font-monospace: #{inspect($font-family-monospace)};\n --#{$variable-prefix}gradient: #{$gradient};\n\n // Root and body\n // stylelint-disable custom-property-empty-line-before\n // scss-docs-start root-body-variables\n @if $font-size-root != null {\n --#{$variable-prefix}root-font-size: #{$font-size-root};\n }\n --#{$variable-prefix}body-font-family: #{$font-family-base};\n --#{$variable-prefix}body-font-size: #{$font-size-base};\n --#{$variable-prefix}body-font-weight: #{$font-weight-base};\n --#{$variable-prefix}body-line-height: #{$line-height-base};\n --#{$variable-prefix}body-color: #{$body-color};\n @if $body-text-align != null {\n --#{$variable-prefix}body-text-align: #{$body-text-align};\n }\n --#{$variable-prefix}body-bg: #{$body-bg};\n // scss-docs-end root-body-variables\n // stylelint-enable custom-property-empty-line-before\n}\n","// stylelint-disable declaration-no-important, selector-no-qualifying-type, property-no-vendor-prefix\n\n\n// Reboot\n//\n// Normalization of HTML elements, manually forked from Normalize.css to remove\n// styles targeting irrelevant browsers while applying new styles.\n//\n// Normalize is licensed MIT. https://github.com/necolas/normalize.css\n\n\n// Document\n//\n// Change from `box-sizing: content-box` so that `width` is not affected by `padding` or `border`.\n\n*,\n*::before,\n*::after {\n box-sizing: border-box;\n}\n\n\n// Root\n//\n// Ability to the value of the root font sizes, affecting the value of `rem`.\n// null by default, thus nothing is generated.\n\n:root {\n @if $font-size-root != null {\n font-size: var(--#{$variable-prefix}-root-font-size);\n }\n\n @if $enable-smooth-scroll {\n @media (prefers-reduced-motion: no-preference) {\n scroll-behavior: smooth;\n }\n }\n}\n\n\n// Body\n//\n// 1. Remove the margin in all browsers.\n// 2. As a best practice, apply a default `background-color`.\n// 3. Prevent adjustments of font size after orientation changes in iOS.\n// 4. Change the default tap highlight to be completely transparent in iOS.\n\n// scss-docs-start reboot-body-rules\nbody {\n margin: 0; // 1\n font-family: var(--#{$variable-prefix}body-font-family);\n @include font-size(var(--#{$variable-prefix}body-font-size));\n font-weight: var(--#{$variable-prefix}body-font-weight);\n line-height: var(--#{$variable-prefix}body-line-height);\n color: var(--#{$variable-prefix}body-color);\n text-align: var(--#{$variable-prefix}body-text-align);\n background-color: var(--#{$variable-prefix}body-bg); // 2\n -webkit-text-size-adjust: 100%; // 3\n -webkit-tap-highlight-color: rgba($black, 0); // 4\n}\n// scss-docs-end reboot-body-rules\n\n\n// Content grouping\n//\n// 1. Reset Firefox's gray color\n// 2. Set correct height and prevent the `size` attribute to make the `hr` look like an input field\n\nhr {\n margin: $hr-margin-y 0;\n color: $hr-color; // 1\n background-color: currentColor;\n border: 0;\n opacity: $hr-opacity;\n}\n\nhr:not([size]) {\n height: $hr-height; // 2\n}\n\n\n// Typography\n//\n// 1. Remove top margins from headings\n// By default, `

`-`

` all receive top and bottom margins. We nuke the top\n// margin for easier control within type scales as it avoids margin collapsing.\n\n%heading {\n margin-top: 0; // 1\n margin-bottom: $headings-margin-bottom;\n font-family: $headings-font-family;\n font-style: $headings-font-style;\n font-weight: $headings-font-weight;\n line-height: $headings-line-height;\n color: $headings-color;\n}\n\nh1 {\n @extend %heading;\n @include font-size($h1-font-size);\n}\n\nh2 {\n @extend %heading;\n @include font-size($h2-font-size);\n}\n\nh3 {\n @extend %heading;\n @include font-size($h3-font-size);\n}\n\nh4 {\n @extend %heading;\n @include font-size($h4-font-size);\n}\n\nh5 {\n @extend %heading;\n @include font-size($h5-font-size);\n}\n\nh6 {\n @extend %heading;\n @include font-size($h6-font-size);\n}\n\n\n// Reset margins on paragraphs\n//\n// Similarly, the top margin on `

`s get reset. However, we also reset the\n// bottom margin to use `rem` units instead of `em`.\n\np {\n margin-top: 0;\n margin-bottom: $paragraph-margin-bottom;\n}\n\n\n// Abbreviations\n//\n// 1. Duplicate behavior to the data-bs-* attribute for our tooltip plugin\n// 2. Add the correct text decoration in Chrome, Edge, Opera, and Safari.\n// 3. Add explicit cursor to indicate changed behavior.\n// 4. Prevent the text-decoration to be skipped.\n\nabbr[title],\nabbr[data-bs-original-title] { // 1\n text-decoration: underline dotted; // 2\n cursor: help; // 3\n text-decoration-skip-ink: none; // 4\n}\n\n\n// Address\n\naddress {\n margin-bottom: 1rem;\n font-style: normal;\n line-height: inherit;\n}\n\n\n// Lists\n\nol,\nul {\n padding-left: 2rem;\n}\n\nol,\nul,\ndl {\n margin-top: 0;\n margin-bottom: 1rem;\n}\n\nol ol,\nul ul,\nol ul,\nul ol {\n margin-bottom: 0;\n}\n\ndt {\n font-weight: $dt-font-weight;\n}\n\n// 1. Undo browser default\n\ndd {\n margin-bottom: .5rem;\n margin-left: 0; // 1\n}\n\n\n// Blockquote\n\nblockquote {\n margin: 0 0 1rem;\n}\n\n\n// Strong\n//\n// Add the correct font weight in Chrome, Edge, and Safari\n\nb,\nstrong {\n font-weight: $font-weight-bolder;\n}\n\n\n// Small\n//\n// Add the correct font size in all browsers\n\nsmall {\n @include font-size($small-font-size);\n}\n\n\n// Mark\n\nmark {\n padding: $mark-padding;\n background-color: $mark-bg;\n}\n\n\n// Sub and Sup\n//\n// Prevent `sub` and `sup` elements from affecting the line height in\n// all browsers.\n\nsub,\nsup {\n position: relative;\n @include font-size($sub-sup-font-size);\n line-height: 0;\n vertical-align: baseline;\n}\n\nsub { bottom: -.25em; }\nsup { top: -.5em; }\n\n\n// Links\n\na {\n color: $link-color;\n text-decoration: $link-decoration;\n\n &:hover {\n color: $link-hover-color;\n text-decoration: $link-hover-decoration;\n }\n}\n\n// And undo these styles for placeholder links/named anchors (without href).\n// It would be more straightforward to just use a[href] in previous block, but that\n// causes specificity issues in many other styles that are too complex to fix.\n// See https://github.com/twbs/bootstrap/issues/19402\n\na:not([href]):not([class]) {\n &,\n &:hover {\n color: inherit;\n text-decoration: none;\n }\n}\n\n\n// Code\n\npre,\ncode,\nkbd,\nsamp {\n font-family: $font-family-code;\n @include font-size(1em); // Correct the odd `em` font sizing in all browsers.\n direction: ltr #{\"/* rtl:ignore */\"};\n unicode-bidi: bidi-override;\n}\n\n// 1. Remove browser default top margin\n// 2. Reset browser default of `1em` to use `rem`s\n// 3. Don't allow content to break outside\n\npre {\n display: block;\n margin-top: 0; // 1\n margin-bottom: 1rem; // 2\n overflow: auto; // 3\n @include font-size($code-font-size);\n color: $pre-color;\n\n // Account for some code outputs that place code tags in pre tags\n code {\n @include font-size(inherit);\n color: inherit;\n word-break: normal;\n }\n}\n\ncode {\n @include font-size($code-font-size);\n color: $code-color;\n word-wrap: break-word;\n\n // Streamline the style when inside anchors to avoid broken underline and more\n a > & {\n color: inherit;\n }\n}\n\nkbd {\n padding: $kbd-padding-y $kbd-padding-x;\n @include font-size($kbd-font-size);\n color: $kbd-color;\n background-color: $kbd-bg;\n @include border-radius($border-radius-sm);\n\n kbd {\n padding: 0;\n @include font-size(1em);\n font-weight: $nested-kbd-font-weight;\n }\n}\n\n\n// Figures\n//\n// Apply a consistent margin strategy (matches our type styles).\n\nfigure {\n margin: 0 0 1rem;\n}\n\n\n// Images and content\n\nimg,\nsvg {\n vertical-align: middle;\n}\n\n\n// Tables\n//\n// Prevent double borders\n\ntable {\n caption-side: bottom;\n border-collapse: collapse;\n}\n\ncaption {\n padding-top: $table-cell-padding-y;\n padding-bottom: $table-cell-padding-y;\n color: $table-caption-color;\n text-align: left;\n}\n\n// 1. Removes font-weight bold by inheriting\n// 2. Matches default `` alignment by inheriting `text-align`.\n// 3. Fix alignment for Safari\n\nth {\n font-weight: $table-th-font-weight; // 1\n text-align: inherit; // 2\n text-align: -webkit-match-parent; // 3\n}\n\nthead,\ntbody,\ntfoot,\ntr,\ntd,\nth {\n border-color: inherit;\n border-style: solid;\n border-width: 0;\n}\n\n\n// Forms\n//\n// 1. Allow labels to use `margin` for spacing.\n\nlabel {\n display: inline-block; // 1\n}\n\n// Remove the default `border-radius` that macOS Chrome adds.\n// See https://github.com/twbs/bootstrap/issues/24093\n\nbutton {\n // stylelint-disable-next-line property-disallowed-list\n border-radius: 0;\n}\n\n// Explicitly remove focus outline in Chromium when it shouldn't be\n// visible (e.g. as result of mouse click or touch tap). It already\n// should be doing this automatically, but seems to currently be\n// confused and applies its very visible two-tone outline anyway.\n\nbutton:focus:not(:focus-visible) {\n outline: 0;\n}\n\n// 1. Remove the margin in Firefox and Safari\n\ninput,\nbutton,\nselect,\noptgroup,\ntextarea {\n margin: 0; // 1\n font-family: inherit;\n @include font-size(inherit);\n line-height: inherit;\n}\n\n// Remove the inheritance of text transform in Firefox\nbutton,\nselect {\n text-transform: none;\n}\n// Set the cursor for non-`