diff --git a/Common/Change the locale content for the word Clear/ChangeLocale/ChangeLocale.csproj b/Common/Change the locale content for the word Clear/ChangeLocale/ChangeLocale.csproj
new file mode 100644
index 00000000..316ba041
--- /dev/null
+++ b/Common/Change the locale content for the word Clear/ChangeLocale/ChangeLocale.csproj
@@ -0,0 +1,33 @@
+
+
+
+ net8.0
+ enable
+ enable
+
+
+
+
+
+
+
+
+
+
+ True
+ True
+ SfResources.resx
+
+
+
+
+
+ PublicResXFileCodeGenerator
+
+
+ PublicResXFileCodeGenerator
+ SfResources.Designer.cs
+
+
+
+
diff --git a/Common/Change the locale content for the word Clear/ChangeLocale/ChangeLocale.csproj.user b/Common/Change the locale content for the word Clear/ChangeLocale/ChangeLocale.csproj.user
new file mode 100644
index 00000000..53356588
--- /dev/null
+++ b/Common/Change the locale content for the word Clear/ChangeLocale/ChangeLocale.csproj.user
@@ -0,0 +1,7 @@
+
+
+
+ https
+
+
+
\ No newline at end of file
diff --git a/Common/Change the locale content for the word Clear/ChangeLocale/ChangeLocale.sln b/Common/Change the locale content for the word Clear/ChangeLocale/ChangeLocale.sln
new file mode 100644
index 00000000..f4c9eceb
--- /dev/null
+++ b/Common/Change the locale content for the word Clear/ChangeLocale/ChangeLocale.sln
@@ -0,0 +1,22 @@
+
+Microsoft Visual Studio Solution File, Format Version 12.00
+# Visual Studio Version 17
+VisualStudioVersion = 17.12.35527.113 d17.12
+MinimumVisualStudioVersion = 10.0.40219.1
+Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ChangeLocale", "ChangeLocale.csproj", "{6A8A1B15-FAAA-49AF-A5D5-39C393EB92D1}"
+EndProject
+Global
+ GlobalSection(SolutionConfigurationPlatforms) = preSolution
+ Debug|Any CPU = Debug|Any CPU
+ Release|Any CPU = Release|Any CPU
+ EndGlobalSection
+ GlobalSection(ProjectConfigurationPlatforms) = postSolution
+ {6A8A1B15-FAAA-49AF-A5D5-39C393EB92D1}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
+ {6A8A1B15-FAAA-49AF-A5D5-39C393EB92D1}.Debug|Any CPU.Build.0 = Debug|Any CPU
+ {6A8A1B15-FAAA-49AF-A5D5-39C393EB92D1}.Release|Any CPU.ActiveCfg = Release|Any CPU
+ {6A8A1B15-FAAA-49AF-A5D5-39C393EB92D1}.Release|Any CPU.Build.0 = Release|Any CPU
+ EndGlobalSection
+ GlobalSection(SolutionProperties) = preSolution
+ HideSolutionNode = FALSE
+ EndGlobalSection
+EndGlobal
diff --git a/Common/Change the locale content for the word Clear/ChangeLocale/Components/App.razor b/Common/Change the locale content for the word Clear/ChangeLocale/Components/App.razor
new file mode 100644
index 00000000..8ad7598e
--- /dev/null
+++ b/Common/Change the locale content for the word Clear/ChangeLocale/Components/App.razor
@@ -0,0 +1,25 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/Common/Change the locale content for the word Clear/ChangeLocale/Components/Layout/MainLayout.razor b/Common/Change the locale content for the word Clear/ChangeLocale/Components/Layout/MainLayout.razor
new file mode 100644
index 00000000..5a24bb13
--- /dev/null
+++ b/Common/Change the locale content for the word Clear/ChangeLocale/Components/Layout/MainLayout.razor
@@ -0,0 +1,23 @@
+@inherits LayoutComponentBase
+
+
+
+
+
+@code {
+ private int currentCount = 0;
+
+ private void IncrementCount()
+ {
+ currentCount++;
+ }
+}
diff --git a/Common/Change the locale content for the word Clear/ChangeLocale/Components/Pages/Error.razor b/Common/Change the locale content for the word Clear/ChangeLocale/Components/Pages/Error.razor
new file mode 100644
index 00000000..576cc2d2
--- /dev/null
+++ b/Common/Change the locale content for the word Clear/ChangeLocale/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/Common/Change the locale content for the word Clear/ChangeLocale/Components/Pages/Home.razor b/Common/Change the locale content for the word Clear/ChangeLocale/Components/Pages/Home.razor
new file mode 100644
index 00000000..97733dac
--- /dev/null
+++ b/Common/Change the locale content for the word Clear/ChangeLocale/Components/Pages/Home.razor
@@ -0,0 +1,5 @@
+@page "/"
+
+
\ No newline at end of file
diff --git a/Common/Change the locale content for the word Clear/ChangeLocale/Components/Pages/Weather.razor b/Common/Change the locale content for the word Clear/ChangeLocale/Components/Pages/Weather.razor
new file mode 100644
index 00000000..8eca4cc4
--- /dev/null
+++ b/Common/Change the locale content for the word Clear/ChangeLocale/Components/Pages/Weather.razor
@@ -0,0 +1,63 @@
+@page "/weather"
+
+Weather
+
+
Weather
+
+
This component demonstrates showing data.
+
+@if (forecasts == null)
+{
+
Loading...
+}
+else
+{
+
+
+
+
Date
+
Temp. (C)
+
Temp. (F)
+
Summary
+
+
+
+ @foreach (var forecast in forecasts)
+ {
+
+
@forecast.Date.ToShortDateString()
+
@forecast.TemperatureC
+
@forecast.TemperatureF
+
@forecast.Summary
+
+ }
+
+
+}
+
+@code {
+ private WeatherForecast[]? forecasts;
+
+ protected override async Task OnInitializedAsync()
+ {
+ // Simulate asynchronous loading to demonstrate a loading indicator
+ await Task.Delay(500);
+
+ var startDate = DateOnly.FromDateTime(DateTime.Now);
+ var summaries = new[] { "Freezing", "Bracing", "Chilly", "Cool", "Mild", "Warm", "Balmy", "Hot", "Sweltering", "Scorching" };
+ forecasts = Enumerable.Range(1, 5).Select(index => new WeatherForecast
+ {
+ Date = startDate.AddDays(index),
+ TemperatureC = Random.Shared.Next(-20, 55),
+ Summary = summaries[Random.Shared.Next(summaries.Length)]
+ }).ToArray();
+ }
+
+ private class WeatherForecast
+ {
+ public DateOnly Date { get; set; }
+ public int TemperatureC { get; set; }
+ public string? Summary { get; set; }
+ public int TemperatureF => 32 + (int)(TemperatureC / 0.5556);
+ }
+}
diff --git a/Common/Change the locale content for the word Clear/ChangeLocale/Components/Routes.razor b/Common/Change the locale content for the word Clear/ChangeLocale/Components/Routes.razor
new file mode 100644
index 00000000..f756e19d
--- /dev/null
+++ b/Common/Change the locale content for the word Clear/ChangeLocale/Components/Routes.razor
@@ -0,0 +1,6 @@
+
+
+
+
+
+
diff --git a/Common/Change the locale content for the word Clear/ChangeLocale/Components/_Imports.razor b/Common/Change the locale content for the word Clear/ChangeLocale/Components/_Imports.razor
new file mode 100644
index 00000000..9c227672
--- /dev/null
+++ b/Common/Change the locale content for the word Clear/ChangeLocale/Components/_Imports.razor
@@ -0,0 +1,12 @@
+@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 ChangeLocale
+@using ChangeLocale.Components
+@using Syncfusion.Blazor;
+@using Syncfusion.Blazor.SfPdfViewer;
\ No newline at end of file
diff --git a/Common/Change the locale content for the word Clear/ChangeLocale/Program.cs b/Common/Change the locale content for the word Clear/ChangeLocale/Program.cs
new file mode 100644
index 00000000..c27c672e
--- /dev/null
+++ b/Common/Change the locale content for the word Clear/ChangeLocale/Program.cs
@@ -0,0 +1,35 @@
+using ChangeLocale.Components;
+using Syncfusion.Blazor;
+
+var builder = WebApplication.CreateBuilder(args);
+builder.Services.AddSyncfusionBlazor();
+// Register the locale service to localize the SyncfusionBlazor components.
+builder.Services.AddSingleton(typeof(ISyncfusionStringLocalizer), typeof(SyncfusionLocalizer));
+
+// Add services to the container.
+builder.Services.AddRazorComponents()
+ .AddInteractiveServerComponents();
+builder.Services.AddSignalR(o => { o.MaximumReceiveMessageSize = 102400000; });
+builder.Services.AddMemoryCache();
+//Add Syncfusion Blazor service to the container.
+builder.Services.AddSyncfusionBlazor();
+
+var app = builder.Build();
+app.UseRequestLocalization("de-DE");
+// Configure the HTTP request pipeline.
+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.UseStaticFiles();
+app.UseAntiforgery();
+
+app.MapRazorComponents()
+ .AddInteractiveServerRenderMode();
+
+app.Run();
diff --git a/Common/Change the locale content for the word Clear/ChangeLocale/Properties/launchSettings.json b/Common/Change the locale content for the word Clear/ChangeLocale/Properties/launchSettings.json
new file mode 100644
index 00000000..f63e6207
--- /dev/null
+++ b/Common/Change the locale content for the word Clear/ChangeLocale/Properties/launchSettings.json
@@ -0,0 +1,38 @@
+{
+ "$schema": "http://json.schemastore.org/launchsettings.json",
+ "iisSettings": {
+ "windowsAuthentication": false,
+ "anonymousAuthentication": true,
+ "iisExpress": {
+ "applicationUrl": "http://localhost:62652",
+ "sslPort": 44319
+ }
+ },
+ "profiles": {
+ "http": {
+ "commandName": "Project",
+ "dotnetRunMessages": true,
+ "launchBrowser": true,
+ "applicationUrl": "http://localhost:5142",
+ "environmentVariables": {
+ "ASPNETCORE_ENVIRONMENT": "Development"
+ }
+ },
+ "https": {
+ "commandName": "Project",
+ "dotnetRunMessages": true,
+ "launchBrowser": true,
+ "applicationUrl": "https://localhost:7008;http://localhost:5142",
+ "environmentVariables": {
+ "ASPNETCORE_ENVIRONMENT": "Development"
+ }
+ },
+ "IIS Express": {
+ "commandName": "IISExpress",
+ "launchBrowser": true,
+ "environmentVariables": {
+ "ASPNETCORE_ENVIRONMENT": "Development"
+ }
+ }
+ }
+ }
diff --git a/Common/Change the locale content for the word Clear/ChangeLocale/Resources/SfResources.Designer.cs b/Common/Change the locale content for the word Clear/ChangeLocale/Resources/SfResources.Designer.cs
new file mode 100644
index 00000000..8feff8e4
--- /dev/null
+++ b/Common/Change the locale content for the word Clear/ChangeLocale/Resources/SfResources.Designer.cs
@@ -0,0 +1,14679 @@
+//------------------------------------------------------------------------------
+//
+// 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 ChangeLocale.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("ChangeLocale.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 The 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 The 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 The 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} files?.
+ ///
+ 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 Files.
+ ///
+ 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 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 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.
+ ///
+ 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 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 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 The 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 The 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 Axes.
+ ///
+ 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 Repeat 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 Delete 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 Edit 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 Look for more.
+ ///
+ public static string Schedule_LookForMore {
+ get {
+ return ResourceManager.GetString("Schedule_LookForMore", 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 found.
+ ///
+ 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 Showing events until.
+ ///
+ public static string Schedule_ShowingEventsUntil {
+ get {
+ return ResourceManager.GetString("Schedule_ShowingEventsUntil", 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 Title.
+ ///
+ 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 Year.
+ ///
+ public static string Schedule_Year {
+ get {
+ return ResourceManager.GetString("Schedule_Year", 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/Common/Change the locale content for the word Clear/ChangeLocale/Resources/SfResources.de.resx b/Common/Change the locale content for the word Clear/ChangeLocale/Resources/SfResources.de.resx
new file mode 100644
index 00000000..e37cf103
--- /dev/null
+++ b/Common/Change the locale content for the word Clear/ChangeLocale/Resources/SfResources.de.resx
@@ -0,0 +1,4992 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 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
+
+
+ Die Anfrage ist fehlgeschlagen
+
+
+ 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
+
+
+ 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
+
+
+ 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
+
+
+ Bedingung hinzufügen
+
+
+ Gruppe hinzufügen
+
+
+ UND
+
+
+ Zwischen
+
+
+ Enthält
+
+
+ Gruppe löschen
+
+
+ Entfernen Sie diesen Zustand
+
+
+ Bearbeiten
+
+
+ Leeren
+
+
+ Endet mit
+
+
+ Gleich
+
+
+ Größer als
+
+
+ Größer als oder gleich
+
+
+ Im
+
+
+ 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
+
+
+ Betreiber auswählen
+
+
+ Wert eingeben
+
+
+ Beginnt mit
+
+
+ Zusammenfassungsansicht
+
+
+ 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
+
+
+ Zoomen
+
+
+ Hineinzoomen
+
+
+ Rauszoomen
+
+
+ Zurücksetzen
+
+
+ Schwenken
+
+
+ Keine Datensätze zum Anzeigen
+
+
+ Id
+
+
+ Name
+
+
+ Anfangsdatum
+
+
+ Endtermin
+
+
+ Dauer
+
+
+ Fortschritt
+
+
+ Abhängigkeit
+
+
+ Anmerkungen
+
+
+ Basisstartdatum
+
+
+ Baseline-Enddatum
+
+
+ Art
+
+
+ Offset
+
+
+ Ressourcen
+
+
+ Ressourcen-ID
+
+
+ Tag
+
+
+ Stunde
+
+
+ Minute
+
+
+ Tage
+
+
+ Std
+
+
+ Protokoll
+
+
+ Allgemeines
+
+
+ Benutzerdefinierte Spalten
+
+
+ Notizen schreiben
+
+
+ Neue Aufgabe
+
+
+ Aufgabeninformationen
+
+
+ Speichern
+
+
+ Hinzufügen
+
+
+ Bearbeiten
+
+
+ Aktualisieren
+
+
+ Löschen
+
+
+ Abbrechen
+
+
+ Suche
+
+
+ Aufgabe
+
+
+ Aufgaben
+
+
+ Hineinzoomen
+
+
+ Rauszoomen
+
+
+ Zoom passend
+
+
+ Excel-Export
+
+
+ CSV-Export
+
+
+ Alle erweitern
+
+
+ Alles einklappen
+
+
+ Nächste Zeitspanne
+
+
+ Vorherige Zeitspanne
+
+
+ Ok
+
+
+ Möchten Sie den Datensatz wirklich löschen?
+
+
+ Von
+
+
+ Zu
+
+
+ Task-Link
+
+
+ Verzögerung
+
+
+ Start
+
+
+ Fertig
+
+
+ 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
+
+
+ Über
+
+
+ Unten
+
+
+ Kind
+
+
+ Meilenstein
+
+
+ Zur Aufgabe
+
+
+ Zum Meilenstein
+
+
+ Ereignismarker
+
+
+ Linke Aufgabenbezeichnung
+
+
+ Richtige Aufgabenbezeichnung
+
+
+ Timeline-Zelle
+
+
+ Möchten Sie den Abhängigkeitslink wirklich entfernen?
+
+
+ Einzug
+
+
+ Ausrücken
+
+
+ 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
+
+
+ Filterbalkenzelle
+
+
+ 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
+
+
+ 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 abbrechen?
+
+
+ Spalte auswählen
+
+
+ Spalten durchsuchen
+
+
+ Keine Treffer gefunden
+
+
+ Filter
+
+
+ Löschen
+
+
+ Beginnt mit
+
+
+ Endet mit
+
+
+ Enthält
+
+
+ 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
+
+
+ Datensatz bearbeiten
+
+
+ Aufzeichnung löschen
+
+
+ Filter
+
+
+ Wählen Sie Alle
+
+
+ Leerzeichen
+
+
+ Wahr
+
+
+ Falsch
+
+
+ Keine Treffer gefunden
+
+
+ Filter löschen
+
+
+ Anzahl Filter
+
+
+ Textfilter
+
+
+ Datumsfilter
+
+
+ DateTime-Filter
+
+
+ Match-Fall
+
+
+ Zwischen
+
+
+ Benutzerdefinierte Filter
+
+
+ Geben Sie den Wert ein
+
+
+ Wählen Sie ein Datum
+
+
+ UND
+
+
+ ODER
+
+
+ Zeilen anzeigen, in denen:
+
+
+ {0} von {1} Seiten
+
+
+ ({0} Einträge)
+
+
+ Gehe zur ersten Seite
+
+
+ Gehe zur letzten Seite
+
+
+ Gehe zur nächsten Seite
+
+
+ Zurück zur letzten Seite
+
+
+ Zum nächsten Pager gehen
+
+
+ Zum vorherigen Pager wechseln
+
+
+ Objekte pro Seite
+
+
+ Einträge
+
+
+ Alle
+
+
+ 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
+
+
+ Neues Event
+
+
+ Nächster
+
+
+ Nein
+
+
+ Keine Ereignisse
+
+
+ Keine Aufzeichnungen
+
+
+ (Kein Titel)
+
+
+ Auftreten
+
+
+ Ok
+
+
+ Bisherige
+
+
+ Wiederholung
+
+
+ Wiederholen
+
+
+ Wiederholt
+
+
+ Zwei Ereignisse desselben Ereignisses können nicht am selben Tag auftreten.
+
+
+ Speichern
+
+
+ Schließen
+
+
+ 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 & Drop, um einen Ausdruck zu erstellen. Und wenn Sie die vorhandenen die berechneten Felder bearbeiten möchten! Dann können Sie dies erreichen, indem Sie einfach das Feld unter 'Berechnete Mitglieder' auswählen.
+
+
+ Abbrechen
+
+
+ Diagramm
+
+
+ Löschen
+
+
+ Filter 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
+
+
+ Zwischensummen nicht 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
+
+
+ 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 speichern, um sie zu melden?
+
+
+ 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
+
+
+ Beispielbericht
+
+
+ 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
+
+
+ Nur Zwischensummenspalten anzeigen
+
+
+ Feldliste anzeigen
+
+
+ Gesamtsummen anzeigen
+
+
+ Nur Gesamtsummenzeilen anzeigen
+
+
+ Nur Zwischensummenzeilen anzeigen
+
+
+ Zwischensummen 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
+
+
+ Mehrfachachse
+
+
+ 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
+
+
+ Gruppiert
+
+
+ Mehrachsenmodus
+
+
+ Median
+
+
+ Schließen
+
+
+ Schließen
+
+
+ Speichern
+
+
+ Abbrechen
+
+
+ Wird geladen...
+
+
+ Zum Bearbeiten anklicken
+
+
+ Zum Bearbeiten anklicken
+
+
+ Doppelklick zum bearbeiten
+
+
+ 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
+
+
+ Keiner
+
+
+ Nummer
+
+
+ Oberes Alpha
+
+
+ Unteres Alpha
+
+
+ Oberrömisch
+
+
+ Unterrömisch
+
+
+ Untergriechisch
+
+
+ Keiner
+
+
+ Kreis
+
+
+ Quadrat
+
+
+ Rabatt
+
+
+ Absatz
+
+
+ kodex
+
+
+ Zitat
+
+
+ Überschrift 1
+
+
+ Überschrift 2
+
+
+ Überschrift 3
+
+
+ Überschrift 4
+
+
+ Überschrift 5
+
+
+ Überschrift 6
+
+
+ Segoe UI
+
+
+ Arial
+
+
+ Georgia
+
+
+ Einschlag
+
+
+ Tahoma
+
+
+ Mal neu römisch
+
+
+ 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
+
+
+ http://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
+
+
+ http://example.com/image.png
+
+
+ Bildbeschriftung
+
+
+ Bildgröße
+
+
+ Höhe
+
+
+ Breite
+
+
+ Text eingeben
+
+
+ Tabelle einfügen
+
+
+ Tabelle einfügen
+
+
+ Breite
+
+
+ Zellauffüllung
+
+
+ Zellenabstand
+
+
+ Anzahl der Spalten
+
+
+ Reihenanzahl
+
+
+ Tabellenzeilen
+
+
+ Tabellenspalten
+
+
+ Horizontale Ausrichtung der Tabellenzelle
+
+
+ Vertikale Ausrichtung der Tabellenzelle
+
+
+ Tabelle erstellen
+
+
+ Tabelle entfernen
+
+
+ Tabellenüberschrift
+
+
+ Tabelle entfernen
+
+
+ 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
+
+
+ Im Zentrum anordnen
+
+
+ Im Zentrum anordnen
+
+
+ Justify ausrichten
+
+
+ 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
+
+
+ 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.
+
+
+ Seite anpassen
+
+
+ Breite anpassen
+
+
+ Automatisch
+
+
+ Erste Seite anzeigen
+
+
+ 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 mehr gefunden
+
+
+ Kein Text gefunden
+
+
+ Rückgängig machen
+
+
+ Wiederholen
+
+
+ Anmerkungen hinzufügen oder bearbeiten
+
+
+ Text hervorheben
+
+
+ Text unterstreichen
+
+
+ Durchgestrichener Text
+
+
+ Anmerkung löschen
+
+
+ Opazität
+
+
+ Farbe ändern
+
+
+ Deckkraft ändern
+
+
+ Markieren
+
+
+ Unterstreichen
+
+
+ Durchschlagen
+
+
+ Der Webdienst hört nicht zu. PDF Viewer ist für alle Funktionen vom Webdienst abhängig. Bitte starten Sie den Webdienst, um fortzufahren.
+
+
+ Es wurde ein clientseitiger Fehler gefunden. Überprüfen Sie die benutzerdefinierten Header in der AjaxRequestSettings-Eigenschaft und die Webanaktionsmethoden in der ServerActionSettings-Eigenschaft.
+
+
+ Öffnen
+
+
+ Erste Seite
+
+
+ Vorherige Seite
+
+
+ Nächste Seite
+
+
+ Letzte Seite
+
+
+ Hineinzoomen
+
+
+ Rauszoomen
+
+
+ Auswahl
+
+
+ Schwenken
+
+
+ Drucken
+
+
+ Suche
+
+
+ Anmerkung bearbeiten
+
+
+ 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
+
+
+ löschen
+
+
+ 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
+
+
+ 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
+
+
+ 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.
+
+
+ Tabelle
+
+
+ Reihe
+
+
+ Zelle
+
+
+ In Ordnung
+
+
+ Abbrechen
+
+
+ Grösse
+
+
+ Bevorzugte Breite
+
+
+ Punkte
+
+
+ Prozent
+
+
+ Messen Sie in
+
+
+ Ausrichtung
+
+
+ Links
+
+
+ Zentriert
+
+
+ Rechts
+
+
+ Rechtfertigen
+
+
+ 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
+
+
+ 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
+
+
+ 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 in dieser Region Änderungen vornehmen.
+
+
+ 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
+
+
+ Dieses Dokument ist vor unbeabsichtigter Bearbeitung geschützt. Sie dürfen nur Formulare in dieser Region ausfüllen.
+
+
+ Witwen-/Waisenkontrolle
+
+
+ Einzüge und Abstände
+
+
+ Zeilen- und Seitenumbrüche
+
+
+ Halte die Linien zusammen
+
+
+ Einmal ignorieren
+
+
+ Weiter so
+
+
+ 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
+
+
+ Lokale Zwischenablage
+
+
+ Bearbeitung einschränken
+
+
+ Hochladen vom Computer
+
+
+ Über die URL
+
+
+ Seitenumbruch
+
+
+ Abschnitt Pause
+
+
+ Kopfzeile Fußzeile
+
+
+ Optionen
+
+
+ Ebenen
+
+
+ Unterschiedliche erste Seite
+
+
+ Unterschiedliche Kopf- und Fußzeilen für gerade und ungerade Seiten.
+
+
+ Verschiedene gerade und ungerade Seiten
+
+
+ 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
+
+
+ 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
+
+
+ AllCaps
+
+
+ Einfügen
+
+
+ Einfügen
+
+
diff --git a/Common/Change the locale content for the word Clear/ChangeLocale/Resources/SfResources.es.resx b/Common/Change the locale content for the word Clear/ChangeLocale/Resources/SfResources.es.resx
new file mode 100644
index 00000000..171d2213
--- /dev/null
+++ b/Common/Change the locale content for the word Clear/ChangeLocale/Resources/SfResources.es.resx
@@ -0,0 +1,5982 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 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
+
+
+ No se encontraron registros
+
+
+ Solicitud fallida
+
+
+ Hoy
+
+
+ No se encontraron registros
+
+
+ Solicitud fallida
+
+
+ Elige una fecha
+
+
+ Hoy
+
+
+ Aplicar
+
+
+ Cancelar
+
+
+ Rango personalizado
+
+
+ Días
+
+
+ Fecha final
+
+
+ Elige un rango de fechas
+
+
+ Días seleccionados
+
+
+ Fecha de inicio
+
+
+ Elige una fecha y hora
+
+
+ Hoy
+
+
+ Día
+
+
+ Mes
+
+
+ Año
+
+
+ Hora
+
+
+ Minuto
+
+
+ Segunda
+
+
+ Día de la semana
+
+
+ No se encontraron registros
+
+
+ Solicitud fallida
+
+
+ Solicitud fallida
+
+
+ No se encontraron registros
+
+
+ Solicitud fallida
+
+
+ +${count} más ..
+
+
+ Seleccionar todo
+
+
+ ${count} seleccionado
+
+
+ Deselecciona todo
+
+
+ Valor de disminución
+
+
+ Valor de incremento
+
+
+ Elige un momento
+
+
+ Abortar
+
+
+ Buscar...
+
+
+ Cancelar
+
+
+ Claro
+
+
+ Borrar archivo
+
+
+ O suelta archivos aquí
+
+
+ Carga de archivo cancelada
+
+
+ Cargando
+
+
+ El tipo de archivo no está permitido
+
+
+ El nombre del archivo no está permitido
+
+
+ El tamaño del archivo es demasiado grande
+
+
+ El tamaño del archivo es demasiado pequeño
+
+
+ Pausa
+
+
+ Carga de archivo en pausa
+
+
+ Listo para subir
+
+
+ Eliminar
+
+
+ El archivo no se pudo cargar
+
+
+ Archivo eliminado con éxito
+
+
+ Currículum
+
+
+ Procesar de nuevo
+
+
+ Subir
+
+
+ El archivo no se pudo cargar
+
+
+ documento cargado exitosamente
+
+
+ Nueva carpeta
+
+
+ Subir
+
+
+ Eliminar
+
+
+ Rebautizar
+
+
+ Descargar
+
+
+ Cortar
+
+
+ Copiar
+
+
+ Pegar
+
+
+ Ordenar por
+
+
+ Actualizar
+
+
+ elemento seleccionado
+
+
+ artículos seleccionados
+
+
+ Ver
+
+
+ Detalles
+
+
+ Seleccionar todo
+
+
+ Abierto
+
+
+ Nueva carpeta
+
+
+ Subir
+
+
+ Eliminar
+
+
+ Renombrar
+
+
+ Descargar
+
+
+ Cortar
+
+
+ Copiar
+
+
+ Pegar
+
+
+ Ordenar por
+
+
+ Actualizar
+
+
+ Selección clara
+
+
+ Ver
+
+
+ Detalles
+
+
+ Seleccionar todo
+
+
+ Nombre
+
+
+ Tamaño
+
+
+ Modificado
+
+
+ Fecha de creacion
+
+
+ Camino
+
+
+ Modificado
+
+
+ Creado
+
+
+ Ubicación
+
+
+ Tipo
+
+
+ Permiso
+
+
+ Ascendente
+
+
+ Descendente
+
+
+ Ninguna
+
+
+ Iconos grandes
+
+
+ Detalles
+
+
+ Buscar
+
+
+ Okay
+
+
+ Cancelar
+
+
+ si
+
+
+ No
+
+
+ Crear
+
+
+ Salvar
+
+
+ Carpeta
+
+
+ Ingrese el nombre de su carpeta
+
+
+ Rebautizar
+
+
+ Ingrese su nuevo nombre
+
+
+ Cambiar nombre de confirmación
+
+
+ Si cambia una extensión de nombre de archivo, el archivo podría volverse inestable. ¿Estás seguro de que quieres cambiarlo?
+
+
+ Borrar archivo
+
+
+ ¿Seguro que quieres eliminar este archivo?
+
+
+ Eliminar carpeta
+
+
+ ¿Estás seguro de que deseas eliminar esta carpeta?
+
+
+ Eliminar múltiples elementos
+
+
+ ¿Está seguro de que desea eliminar estos {0} elementos?
+
+
+ Archivo / Carpeta existe
+
+
+ {0} ya existe. ¿Quieres renombrar y pegar?
+
+
+ Subir archivos
+
+
+ Error
+
+
+ El nombre del archivo o carpeta no puede estar vacío.
+
+
+ El nombre del archivo o carpeta {0} contiene caracteres no válidos. Por favor use un nombre diferente. Los nombres de archivo o carpeta válidos no pueden terminar con un punto o espacio.
+
+
+ Ya existe un archivo o carpeta con el nombre {0}.
+
+
+ No se puede cambiar el nombre de {0} a {1}: el destino ya existe.
+
+
+ Esta carpeta está vacía
+
+
+ Arrastra los archivos aquí para subir
+
+
+ No se han encontrado resultados
+
+
+ Pruebe con diferentes palabras clave
+
+
+ No se han encontrado resultados
+
+
+ Probar con un filtro diferente
+
+
+ La carpeta de destino es la subcarpeta de la carpeta de origen.
+
+
+ Acceso denegado
+
+
+ No tienes permiso para acceder a esta carpeta.
+
+
+ El archivo ya existe
+
+
+ Ya existe un archivo con este nombre en esta carpeta. Que te gustaría hacer?
+
+
+ Mantén ambos
+
+
+ Reemplazar
+
+
+ Omitir
+
+
+ Haz esto para todos los artículos actuales
+
+
+ KB
+
+
+ {0} no es accesible. necesita permiso para realizar la acción {1}.
+
+
+ NetworkError: error al enviar en XMLHTTPRequest: error al cargar
+
+
+ ServerError: respuesta no válida de
+
+
+ Enfocar
+
+
+ Acercarse
+
+
+ Disminuir el zoom
+
+
+ Reiniciar
+
+
+ Panorámico
+
+
+ Restablecer zoom
+
+
+ Disminución
+
+
+ Incrementar
+
+
+ Imagen no encontrada
+
+
+ Zoom
+
+
+ Dar un golpe zoom
+
+
+ zoom fuera
+
+
+ Reinicializar
+
+
+ Pan
+
+
+ No hay registros que mostrar
+
+
+ CARNÉ DE IDENTIDAD
+
+
+ Nombre
+
+
+ Fecha de inicio
+
+
+ Fecha final
+
+
+ Duración
+
+
+ Progreso
+
+
+ Dependencia
+
+
+ Notas
+
+
+ Fecha de inicio de línea de base
+
+
+ Fecha de finalización de línea de base
+
+
+ Tipo
+
+
+ Compensar
+
+
+ Recursos
+
+
+ ID de recurso
+
+
+ día
+
+
+ hora
+
+
+ minuto
+
+
+ Dias
+
+
+ horas
+
+
+ minutos
+
+
+ General
+
+
+ Columnas personalizadas
+
+
+ Escribe notas
+
+
+ Nueva tarea
+
+
+ Información de tarea
+
+
+ Salvar
+
+
+ añadir
+
+
+ Editar
+
+
+ Actualizar
+
+
+ Eliminar
+
+
+ Cancelar
+
+
+ Buscar
+
+
+ tarea
+
+
+ Tareas
+
+
+ Acercarse
+
+
+ Disminuir el zoom
+
+
+ Zoom para ajustar
+
+
+ Exportación Excel
+
+
+ Exportación CSV
+
+
+ Expandir todo
+
+
+ Desplegar todo
+
+
+ Próximo intervalo de tiempo
+
+
+ Periodo de tiempo anterior
+
+
+ Okay
+
+
+ ¿Estás seguro de que deseas eliminar el registro?
+
+
+ Desde
+
+
+ A
+
+
+ Enlace de tareas
+
+
+ Retraso
+
+
+ comienzo
+
+
+ Terminar
+
+
+ Ingrese el valor
+
+
+ Movió '{0}' para comenzar antes de que '{1}' finalice y las dos tareas estén vinculadas. Como resultado, los enlaces no pueden ser respetados. Seleccione una acción a continuación para realizar
+
+
+ Se movió '{0}' lejos de '{1}' y las dos tareas están vinculadas. Como resultado, los enlaces no pueden ser respetados. Seleccione una acción a continuación para realizar
+
+
+ Movió '{0}' para comenzar antes de que comience '{1}' y las dos tareas estén vinculadas. Como resultado, los enlaces no pueden ser respetados. Seleccione una acción a continuación para realizar
+
+
+ Movió '{0}' para comenzar después de que '{1}' comience y las dos tareas estén vinculadas. Como resultado, los enlaces no pueden ser respetados. Seleccione una acción a continuación para realizar
+
+
+ Movió '{0}' para finalizar antes de que '{1}' finalice y las dos tareas estén vinculadas. Como resultado, los enlaces no pueden ser respetados. Seleccione una acción a continuación para realizar
+
+
+ Movió '{0}' para finalizar después de que '{1}' finalice y las dos tareas estén vinculadas. Como resultado, los enlaces no pueden ser respetados. Seleccione una acción a continuación para realizar
+
+
+ Se movió '{0}' lejos de '{1}' para comenzar y las dos tareas están vinculadas. Como resultado, los enlaces no pueden ser respetados. Seleccione una acción a continuación para realizar
+
+
+ Movió '{0}' para finalizar después de que '{1}' comience y las dos tareas estén vinculadas. Como resultado, los enlaces no pueden ser respetados. Seleccione una acción a continuación para realizar
+
+
+ Información de tarea
+
+
+ Eliminar tarea
+
+
+ Eliminar dependencia
+
+
+ Convertir
+
+
+ Salvar
+
+
+ Encima
+
+
+ Abajo
+
+
+ Niño
+
+
+ Hito
+
+
+ A la tarea
+
+
+ Al hito
+
+
+ Marcadores de eventos
+
+
+ Etiqueta de tarea izquierda
+
+
+ Etiqueta de tarea correcta
+
+
+ Celda de línea de tiempo
+
+
+ ¿Seguro que quieres eliminar el enlace de dependencia?
+
+
+ Sangrar
+
+
+ Outdent
+
+
+ Columna de ajuste automático
+
+
+ Autoajustar todas las columnas
+
+
+ Orden ascendente
+
+
+ Orden descendiente
+
+
+ Modo de Tarea
+
+
+ Auto
+
+
+ Manual
+
+
+ Fecha de inicio de subtareas
+
+
+ Fecha de finalización de las subtareas
+
+
+ Duración
+
+
+ Trabajo
+
+
+ H
+
+
+ D
+
+
+ M
+
+
+ mínimo
+
+
+ Columnas personalizadas
+
+
+ Tipo de tarea
+
+
+ Camino critico
+
+
+ Aplicar
+
+
+ Cancelar
+
+
+ Modo interruptor
+
+
+ Alternar formato
+
+
+ Selector de color
+
+
+ Split-Taste
+
+
+ Solicitud fallida
+
+
+ Mover todo de
+
+
+ Mover todo a
+
+
+ Mover hacia abajo
+
+
+ Mover de
+
+
+ Mover a
+
+
+ Ascender
+
+
+ No se encontraron registros
+
+
+ Seleccionar todo
+
+
+ Deselecciona todo
+
+
+ Elemento de la lista de búsqueda
+
+
+ Ejemplo: C, P, 0000%, ### 0. ## 0 #, etc.
+
+
+ Ordenar los datos
+
+
+ Ordenar en orden descendente
+
+
+ Lista de campos dinámicos
+
+
+ Lista de campo
+
+
+ Agregar campo aquí
+
+
+ Elegir campo
+
+
+ Arrastre los campos entre los ejes a continuación:
+
+
+ Añadir
+
+
+ Aplazar la actualización del diseño
+
+
+ Mostrar leyenda
+
+
+ Ingrese el título del campo
+
+
+ Ordenar en orden ascendente
+
+
+ Un informe llamado
+
+
+ ya existe. ¿Quieres cambiarlo?
+
+
+ Agregar condición
+
+
+ Agregar a la columna
+
+
+ Agregar al filtro
+
+
+ Agregar a la fila
+
+
+ Agregar al valor
+
+
+ Después
+
+
+ Después o igual a
+
+
+ Agregar
+
+
+ Alerta
+
+
+ Todos
+
+
+ Todos los campos
+
+
+ Todos los valores
+
+
+ y
+
+
+ Aplicar
+
+
+ Zona
+
+
+ Ascendente
+
+
+ Promedio
+
+
+ Bar
+
+
+ Campo base
+
+
+ Artículo base
+
+
+ antes de
+
+
+ Antes o igual a
+
+
+ Empieza con
+
+
+ Entre
+
+
+ (Blanco)
+
+
+ Por
+
+
+ Campo calculado
+
+
+ Ya existe un campo de cálculo en este nombre. ¿Quieres cambiarlo?
+
+
+ Arrastra y suelta campos a la fórmula
+
+
+ Arrastre el campo a la fórmula
+
+
+ El campo calculado no se puede colocar en ninguna otra región, excepto el eje de valores.
+
+
+ Ejemplo: ('Sum(Order_Count)' + 'Sum(In_Stock)') * 250
+
+
+ Ya existe un campo en este nombre. Por favor, introduzca un nombre diferente.
+
+
+ Add fields and edit the formula here.
+
+
+ Ingrese el nombre del campo
+
+
+ Ejemplo: [Measures].[Order Quantity] + ([Measures].[Order Quantity] * 0.10)
+
+
+ Arrastre y suelte campos para crear una expresión. ¡Y, si desea editar los campos calculados existentes! Puede lograrlo simplemente seleccionando el campo debajo de 'Miembros calculados'.
+
+
+ Cancelar
+
+
+ Gráfico
+
+
+ Claro
+
+
+ Claro
+
+
+ Cerrar
+
+
+ Colapsar
+
+
+ Columna
+
+
+ Coloca la columna aquí
+
+
+ Columnas
+
+
+ Formato condicional
+
+
+ Formato condicional
+
+
+ Contiene
+
+
+ Copiar
+
+
+ Contar
+
+
+ Crear campo calculado
+
+
+ CSV
+
+
+ Moneda
+
+
+ Símbolo de moneda
+
+
+ Personalizado
+
+
+ Formato personalizado
+
+
+ Ingrese una cadena de formato personalizado
+
+
+ Fecha
+
+
+ Mostrar los elementos para los que la fecha
+
+
+ Dias
+
+
+ Lugares decimales
+
+
+ Eliminar
+
+
+ Eliminar un informe actual
+
+
+ Descendente
+
+
+ Detalles
+
+
+ Diferencia de
+
+
+ Dimensión
+
+
+ Cuenta distinta
+
+
+ No comienza con
+
+
+ No comienza con
+
+
+ No termina con
+
+
+ No es igual
+
+
+ No mostrar totales generales
+
+
+ Arrastrar
+
+
+ Perforar a través
+
+
+ No se pueden mostrar los elementos sin procesar de los campos calculados.
+
+
+ Editar
+
+
+ No hay registros que mostrar
+
+
+ No se encontraron informes !!
+
+
+ Terminando a las
+
+
+ Termina con
+
+
+ Ingrese la fecha
+
+
+ Ingrese un nombre de informe
+
+
+ Ingrese valor
+
+
+ Igual a
+
+
+ Error
+
+
+ p.ej:
+
+
+ Excel
+
+
+ Expandir
+
+
+ Exportar
+
+
+ Expresión
+
+
+ falso
+
+
+ Título de campo
+
+
+ Título de campo
+
+
+ El campo que está moviendo no se puede colocar en esa área del informe
+
+
+ Nombre del campo
+
+
+ Nombre del campo :
+
+
+ Tipo de campo
+
+
+ Filtrar
+
+
+ Suelta el filtro aquí
+
+
+ Filtrado
+
+
+ Filtros
+
+
+ Formato
+
+
+ Cadena de formato
+
+
+ Tipo de formato
+
+
+ Fórmula
+
+
+ Gran total
+
+
+ Grandes totales
+
+
+ Mas grande que
+
+
+ Mayor qué o igual a
+
+
+ Grupo
+
+
+ Ingrese el título para mostrar en el encabezado
+
+
+ Ingrese el título para el campo de grupo
+
+
+ Agrupamiento
+
+
+ Nombre del grupo
+
+
+ Horas
+
+
+ Índice
+
+
+ Intervalo por
+
+
+ Formato inválido.
+
+
+ Formato inválido.
+
+
+ No se puede agrupar esa selección.
+
+
+ JPEG
+
+
+ Etiqueta
+
+
+ Mostrar los elementos para los que la etiqueta
+
+
+ Izquierda
+
+
+ Menos que
+
+
+ Menor o igual
+
+
+ Línea
+
+
+ Carga
+
+
+ Cargando...
+
+
+ Administrar registros
+
+
+ Max
+
+
+ Consulta MDX
+
+
+ Medida
+
+
+ Miembro
+
+
+ mas cosas. Buscar para refinar aún más.
+
+
+ Min
+
+
+ Minutos
+
+
+ Meses
+
+
+ Más...
+
+
+ Artículos múltiples
+
+
+ Crea un nuevo informe
+
+
+ ¿Desea guardar los cambios en este informe?
+
+
+ ¡No se ha encontrado ningún formato!!!
+
+
+ Ingrese un valor
+
+
+ No hay coincidencias
+
+
+ No entre
+
+
+ No es igual
+
+
+ Sin valor
+
+
+ Nula
+
+
+ Número
+
+
+ Formato de número
+
+
+ de
+
+
+ Okay
+
+
+ Fuera de rango
+
+
+ Jerarquía de padres
+
+
+ PDF
+
+
+ Por ciento
+
+
+ Porcentaje
+
+
+ % del total de la columna principal
+
+
+ % de diferencia de
+
+
+ % del total general
+
+
+ % del total de la columna principal
+
+
+ % del total de la fila principal
+
+
+ % del total de padres
+
+
+ % del total de filas
+
+
+ PNG
+
+
+ Polar
+
+
+ Población StDev
+
+
+ Población Var
+
+
+ Producto
+
+
+ Cuarto
+
+
+ Cuarteles
+
+
+ Cuarto de año
+
+
+ Eliminar
+
+
+ ¿Seguro que quieres eliminar este informe?
+
+
+ Cambiar el nombre de un informe actual
+
+
+ Lista de informes
+
+
+ Reportar nombre:
+
+
+ Derecha
+
+
+ Fila
+
+
+ Drop row aquí
+
+
+ Filas
+
+
+ Totales acumulados
+
+
+ Informe de muestra
+
+
+ StDev de muestra
+
+
+ Var de muestra
+
+
+ Guardar como informe actual
+
+
+ Guardar un informe
+
+
+ Dispersión
+
+
+ Buscar
+
+
+ Segundos
+
+
+ Artículos seleccionados
+
+
+ Seleccionar grupos
+
+
+ Mostrar solo columnas de totales generales
+
+
+ Mostrar lista de campos
+
+
+ Mostrar totales generales
+
+
+ Mostrar solo totales generales
+
+
+ Mostrar tabla
+
+
+ Ordenar
+
+
+ Estándar
+
+
+ A partir de
+
+
+ Subtotales
+
+
+ Suma
+
+
+ Resumir valores por
+
+
+ Resumir valores por
+
+
+ SVG
+
+
+ Posición del símbolo
+
+
+ Total
+
+
+ Cierto
+
+
+ indefinida
+
+
+ Desagrupar
+
+
+ Por favor ingrese un nombre de registro válido !!!
+
+
+ Valor
+
+
+ Soltar valor aquí
+
+
+ Configuración del campo de valor
+
+
+ Valores
+
+
+ Mostrar los artículos para los cuales
+
+
+ Advertencia
+
+
+ Años
+
+
+ Eje múltiple
+
+
+ Configuración de tipo de gráfico
+
+
+ Tipo de gráfico
+
+
+ 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 peldaño
+
+
+ Área de paso
+
+
+ Área de spline
+
+
+ Spline
+
+
+ Columna 100% apilada
+
+
+ Barra 100% apilada
+
+
+ Área 100% apilada
+
+
+ Burbuja
+
+
+ Pareto
+
+
+ Radar
+
+
+ Editar campo calculado
+
+
+ Delete edited field information
+
+
+ Tarta
+
+
+ Pirámide
+
+
+ Rosquilla
+
+
+ Embudo
+
+
+ Apilado
+
+
+ Modo de ejes múltiples
+
+
+ Mediana
+
+
+ Abajo
+
+
+ Cima
+
+
+ Agregar condición
+
+
+ Añadir grupo
+
+
+ Y
+
+
+ Entre
+
+
+ Contiene
+
+
+ Eliminar grupo
+
+
+ Eliminar esta condición
+
+
+ EDITAR
+
+
+ Vacío
+
+
+ Termina con
+
+
+ Igual
+
+
+ Mas grande que
+
+
+ Mayor que o igual
+
+
+ En
+
+
+ Menos que
+
+
+ Menor o igual
+
+
+ No entre
+
+
+ No contiene
+
+
+ No vacío
+
+
+ No es igual
+
+
+ No en
+
+
+ O
+
+
+ Otros campos
+
+
+ ELIMINAR
+
+
+ Selecciona un campo
+
+
+ Seleccionar operador
+
+
+ Ingrese valor
+
+
+ Selecciona valor
+
+
+ Elija un rango
+
+
+ Seleccione una fecha
+
+
+ Comienza con
+
+
+ Vista de resumen
+
+
+ este campo es requerido
+
+
+ Cerrar
+
+
+ Cerrar
+
+
+ Cerrar
+
+
+ Salvar
+
+
+ Cancelar
+
+
+ Cargando...
+
+
+ Haz click para editar
+
+
+ Haz click para editar
+
+
+ Doble click para editar
+
+
+ Pequena
+
+
+ Pequena
+
+
+ Brilho
+
+
+ Navegar
+
+
+ Reduzir o zoom
+
+
+ Mais Zoom
+
+
+ Cortar e Transformar
+
+
+ Seleção de cultura
+
+
+ Anotação
+
+
+ Transformar
+
+
+ Afinar
+
+
+ Filtro
+
+
+ Brilho
+
+
+ Contraste
+
+
+ Matiz
+
+
+ Saturação
+
+
+ Exposição
+
+
+ Opacidade
+
+
+ Borrão
+
+
+ Família de fontes
+
+
+ Tamanho da fonte
+
+
+ Cor da fonte
+
+
+ Cor do Traço
+
+
+ Largura do traçado
+
+
+ Cor de preenchimento
+
+
+ OK
+
+
+ Cancelar
+
+
+ Reiniciar
+
+
+ Salvar
+
+
+ Desfazer
+
+
+ refazer
+
+
+ Padrão
+
+
+ Cromado
+
+
+ Fria
+
+
+ Esquentar
+
+
+ Escala de cinza
+
+
+ Sépia
+
+
+ Invertido
+
+
+ Personalizada
+
+
+ Quadrada
+
+
+ Círculo
+
+
+ Caneta
+
+
+ Linha
+
+
+ Retângulo
+
+
+ Elipse
+
+
+ Caminho
+
+
+ Adicione texto
+
+
+ Vire à esquerda
+
+
+ Vire à direita
+
+
+ Inversão horizontal
+
+
+ Inversão vertical
+
+
+ Audaciosa
+
+
+ Itálica
+
+
+ X-Pequeno
+
+
+ Pequena
+
+
+ Média
+
+
+ Grande
+
+
+ Extra grande
+
+
+ Duplicada
+
+
+ Remover
+
+
+ Editar texto
+
+
+ Começar
+
+
+ Fim
+
+
+ Nenhum
+
+
+ Seta Sólida
+
+
+ Nenhum
+
+
+ Bar
+
+
+ Seta
+
+
+ Seta Sólida
+
+
+ Círculo
+
+
+ Círculo Sólido
+
+
+ Quadrada
+
+
+ Quadrado Sólido
+
+
+ Confirmar salvar alterações
+
+
+ Deseja salvar as alterações feitas na imagem?
+
+
+ Sim
+
+
+ Não
+
+
+ cambiar el tamaño
+
+
+ ancho
+
+
+ altura
+
+
+ Mantener sin relación de aspecto
+
+
+ Mantener la relación de aspecto
+
+
+ volteo horizontal
+
+
+ voltereta vertical
+
+
+ transparencia
+
+
+ Arrastra y suelta tu imagen aquí o
+
+
+ Navega aquí...
+
+
+ Soporta:
+
+
+ marco
+
+
+ ninguno
+
+
+ estera
+
+
+ bisel
+
+
+ línea
+
+
+ recuadro
+
+
+ gancho
+
+
+ color
+
+
+ tamaño
+
+
+ compensar
+
+
+ radio
+
+
+ cantidad
+
+
+ W.
+
+
+ h
+
+
+ Borde
+
+
+ Sólido
+
+
+ Discontinuo
+
+
+ Punteado
+
+
+ Degradado de color
+
+
+ artículos
+
+
+ articulo
+
+
+ No hay tarjetas para mostrar
+
+
+ Min
+
+
+ Max
+
+
+ Tarjetas Seleccionadas
+
+
+ Agregar nueva tarjeta
+
+
+ Editar detalles de la tarjeta
+
+
+ Eliminar tarjeta
+
+
+ ¿Estás segura de que quieres eliminar esta tarjeta?
+
+
+ Salvar
+
+
+ Eliminar
+
+
+ Cancelar
+
+
+ si
+
+
+ No
+
+
+ Editora de texto enriquecido
+
+
+ Editora de rebajas
+
+
+ Lista numerada
+
+
+ Ninguna
+
+
+ Número
+
+
+ Alfa superior
+
+
+ Alfa inferior
+
+
+ Romano superior
+
+
+ Romano Inferior
+
+
+ Griega inferior
+
+
+ Lista con viñetas
+
+
+ Ninguna
+
+
+ Circulo
+
+
+ Cuadrada
+
+
+ Desct
+
+
+ Párrafo
+
+
+ Código
+
+
+ Cotización
+
+
+ Título 1
+
+
+ Título 2
+
+
+ Título 3
+
+
+ Título 4
+
+
+ Título 5
+
+
+ Título 6
+
+
+ Interfaz de usuario segoe
+
+
+ Arial
+
+
+ Georgia
+
+
+ Impacto
+
+
+ Tahoma
+
+
+ Tiempos nueva romana
+
+
+ Verdana
+
+
+ Alineaciones
+
+
+ Alinear a la izquierda
+
+
+ Alinear al centro
+
+
+ Alinear a la derecha
+
+
+ Alinear Justificar
+
+
+ Nombre de la fuente
+
+
+ Tamaño de fuente
+
+
+ Color de fuente
+
+
+ Color de fondo
+
+
+ Negrita
+
+
+ Itálico
+
+
+ Subrayar
+
+
+ Tachado
+
+
+ Formato claro
+
+
+ Limpiar todo
+
+
+ Cortar
+
+
+ Copiar
+
+
+ Pegar
+
+
+ Lista con viñetas
+
+
+ Lista numerada
+
+
+ Aumentar sangría
+
+
+ Disminuir sangría
+
+
+ Deshacer
+
+
+ Rehacer
+
+
+ Sobrescrito
+
+
+ Subíndice
+
+
+ Insertar hipervínculo
+
+
+ Enlace abierto
+
+
+ Editar enlace
+
+
+ Remover enlace
+
+
+ Insertar imagen
+
+
+ Reemplazar
+
+
+ Alinear
+
+
+ Captura de imagen
+
+
+ Eliminar
+
+
+ Insertar el link
+
+
+ Monitor
+
+
+ Texto alternativo
+
+
+ Cambiar tamaño
+
+
+ Maximizar
+
+
+ Maximizar
+
+
+ Minimizar
+
+
+ Minúscula
+
+
+ Minúscula
+
+
+ Impresión
+
+
+ Formatos
+
+
+ Vista de código
+
+
+ Avance
+
+
+ Vista lateral
+
+
+ Insertar codigo
+
+
+ Insertar codigo
+
+
+ Título
+
+
+ Dirección web
+
+
+ Ingrese un título
+
+
+ http://ejemplo.com
+
+
+ Abrir enlace en una nueva ventana
+
+
+ Insertar el link
+
+
+ Insertar
+
+
+ Cancelar
+
+
+ Actualizar
+
+
+ Insertar imagen
+
+
+ También puede proporcionar un enlace desde la web
+
+
+ Proporcione una URL para su imagen
+
+
+ Suelta la imagen aquí o navega para subir
+
+
+ Haga clic aquí para subir
+
+
+ Texto alternativo
+
+
+ Texto alternativo
+
+
+ Buscar
+
+
+ Haga clic aquí para cargar
+
+
+ Suelta un archivo de vídeo o busca para subirlo
+
+
+ Pegue el código incrustado aquí
+
+
+ URL web
+
+
+ Código incorporado
+
+
+ Ancho
+
+
+ Altura
+
+
+ http://example.com/image.png
+
+
+ Subtítulo
+
+
+ Tamaño de la imagen
+
+
+ Altura
+
+
+ Anchura
+
+
+ Ingrese texto
+
+
+ Insertar tabla
+
+
+ Insertar tabla
+
+
+ Anchura
+
+
+ Relleno Celular
+
+
+ Relleno Celular
+
+
+ Número de columnas
+
+
+ Número de filas
+
+
+ Filas de mesa
+
+
+ Columnas de mesa
+
+
+ Alineación horizontal de celda de tabla
+
+
+ Alineación vertical de celda de tabla
+
+
+ Crear mesa
+
+
+ Eliminar tabla
+
+
+ Encabezado de tabla
+
+
+ Eliminar tabla
+
+
+ Fondo de celda de tabla
+
+
+ Propiedades de edición de tabla
+
+
+ Estilos
+
+
+ Insertar columna a la izquierda
+
+
+ Insertar columna a la derecha
+
+
+ Eliminar columna
+
+
+ Insertar fila antes
+
+
+ Insertar fila después
+
+
+ Borrar fila
+
+
+ Editar tabla
+
+
+ Bóveda
+
+
+ Columna
+
+
+ Insertar el link
+
+
+ Editar imagen
+
+
+ Alinear a la izquierda
+
+
+ Alinear al centro
+
+
+ Alinear a la derecha
+
+
+ Alinear Justificar
+
+
+ En línea
+
+
+ Descanso
+
+
+ Insertar fila antes
+
+
+ Insertar fila después
+
+
+ Borrar fila
+
+
+ Insertar columna a la izquierda
+
+
+ Insertar columna a la derecha
+
+
+ Eliminar columna
+
+
+ Alinear la parte superior
+
+
+ Alinear Medio
+
+
+ Alinear la parte inferior
+
+
+ Fronteras discontinuas
+
+
+ Filas Alternas
+
+
+ Pegar formato
+
+
+ Elija la acción de formateo
+
+
+ Texto sin formato
+
+
+ Limpiar
+
+
+ Mantener
+
+
+ Okay
+
+
+ Cancelar
+
+
+ Reemplazar
+
+
+ Remover
+
+
+ Monitora
+
+
+ Reemplazar
+
+
+ Alinear
+
+
+ Remover
+
+
+ Monitora
+
+
+ Dimensión
+
+
+ X
+
+
+ Y
+
+
+ W
+
+
+ H
+
+
+ Traer al frente
+
+
+ Copiar
+
+
+ Cortar
+
+
+ Grupo
+
+
+ Agrupamiento
+
+
+ Avanzar
+
+
+ Orden
+
+
+ Pegar
+
+
+ Rehacer
+
+
+ Seleccionar todo
+
+
+ Enviar atrás
+
+
+ Enviar al fondo
+
+
+ Deshacer
+
+
+ Desagrupar
+
+
+ No hay registros que mostrar
+
+
+ cierto
+
+
+ falso
+
+
+ Datos de filtro no válidos
+
+
+ Arrastre el encabezado de una columna aquí para agrupar su columna
+
+
+ Haga clic aquí para desagrupar
+
+
+ La agrupación está deshabilitada para esta columna
+
+
+ celda de barra de filtro
+
+
+ DataSource no debe estar vacío en la carga inicial ya que las columnas se generan a partir de dataSource en AutoGenerate Column Grid
+
+
+ Añadir
+
+
+ Editar
+
+
+ Cancelar
+
+
+ Actualizar
+
+
+ Eliminar
+
+
+ Impresión
+
+
+ Exportar PDF
+
+
+ Exportación Excel
+
+
+ Exportación de palabras
+
+
+ Exportación CSV
+
+
+ Buscar
+
+
+ Columnas
+
+
+ Guardar
+
+
+ articulo
+
+
+ artículos
+
+
+ No hay registros seleccionados para la operación de edición
+
+
+ No hay registros seleccionados para la operación de eliminación
+
+
+ Guardar
+
+
+ Aceptar
+
+
+ Cancelar
+
+
+ Detalles de
+
+
+ Añadir nuevo récord
+
+
+ ¿Seguro que quieres guardar los cambios?
+
+
+ Los cambios no guardados se perderán. Estás seguro de que quieres continuar?
+
+
+ ¿Estás seguro de que deseas eliminar el registro?
+
+
+ ¿Estás seguro de que deseas cancelar los cambios?
+
+
+ Elegir columna
+
+
+ columnas de búsqueda
+
+
+ No se encontraron coincidencias
+
+
+ Filtrar
+
+
+ Limpiar
+
+
+ Comienza con
+
+
+ Termina con
+
+
+ Contiene
+
+
+ Igual
+
+
+ No es igual
+
+
+ Menos que
+
+
+ Menor o igual
+
+
+ Mas grande que
+
+
+ Mayor que o igual
+
+
+ Elige una fecha
+
+
+ Ingrese el valor
+
+
+ Copiar
+
+
+ Agrupar por esta columna
+
+
+ Desagrupar por esta columna
+
+
+ Ajuste automático de todas las columnas
+
+
+ Ajustar automáticamente esta columna
+
+
+ Exportar
+
+
+ Primera página
+
+
+ Última página
+
+
+ Pagina anterior
+
+
+ Siguiente página
+
+
+ Orden ascendente
+
+
+ Orden descendiente
+
+
+ Editar registro
+
+
+ Eliminar el registro
+
+
+ Filtrar
+
+
+ Seleccionar todo
+
+
+ Espacios en blanco
+
+
+ Cierto
+
+
+ Falso
+
+
+ No se encontraron coincidencias
+
+
+ Limpiar filtro
+
+
+ Filtros de número
+
+
+ Filtros de texto
+
+
+ Filtros de fecha
+
+
+ Filtros de fecha y hora
+
+
+ Match Case
+
+
+ Entre
+
+
+ Filtro personalizado
+
+
+ Ingrese el valor
+
+
+ Elige una fecha
+
+
+ Y
+
+
+ O
+
+
+ Mostrar filas donde:
+
+
+ Casilla de fila
+
+
+ Icono de filtro
+
+
+ Icono de menú de columna
+
+
+ Botón de grupo
+
+
+ Botón Desagrupar
+
+
+ Encabezado de la columna
+
+
+ Casilla de filtro
+
+
+ Casilla de encabezado
+
+
+ Ordenar
+
+
+ Ascendente
+
+
+ Descendente
+
+
+ Ninguna
+
+
+ Es una plantilla
+
+
+ Presione ENTER para
+
+
+ ¡Pulse Alt Down para abrir el menú del filtro
+
+
+ ¡Pulse Alt Down para abrir el menú de columna
+
+
+ Pulse Ctrl + espacio para agrupar
+
+
+ es la celda de subtítulos de grupo
+
+
+ encabezado de columna indefinido
+
+
+ ¡Es la Columna de Comando
+
+
+ ordenar la columna agrupada
+
+
+ encabezado de columna vacío indefinido
+
+
+ cerrar
+
+
+ operador de filtro de agua
+
+
+ Valor de filtro
+
+
+ Página
+
+
+ Páginas
+
+
+ de
+
+
+ ¡Mensaje externo del localizador
+
+
+ Páginas
+
+
+ ¡Menú desplegable del buscapersonas
+
+
+ Ir a página
+
+
+ {0} de {1} páginas
+
+
+ ({0} artículos)
+
+
+ Ir a la primera página
+
+
+ Ir a la última página
+
+
+ Ir a la página siguiente
+
+
+ Regresar a la pagina anterior
+
+
+ Ir al siguiente localizador
+
+
+ Ir al localizador anterior
+
+
+ Artículos por página
+
+
+ Artículos
+
+
+ Todos
+
+
+ artículos
+
+
+ Contar
+
+
+ Diario
+
+
+ Dias)
+
+
+ Final
+
+
+ cada
+
+
+ primero
+
+
+ Cuarto
+
+
+ Último
+
+
+ Mes
+
+
+ Expansor de mes
+
+
+ Mensual
+
+
+ Posición del mes
+
+
+ Meses)
+
+
+ Mes Semana
+
+
+ Nunca
+
+
+ Ninguna
+
+
+ Repetir en
+
+
+ Día
+
+
+ Repetir
+
+
+ Repite cada
+
+
+ Intervalo de repetición
+
+
+ Segundo
+
+
+ dias)
+
+
+ meses)
+
+
+ en
+
+
+ Repite
+
+
+ veces)
+
+
+ hasta
+
+
+ semanas)
+
+
+ años)
+
+
+ Tercero
+
+
+ Hasta
+
+
+ Semanal
+
+
+ Semanas)
+
+
+ Expansor de año
+
+
+ Anual
+
+
+ Años)
+
+
+ Añadir título
+
+
+ Agenda
+
+
+ Alerta
+
+
+ Todo el dia
+
+
+ Comience desde
+
+
+ Los eventos no se pueden programar dentro del rango de tiempo bloqueado.
+
+
+ Cancelar
+
+
+ Cancelar
+
+
+ Cerca
+
+
+ La duración del evento debe ser más corta que la frecuencia con la que ocurre. Acorte la duración o cambie el patrón de recurrencia en el editor de eventos de recurrencia.
+
+
+ Crear
+
+
+ Día
+
+
+ Eliminar
+
+
+ Eliminar
+
+
+ ¿Seguro que quieres eliminar este evento?
+
+
+ Este evento
+
+
+ ¿Estás seguro de que deseas eliminar los eventos seleccionados?
+
+
+ Eliminar múltiples eventos
+
+
+ Serie completa
+
+
+ Eliminar evento
+
+
+ Descripción
+
+
+ Editar
+
+
+ ¿Cómo le gustaría cambiar la cita en la serie?
+
+
+ Este evento
+
+
+ Eventos siguientes
+
+
+ Editar recurrencia
+
+
+ Serie completa
+
+
+ Editar evento
+
+
+ No hay eventos programados para este día.
+
+
+ Final
+
+
+ Hora de finalización
+
+
+ Termina en
+
+
+ Zona horaria final
+
+
+ El valor de la fecha ingresada no es válido.
+
+
+ Ubicación
+
+
+ busca más
+
+
+ Mes
+
+
+ Agenda del mes
+
+
+ más
+
+
+ Más detalles
+
+
+ Nuevo evento
+
+
+ próximo
+
+
+ No
+
+
+ No hay eventos
+
+
+ No hay registros
+
+
+ (Sin título)
+
+
+ Ocurrencia
+
+
+ Okay
+
+
+ Anterior
+
+
+ Reaparición
+
+
+ Repetir
+
+
+ Repite
+
+
+ Dos ocurrencias del mismo evento no pueden ocurrir en el mismo día.
+
+
+ Salvar
+
+
+ Salvar
+
+
+ Artículos seleccionados
+
+
+ zona horaria de búsqueda
+
+
+ Serie
+
+
+ ¿Desea cancelar los cambios realizados en instancias específicas de esta serie y volver a vincularlos con toda la serie?
+
+
+ Mostrando eventos hasta
+
+
+ comienzo
+
+
+ Hora de inicio
+
+
+ La fecha de finalización seleccionada ocurre antes de la fecha de inicio.
+
+
+ Zona horaria de inicio
+
+
+ Tema
+
+
+ Día de la línea de tiempo
+
+
+ Mes de la línea de tiempo
+
+
+ Semana de la línea de tiempo
+
+
+ Semana laboral cronológica
+
+
+ Cronología Año
+
+
+ Zona horaria
+
+
+ Título
+
+
+ Hoy
+
+
+ Semana
+
+
+ Agenda de la semana
+
+
+ Semana de trabajo
+
+
+ Agenda de la semana laboral
+
+
+ El patrón de recurrencia no es válido.
+
+
+ si
+
+
+ Año
+
+
+ Cerca
+
+
+ diapositiva anterior
+
+
+ siguiente diapositiva
+
+
+ diapositiva
+
+
+ de
+
+
+ Detener la animación automática
+
+
+ Iniciar animación automática
+
+
+ diapositivas
+
+
+ Visor de PDF
+
+
+ Cancelar
+
+
+ Descargar archivo
+
+
+ Descargar
+
+
+ Este documento está protegido por contraseña. porfavor ingrese una contraseña.
+
+
+ Archivo corrupto
+
+
+ El archivo está dañado y no se puede abrir.
+
+
+ La página de ajuste
+
+
+ Ajuste ancho
+
+
+ Automática
+
+
+ Mostrar primera página
+
+
+ Contraseña incorrecta. Inténtalo de nuevo.
+
+
+ Mostrar página siguiente
+
+
+ Mostrar página anterior
+
+
+ Aceptar
+
+
+ Abrir documento
+
+
+ Número de página actual
+
+
+ Mostrar la última página
+
+
+ Enfocar
+
+
+ acercarse
+
+
+ Disminuir el zoom
+
+
+ Miniaturas de página
+
+
+ Marcadores
+
+
+ Imprimir archivo
+
+
+ Se requiere contraseña
+
+
+ Copiar
+
+
+ Herramienta de selección de texto
+
+
+ Modo panorámico
+
+
+ Buscar texto
+
+
+ Encuentra en el documento
+
+
+ Caso de partido
+
+
+ Aplicar
+
+
+ Ir a la página
+
+
+ El visor ha terminado de buscar el documento. No se encontraron más coincidencias
+
+
+ No se encontró texto
+
+
+ Deshacer
+
+
+ Rehacer
+
+
+ Agregar o editar anotaciones
+
+
+ Subrayar el texto
+
+
+ Subrayar texto
+
+
+ Texto tachado
+
+
+ Eliminar anotación
+
+
+ Opacidad
+
+
+ Cambiar el color
+
+
+ Cambiar opacidad
+
+
+ Realce
+
+
+ Subrayar
+
+
+ tachado
+
+
+ El servicio web no está escuchando. PDF Viewer depende del servicio web para todas sus características. Inicie el servicio web para continuar.
+
+
+ Se ha encontrado un error del lado del cliente. Compruebe los encabezados personalizados proporcionados en la propiedad AjaxRequestSettings y los métodos de acción web en la propiedad ServerActionSettings.
+
+
+ Abierta
+
+
+ Primera página
+
+
+ Pagina anterior
+
+
+ Siguiente página
+
+
+ Última página
+
+
+ acercarse
+
+
+ Disminuir el zoom
+
+
+ Selección
+
+
+ Pan
+
+
+ Impresión
+
+
+ Buscar
+
+
+ Editar anotación
+
+
+ Grosor de la línea
+
+
+ Propiedades de linea
+
+
+ Flecha de inicio
+
+
+ Flecha final
+
+
+ Estilo de línea
+
+
+ Color de relleno
+
+
+ Color de linea
+
+
+ Ninguna
+
+
+ Flecha abierta
+
+
+ Flecha cerrada
+
+
+ Flecha redonda
+
+
+ Flecha cuadrada
+
+
+ Flecha de diamante
+
+
+ Cortar
+
+
+ Pegar
+
+
+ Eliminar
+
+
+ Propiedades
+
+
+ Agregar sello
+
+
+ Agregar formas
+
+
+ Cambiar color de trazo
+
+
+ Cambiar grosor del borde
+
+
+ Añadir línea
+
+
+ Agregar flecha
+
+
+ Añadir rectángulo
+
+
+ Agregar círculo
+
+
+ Agregar polígono
+
+
+ Añadir comentarios
+
+
+ Comentarios
+
+
+ Sin comentarios aún
+
+
+ Aceptado
+
+
+ Terminado
+
+
+ Cancelado
+
+
+ Rechazada
+
+
+ Longitud del líder
+
+
+ Ratio de escala
+
+
+ Calibrar
+
+
+ Calibrar distancia
+
+
+ Calibrar perímetro
+
+
+ Área de calibración
+
+
+ Calibrar radio
+
+
+ Calibrar volumen
+
+
+ Profundidad
+
+
+ Cerrada
+
+
+ Redondo
+
+
+ Cuadrada
+
+
+ Diamante
+
+
+ Editar
+
+
+ Comentario
+
+
+ Panel de comentarios
+
+
+ Establecer estado
+
+
+ Enviar
+
+
+ Página
+
+
+ Añadir un comentario
+
+
+ Agregar una respuesta
+
+
+ Importar anotaciones
+
+
+ Anotaciones de exportación
+
+
+ Añadir
+
+
+ Limpiar
+
+
+ Negrito
+
+
+ Itálica
+
+
+ Tachado
+
+
+ Subraya
+
+
+ Sobrescrito
+
+
+ Subíndice
+
+
+ Alinear a la izquierda
+
+
+ Alinear a la derecha
+
+
+ Centrar
+
+
+ Justificar
+
+
+ Color de fuente
+
+
+ Texto alineado
+
+
+ Estilo de fuente
+
+
+ Dibujar firma
+
+
+ Crear
+
+
+ Familia tipográfica
+
+
+ Tamaño de fuente
+
+
+ Texto libre
+
+
+ Tipo de archivo JSON o nombre de archivo no válido; seleccione un archivo JSON válido
+
+
+ El archivo JSON importado no se encuentra en la ubicación deseada
+
+
+ La acción de exportar anotaciones ha fallado; asegúrese de agregar anotaciones correctamente
+
+
+ DIBUJAR
+
+
+ ESCRIBE
+
+
+ SUBIR
+
+
+ NAVEGAR
+
+
+ Guardar firma
+
+
+ Introduzca su nombre
+
+
+ Dinámica
+
+
+ Negocio estándar
+
+
+ Sello personalizado
+
+
+ Revisada
+
+
+ Revisadas
+
+
+ Recibida
+
+
+ Aprobada
+
+
+ Confidencial
+
+
+ No aprovado
+
+
+ Testigo
+
+
+ Iniciales aqui
+
+
+ Firma aqui
+
+
+ Borrador
+
+
+ Final
+
+
+ Para divulgación pública
+
+
+ No para divulgación pública
+
+
+ Para comentarios
+
+
+ Vacía
+
+
+ Resultados preliminares
+
+
+ Sólo información
+
+
+ Enviar formulario
+
+
+ de
+
+
+ Este visor de PDF requiere procesamiento del lado del servidor para procesar los archivos PDF a través del servicio web. Debe configurar ServiceURL para continuar con el visor de PDF
+
+
+ Cerrar
+
+
+ Agregar firma
+
+
+ dibujar tinta
+
+
+ Mesa
+
+
+ Fila
+
+
+ Célula
+
+
+ Okay
+
+
+ Cancelar
+
+
+ Talla
+
+
+ Ancho preferido
+
+
+ Puntos
+
+
+ Por ciento
+
+
+ Medir en
+
+
+ Alineación
+
+
+ Izquierda
+
+
+ Centrar
+
+
+ Derecho
+
+
+ Justificar
+
+
+ Sangría desde la izquierda
+
+
+ Bordes y sombreado
+
+
+ Opciones
+
+
+ Especificar altura
+
+
+ Al menos
+
+
+ Exactamente
+
+
+ La altura de la fila es
+
+
+ Permitir que la fila se rompa entre páginas
+
+
+ Repita como fila de encabezado en la parte superior de cada página
+
+
+ Alineamiento vertical
+
+
+ Parte superior
+
+
+ Fondo
+
+
+ Márgenes de celda predeterminados
+
+
+ Espaciado de celda predeterminado
+
+
+ Permitir espacio entre celdas
+
+
+ Márgenes celulares
+
+
+ Igual que toda la mesa
+
+
+ Fronteras
+
+
+ Ninguna
+
+
+ Estilo
+
+
+ Anchura
+
+
+ Altura
+
+
+ Letra
+
+
+ Tabloide
+
+
+ Legal
+
+
+ Declaración
+
+
+ Ejecutivo
+
+
+ A3
+
+
+ A4
+
+
+ A5
+
+
+ B4
+
+
+ B5
+
+
+ Tamaño personalizado
+
+
+ Diferentes pares e impares
+
+
+ Primera página diferente
+
+
+ Desde el borde
+
+
+ Encabezamiento
+
+
+ Pie de página
+
+
+ Márgenes
+
+
+ Papel
+
+
+ Diseño
+
+
+ Orientación
+
+
+ Paisaje
+
+
+ Retrato
+
+
+ Mostrar números de página
+
+
+ Alinear a la derecha los números de página.
+
+
+ Nada
+
+
+ Tabulador
+
+
+ Mostrar niveles
+
+
+ Use hipervínculos en lugar de números de página
+
+
+ Crear tabla de contenido a partir de
+
+
+ Estilos
+
+
+ Estilos disponibles
+
+
+ Nivel de TOC
+
+
+ Bóveda
+
+
+ Título 1
+
+
+ Título 2
+
+
+ Título 3
+
+
+ Título 4
+
+
+ Título 5
+
+
+ Título 6
+
+
+ Párrafo de lista
+
+
+ Normal
+
+
+ Niveles de esquema
+
+
+ Campos de entrada de tabla
+
+
+ Modificar
+
+
+ Color
+
+
+ Ajuste
+
+
+ Caja
+
+
+ Todos
+
+
+ Personalizado
+
+
+ Avance
+
+
+ Sombreado
+
+
+ Llenar
+
+
+ Aplicar para
+
+
+ Propiedades de tabla
+
+
+ Opciones de celda
+
+
+ Opciones de tabla
+
+
+ Insertar tabla
+
+
+ Número de columnas
+
+
+ Número de filas
+
+
+ Texto a mostrar
+
+
+ Habla a
+
+
+ Insertar hipervínculo
+
+
+ Editar hipervínculo
+
+
+ Insertar
+
+
+ General
+
+
+ Sangría
+
+
+ Antes del texto
+
+
+ Especial
+
+
+ Primera linea
+
+
+ Colgando
+
+
+ Después del texto
+
+
+ Por
+
+
+ antes de
+
+
+ Espaciado entre líneas
+
+
+ Después
+
+
+ A
+
+
+ Múltiple
+
+
+ Espaciado
+
+
+ Definir nueva lista multinivel
+
+
+ Nivel de lista
+
+
+ Elija el nivel para modificar
+
+
+ Nivel
+
+
+ Formato numérico
+
+
+ Estilo numérico para este nivel
+
+
+ Ingrese el formato para el número
+
+
+ Empieza en
+
+
+ Reiniciar lista después
+
+
+ Posición
+
+
+ Sangría de texto en
+
+
+ Alineado a las
+
+
+ Seguir número con
+
+
+ Carácter de tabulación
+
+
+ Espacio
+
+
+ Arábica
+
+
+ UpRoman
+
+
+ LowRoman
+
+
+ UpLetter
+
+
+ Letra baja
+
+
+ Número
+
+
+ Cero a la izquierda
+
+
+ Bala
+
+
+ Ordinal
+
+
+ Texto ordinal
+
+
+ Para el este
+
+
+ No reiniciar
+
+
+ Fuente
+
+
+ Estilo de fuente
+
+
+ Estilo subrayado
+
+
+ Color de fuente
+
+
+ Efectos
+
+
+ Tachado
+
+
+ Sobrescrito
+
+
+ Subíndice
+
+
+ Tachado doble
+
+
+ Regular
+
+
+ Negrita
+
+
+ Itálico
+
+
+ Cortar
+
+
+ Copiar
+
+
+ Pegar
+
+
+ Hipervínculo
+
+
+ Abrir hipervínculo
+
+
+ Copiar hipervínculo
+
+
+ Eliminar hipervínculo
+
+
+ Párrafo
+
+
+ Vinculado (párrafo y personaje)
+
+
+ Personaje
+
+
+ Combinar células
+
+
+ Insertar arriba
+
+
+ Insertar a continuación
+
+
+ Insertar a la izquierda
+
+
+ Insertar a la derecha
+
+
+ Eliminar
+
+
+ Eliminar tabla
+
+
+ Borrar fila
+
+
+ Eliminar columna
+
+
+ Nombre del archivo
+
+
+ Tipo de formato
+
+
+ Salvar
+
+
+ Navegación
+
+
+ Resultados
+
+
+ Reemplazar
+
+
+ Reemplaza todo
+
+
+ Reemplazamos todo
+
+
+ Encontrar
+
+
+ No hay coincidencias
+
+
+ Todo listo
+
+
+ Resultado
+
+
+ de
+
+
+ instancias
+
+
+ con
+
+
+ Haga clic para seguir el enlace
+
+
+ Continuar numerando
+
+
+ Nombre del marcador
+
+
+ Cerca
+
+
+ Reiniciar en
+
+
+ Propiedades
+
+
+ Nombre
+
+
+ Tipo de estilo
+
+
+ Estilo basado en
+
+
+ Estilo para el siguiente párrafo
+
+
+ Formateo
+
+
+ Numeración y viñetas
+
+
+ Numeración
+
+
+ Campo de actualización
+
+
+ Editar campo
+
+
+ Marcador
+
+
+ Configurar página
+
+
+ No se encontraron marcadores
+
+
+ Formato
+
+
+ Crear nuevo estilo
+
+
+ Modificar estilo
+
+
+ Nuevo
+
+
+ Balas
+
+
+ Usar marcadores
+
+
+ Tabla de contenido
+
+
+ Autoajuste
+
+
+ Autoajuste al contenido
+
+
+ Autoajustar a la ventana
+
+
+ Ancho de columna fijo
+
+
+ Reiniciar
+
+
+ Caso de partido
+
+
+ Palabras completas
+
+
+ Añadir
+
+
+ Ir
+
+
+ Buscar
+
+
+ Reemplazar con
+
+
+ TOC 1
+
+
+ TOC 2
+
+
+ TOC 3
+
+
+ TOC 4
+
+
+ TOC 5
+
+
+ TOC 6
+
+
+ TOC 7
+
+
+ TOC 8
+
+
+ TOC 9
+
+
+ De derecha a izquierda
+
+
+ De izquierda a derecha
+
+
+ Dirección
+
+
+ Dirección de la mesa
+
+
+ Sangría desde la derecha
+
+
+ No agregue espacio entre los párrafos de los mismos estilos
+
+
+ La contraseña no coincide
+
+
+ Restringir edición
+
+
+ Restricciones de formato
+
+
+ Permitir formateo
+
+
+ Edición de restricciones
+
+
+ Solo lectura
+
+
+ Excepciones (opcional)
+
+
+ Seleccione partes del documento y elija los usuarios que pueden editarlos libremente.
+
+
+ Todo el mundo
+
+
+ Más usuarios
+
+
+ Agregar usuarios
+
+
+ Sí, comience a aplicar la protección
+
+
+ Comience a hacer cumplir la protección
+
+
+ Ingresar usuario
+
+
+ Los usuarios
+
+
+ Ingrese nueva clave
+
+
+ Vuelva a ingresar la nueva contraseña para confirmar
+
+
+ Sus permisos
+
+
+ Este documento está protegido contra la edición no intencional.
+
+
+ Puede formatear texto solo con ciertos estilos.
+
+
+ Detener la protección
+
+
+ Contraseña
+
+
+ Editor de ortografía
+
+
+ Ortografía
+
+
+ Corrector ortográfico
+
+
+ Subrayar errores
+
+
+ Ignorar
+
+
+ Ignora todo
+
+
+ Añadir al diccionario
+
+
+ Cambio
+
+
+ Cambia todo
+
+
+ Sugerencias
+
+
+ La contraseña es incorrecta
+
+
+ Error al establecer conexión con el servidor web
+
+
+ Destacar las regiones que puedo editar
+
+
+ Mostrar todas las regiones que puedo editar
+
+
+ Buscar la siguiente región que puedo editar
+
+
+ Mantener el formato de origen
+
+
+ Hacer coincidir el formato de destino
+
+
+ Solo texto
+
+
+ Comentarios
+
+
+ Escribe tu comentario
+
+
+ Enviar
+
+
+ Respuesta
+
+
+ Nuevo comentario
+
+
+ Editar
+
+
+ Resolver
+
+
+ Reabrir
+
+
+ No hay comentarios en este documento
+
+
+ más
+
+
+ escribe tu comentario aquí
+
+
+ Siguiente comentario
+
+
+ Comentario anterior
+
+
+ Comentarios no publicados
+
+
+ Comentarios agregados no publicados. Si continúa, ese comentario será descartado.
+
+
+ ¡No se encontró rumbo!
+
+
+ Este documento no tiene encabezados. Agregue encabezados e intente nuevamente.
+
+
+ Mas opciones
+
+
+ Haga clic para ver este comentario
+
+
+ Campo de formulario desplegable
+
+
+ Artículos desplegables
+
+
+ Artículos en la lista desplegable
+
+
+ AÑADIR
+
+
+ ELIMINAR
+
+
+ Configuraciones de campo
+
+
+ Información sobre herramientas
+
+
+ Desplegable habilitado
+
+
+ Campo de formulario de casilla de verificación
+
+
+ Casilla de verificación
+
+
+ Auto
+
+
+ Valor por defecto
+
+
+ Sin revisar
+
+
+ Comprobado
+
+
+ Casilla de verificación habilitada
+
+
+ Campo de formulario de texto
+
+
+ Tipo
+
+
+ Texto predeterminado
+
+
+ Longitud máxima
+
+
+ Formato de texto
+
+
+ Completar habilitado
+
+
+ Número predeterminado
+
+
+ Fecha predeterminada
+
+
+ Formato de fecha
+
+
+ Esta acción no se marcará como cambio. ¿Quieres continuar?
+
+
+ No se puede rastrear
+
+
+ Aceptar
+
+
+ Rechazar
+
+
+ Cambios previos
+
+
+ Próximos cambios
+
+
+ Insertado
+
+
+ Eliminado
+
+
+ Cambios
+
+
+ Aceptar todo
+
+
+ Rechazar todo
+
+
+ Sin cambios
+
+
+ Aceptar cambios
+
+
+ Rechazar cambios
+
+
+ Usuario
+
+
+ Ver
+
+
+ Desproteger documento
+
+
+ Solo puede completar formularios en esta región.
+
+
+ Control de viudas / huérfanos
+
+
+ Sangrías y espaciado
+
+
+ Saltos de línea y página
+
+
+ Mantener las líneas juntas
+
+
+ Ignorar una vez
+
+
+ Mantener con el siguiente
+
+
+ Texto de información en pantalla
+
+
+ Mantener el formato de origen
+
+
+ Hacer coincidir el formato de destino
+
+
+ Solo puede insertar comentarios en esta región.
+
+
+ El número de filas debe estar entre 1 y 32767
+
+
+ El número de columnas debe estar entre 1 y 63
+
+
+ Información
+
+
+ Punto
+
+
+ Brecha pequeña de guión
+
+
+ Guion punto
+
+
+ Delgado Grueso Pequeño Espacio
+
+
+ Grueso Delgado Pequeño Espacio
+
+
+ Grueso Delgado Medio Espacio
+
+
+ Grueso Delgado Gran Brecha
+
+
+ Solo ondulado
+
+
+ doble ondulado
+
+
+ Recuadro
+
+
+ Brecha grande de guión
+
+
+ Guión Punto Punto
+
+
+ Triple
+
+
+ Delgado Grueso Delgado Pequeño Espacio
+
+
+ Delgado Grueso Delgado Medio Espacio
+
+
+ Delgado Grueso Delgado Gran Espacio
+
+
+ Guión punto acariciado
+
+
+ Grabar3D
+
+
+ Grueso
+
+
+ Comienzo
+
+
+ Relieve 3D
+
+
+ Delgado Grueso Gran Brecha
+
+
+ Delgado Grueso Medio Espacio
+
+
+ Texto normal
+
+
+ Fecha
+
+
+ Mayúsculas
+
+
+ Minúsculas
+
+
+ PrimeraCapital
+
+
+ Titulo del caso
+
+
+ Moverse de
+
+
+ Mover a
+
+
+ píxeles
+
+
+ Puede editar en esta región.
+
+
+Salto de sección (Página siguiente)
+
+
+Salto de página
+
+
+Salto de columna
+
+
+Una
+
+
+Dos
+
+
+Tres
+
+
+Preajustes
+
+
+columnas
+
+
+Divide tu texto en dos o más columnas
+
+
+Línea entre columna
+
+
+Ancho y espaciado
+
+
+Ancho de columna igual
+
+
+Columna
+
+
+Salto de sección (continuo)
+
+
+ Debido a la política de seguridad del navegador, la función de pegar desde el portapapeles del sistema está restringida. Alternativamente, use el atajo de teclado
+
+
+ no volver a mostrar
+
+
+columnas
+
+
+Muestra los caracteres ocultos como espacios, tabulaciones, marcas de párrafo y saltos. (Ctrl + *)
+
+
+ Regular
+
+
+ Negrita cursiva
+
+
+ Nuevo
+
+
+ Abierto
+
+
+ Deshacer
+
+
+ Rehacer
+
+
+ Imagen
+
+
+ Mesa
+
+
+ Enlace
+
+
+ Marcador
+
+
+ Tabla de contenido
+
+
+ TÍTULO - - - - 1
+
+
+ TÍTULO - - - - 2
+
+
+ TÍTULO - - - - 3
+
+
+ Encabezamiento
+
+
+ Pie de página
+
+
+ Configurar página
+
+
+ Número de página
+
+
+ Descanso
+
+
+ Encontrar
+
+
+ Portapapeles local
+
+
+ Restringir edición
+
+
+ Subir desde la computadora
+
+
+ Por URL
+
+
+ Encabezado y pie de página
+
+
+ Opciones
+
+
+ Niveles
+
+
+ Primera página diferente
+
+
+ Encabezado y pie de página diferentes para páginas pares e impares.
+
+
+ Diferentes páginas pares e impares
+
+
+ Enlace a anterior
+
+
+ Encabezado y pie de página diferentes para la primera página.
+
+
+ Posición
+
+
+ Encabezado desde arriba
+
+
+ Pie de página desde abajo
+
+
+ Distancia desde la parte superior de la página hasta la parte superior del encabezado.
+
+
+ Distancia desde la parte inferior de la página hasta la parte inferior del pie de página.
+
+
+ Relación de aspecto
+
+
+ W
+
+
+ H
+
+
+ Anchura
+
+
+ Altura
+
+
+ Texto alternativo
+
+
+ Texto
+
+
+ Párrafo
+
+
+ Llenar
+
+
+ Color de relleno
+
+
+ Estilo de borde
+
+
+ Fronteras exteriores
+
+
+ Todas las fronteras
+
+
+ Bordes interiores
+
+
+ Borde izquierdo
+
+
+ Borde vertical interior
+
+
+ Borde derecho
+
+
+ Borde superior
+
+
+ Borde horizontal interior
+
+
+ Borde inferior
+
+
+ Color del borde
+
+
+ Ancho del borde
+
+
+ Célula
+
+
+ Combinar células
+
+
+ Insertar / Eliminar
+
+
+ Insertar columnas a la izquierda
+
+
+ Insertar columnas a la derecha
+
+
+ Insertar filas arriba
+
+
+ Insertar filas debajo
+
+
+ Eliminar filas
+
+
+ Eliminar columnas
+
+
+ Margen de celda
+
+
+ Parte superior
+
+
+ Fondo
+
+
+ Izquierda
+
+
+ Derecho
+
+
+ Texto alineado
+
+
+ Alinear la parte superior
+
+
+ Alinear el fondo
+
+
+ Alinear al centro
+
+
+ Número de niveles de encabezado o esquema que se mostrarán en la tabla de contenido.
+
+
+ Mostrar números de página
+
+
+ Mostrar números de página en la tabla de contenido.
+
+
+ Alinear a la derecha los números de página.
+
+
+ Alinee a la derecha los números de página en la tabla de contenido.
+
+
+ Usar hipervínculos
+
+
+ Use hipervínculos en lugar de números de página.
+
+
+ Fuente
+
+
+ Tamaño de fuente
+
+
+ Color de fuente
+
+
+ Color de resaltado de texto
+
+
+ Borrar todo el formato
+
+
+ Negrita (Ctrl + B)
+
+
+ Cursiva (Ctrl + I)
+
+
+ Subrayado (Ctrl + U)
+
+
+ Tachado
+
+
+ Superíndice (Ctrl + Shift ++)
+
+
+ Subíndice (Ctrl + =)
+
+
+ Alinear a la izquierda (Ctrl + L)
+
+
+ Centro (Ctrl + E)
+
+
+ Alinear a la derecha (Ctrl + R)
+
+
+ Justificar (Ctrl + J)
+
+
+ Disminuir sangría
+
+
+ Aumentar sangría
+
+
+ Espaciado entre líneas
+
+
+ Balas
+
+
+ Numeración
+
+
+ Estilos
+
+
+ Administrar estilos
+
+
+ Página
+
+
+ de
+
+
+ Ajustar una página
+
+
+ Corrector ortográfico
+
+
+ Subrayar errores
+
+
+ Ajustar ancho de página
+
+
+ Actualizar
+
+
+ Cancelar
+
+
+ Insertar
+
+
+ Sin bordes
+
+
+ Crea un nuevo documento.
+
+
+ Abrir un documento.
+
+
+ Deshacer la última operación (Ctrl + Z).
+
+
+ Rehaga la última operación (Ctrl + Y).
+
+
+ Insertar imagen en línea de un archivo.
+
+
+ Insertar una tabla en el documento.
+
+
+ Cree un enlace en su documento para acceder rápidamente a páginas web y archivos (Ctrl + K).
+
+
+ Inserte un marcador en un lugar específico en este documento.
+
+
+ Proporcione una descripción general de su documento agregando una tabla de contenido.
+
+
+ Agregar o editar el encabezado.
+
+
+ Agregar o editar el pie de página.
+
+
+ Abra el cuadro de diálogo de configuración de página.
+
+
+ Agregar números de página.
+
+
+ Buscar texto en el documento (Ctrl + F).
+
+
+ El número de página actual en el documento. Haga clic o toque para navegar por una página específica.
+
+
+ Solo lectura
+
+
+ Protecciones
+
+
+ Error al establecer conexión con el servidor web
+
+
+ Soltero
+
+
+ Doble
+
+
+ Nuevo comentario
+
+
+ Comentarios
+
+
+ Diseño de impresión
+
+
+ diseño web
+
+
+ Alterne entre el portapapeles interno y el portapapeles del sistema.
+ El acceso al portapapeles del sistema a través del script está denegado debido a la política de seguridad de los navegadores. En su lugar,
+ 1. Puede habilitar el portapapeles interno para cortar, copiar y pegar dentro del componente.
+ 2. Puede usar los atajos de teclado (Ctrl + X, Ctrl + C y Ctrl + V) para cortar , copie y pegue con el portapapeles del sistema.
+
+
+ Formulario de texto
+
+
+ Casilla de verificación
+
+
+ Desplegable
+
+
+ Actualizar campos
+
+
+ Actualizar campos de referencia cruzada.
+
+
+ Mantenga un registro de los cambios realizados en el documento.
+
+
+ Cambio de camino
+
+
+ Nivel del zoom
+
+
+ Insertar nota al pie (Alt + Ctrl + F).
+
+
+ Insertar nota al final (Alt + Ctrl + D).
+
+
+ Insertar comentarios
+
+
+ Campos de formulario
+
+
+ Información
+
+
+ Todo en mayúsculas
+
+
+ Insertar
+
+
+ Insertar
+
+
+ Rellenar formularios
+
+
+ Cambios registrados
+
+
+ Si realiza este cambio en la protección de documentos, Word ignorará todas las excepciones en este documento.
+
+
+ Puede editar en esta región, pero se realizará un seguimiento de todos los cambios
+
+
+ El formato de archivo que ha seleccionado no es compatible. Elija un formato válido.
+
+
+ Hubo un problema al abrir este documento
+
+
+ ¿Desea eliminar las excepciones ignoradas?
+
+
+ sí
+
+
+ No
+
+
+ Mostrar panel de propiedades
+
+
+ Ocultar panel de propiedades
+
+
+ Continuo
+
+
+ Columna
+
+
+ Página
+
+
+ Siguiente página
+
+
+ Saltos de página
+
+
+ Saltos de sección
+
+
+ La dirección de este sitio no es válida. Comprueba la dirección y vuelve a intentarlo.
+
+
+ DE ACUERDO
+
+
+ Elige la otra tarea
+
+
+ Seleccione la posición del conector
+
+
+ Izquierda
+
+
+ Derecha
+
+
+ Exportar anotación a archivo XFDF
+
+
+ Importar anotaciones desde un archivo XFDF
+
+
+ Información
+
+
+ línea apilada
+
+
+ Línea 100% apilada
+
+
+ Ninguna
+
+
+ Cargando...
+
+
+ Aceptar
+
+
+ Cancelar
+
+
+ No mostrar subtotales
+
+
+ Mostrar solo columnas de subtotales
+
+
+ Mostrar solo filas de subtotales
+
+
+ Mostrar subtotales
+
+
+ Posición de subtotales
+
+
+ Posición de los totales generales
+
+
+ Único
+
+
+ Auto
+
+
+ Localizador de filas
+
+
+ Filas por página
+
+
+ Localizador de columnas
+
+
+ Columnas por página
+
+
+ Ir a la primera página
+
+
+ Ir a la última página
+
+
+ Ir a la página siguiente
+
+
+ Regresar a la pagina anterior
+
+
+ Escoge tiempo
+
+
+ ¡Filtros de tiempo
+
+
+ Igual que el anterior
+
+
+ Sección
+
+
+ Encabezado de página impar
+
+
+ Pie de página impar
+
+
+ Encabezado de página par
+
+
+ Pie de página par
+
+
+ Encabezado de la primera página
+
+
+ Pie de página de la primera página
+
+
+ y
+
+
+ Título
+
+
+ Descripción
+
+
+ Texto alternativo
+
+
+ Okay
+
+
+ Archivo no soportado
+
+
+ El archivo eliminado no es compatible.
+
+
\ No newline at end of file
diff --git a/Common/Change the locale content for the word Clear/ChangeLocale/Resources/SfResources.pl.resx b/Common/Change the locale content for the word Clear/ChangeLocale/Resources/SfResources.pl.resx
new file mode 100644
index 00000000..1d385a6c
--- /dev/null
+++ b/Common/Change the locale content for the word Clear/ChangeLocale/Resources/SfResources.pl.resx
@@ -0,0 +1,5994 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 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
+
+
+ ŻŻądanie nie powiodło się
+
+
+ Nic nie znaleziono
+
+
+ Dzisiaj
+
+
+ ŻŻądanie nie powiodło się
+
+
+ Nic nie znaleziono
+
+
+ Wybierz datę
+
+
+ Dzisiaj
+
+
+ Zastosować
+
+
+ Anuluj
+
+
+ Zakres niestandardowy
+
+
+ Dni
+
+
+ Data końcowa
+
+
+ Wybierz zakres dat
+
+
+ Wybrane dni
+
+
+ Data rozpoczęcia
+
+
+ Wybierz datę i godzinę
+
+
+ Dzisiaj
+
+
+ Dzień
+
+
+ Miesiąc
+
+
+ Rok
+
+
+ Godzina
+
+
+ Minuta
+
+
+ Drugi
+
+
+ Dzień tygodnia
+
+
+ ŻŻŻądanie nie powiodło się
+
+
+ Nic nie znaleziono
+
+
+ Nic nie znaleziono
+
+
+ ŻŻŻądanie nie powiodło się
+
+
+ Nic nie znaleziono
+
+
+ +${count} więcej ..
+
+
+ Zaznacz wszystko
+
+
+ Wybrano ${count}
+
+
+ Odznacz wszystko
+
+
+ Wartość zmniejszenia
+
+
+ Wartość przyrostu
+
+
+ Wybierz czas
+
+
+ Anulować
+
+
+ Przeglądaj...
+
+
+ Anuluj
+
+
+ Jasny
+
+
+ Usunąć plik
+
+
+ Lub upuść pliki tutaj
+
+
+ Przesyłanie pliku anulowane
+
+
+ Przesyłanie
+
+
+ Typ pliku jest niedozwolony
+
+
+ Nazwa pliku jest niedozwolona
+
+
+ Rozmiar pliku jest za duży
+
+
+ Rozmiar pliku jest za mały
+
+
+ Pauza
+
+
+ Przesyłanie pliku zostało wstrzymane
+
+
+ Gotowy do przesłania
+
+
+ Usunąć
+
+
+ Nie można usunąć pliku
+
+
+ Plik usunięty pomyślnie
+
+
+ Wznawianie
+
+
+ Spróbować ponownie
+
+
+ Przekazać plik
+
+
+ Plik nie został przesłany
+
+
+ Plik przesłany pomyślnie
+
+
+ Nowy folder
+
+
+ Przekazać plik
+
+
+ Usunąć
+
+
+ Przemianować
+
+
+ Pobieranie
+
+
+ Wytnij
+
+
+ Kopiuj
+
+
+ Wklej
+
+
+ Sortuj według
+
+
+ Odświeżać
+
+
+ element wybrany
+
+
+ wybrane elementy
+
+
+ Widok
+
+
+ Detale
+
+
+ Zaznacz wszystko
+
+
+ otwarty
+
+
+ Nowy folder
+
+
+ Przekazać plik
+
+
+ Usunąć
+
+
+ Przemianować
+
+
+ Pobieranie
+
+
+ Wytnij
+
+
+ Kopiuj
+
+
+ Wklej
+
+
+ Sortuj według
+
+
+ Odświeżać
+
+
+ Wyczyść wybór
+
+
+ Widok
+
+
+ Detale
+
+
+ Zaznacz wszystko
+
+
+ Nazwa
+
+
+ Rozmiar
+
+
+ Zmodyfikowano
+
+
+ Data utworzenia
+
+
+ Ścieżka
+
+
+ Zmodyfikowano
+
+
+ Utworzony
+
+
+ Lokalizacja
+
+
+ Rodzaj
+
+
+ Pozwolenie
+
+
+ Rosnąco
+
+
+ Malejąco
+
+
+ Żaden
+
+
+ Duże ikony
+
+
+ Detale
+
+
+ Szukaj
+
+
+ dobrze
+
+
+ Anuluj
+
+
+ Tak
+
+
+ Nie
+
+
+ Stwórz
+
+
+ Zapisać
+
+
+ Teczka
+
+
+ Wpisz nazwę swojego folderu
+
+
+ Przemianować
+
+
+ Wpisz swoje nowe imię
+
+
+ Zmień nazwę potwierdzenia
+
+
+ Jeśli zmienisz rozszerzenie nazwy pliku, plik może stać się niestabilny. Czy na pewno chcesz to zmienić?
+
+
+ Usunąć plik
+
+
+ Czy na pewno chcesz usunąć ten plik?
+
+
+ Usunięty folder
+
+
+ Czy na pewno chcesz usunąć ten folder?
+
+
+ Usuń wiele elementów
+
+
+ Czy na pewno chcesz usunąć te {0} elementy?
+
+
+ Plik / folder istnieje
+
+
+ {0} już istnieje. Czy chcesz zmienić nazwę i wkleić?
+
+
+ Prześlij pliki
+
+
+ Błąd
+
+
+ Nazwa pliku lub folderu nie może być pusta.
+
+
+ Nazwa pliku lub folderu {0} zawiera nieprawidłowe znaki. Proszę użyć innej nazwy. Prawidłowe nazwy plików lub folderów nie mogą kończyć się kropką ani spacją.
+
+
+ Plik lub folder o nazwie {0} już istnieje.
+
+
+ Nie można zmienić nazwy {0} na {1}: miejsce docelowe już istnieje.
+
+
+ Ten folder jest pusty
+
+
+ Przeciągnij pliki tutaj, aby przesłać
+
+
+ Nie znaleziono wyników
+
+
+ Spróbuj użyć różnych słów kluczowych
+
+
+ Nie znaleziono wyników
+
+
+ Spróbuj z innym filtrem
+
+
+ Folder docelowy jest podfolderem folderu źródłowego.
+
+
+ Brak dostępu
+
+
+ Nie masz uprawnień dostępu do tego folderu.
+
+
+ Plik już istnieje
+
+
+ Plik o tej nazwie już istnieje w tym folderze. Co chciałbyś robić?
+
+
+ Zatrzymaj oba
+
+
+ Zastąpić
+
+
+ Pominąć
+
+
+ Zrób to dla wszystkich bieżących przedmiotów
+
+
+ KB
+
+
+ {0} jest niedostępny. potrzebujesz pozwolenia na wykonanie akcji {1}.
+
+
+ NetworkError: Nie można wysłać XMLHTTPRequest: Nie udało się załadować
+
+
+ ServerError: Niepoprawna odpowiedź od
+
+
+ Powiększenie
+
+
+ Zbliżenie
+
+
+ ZoomOut
+
+
+ Resetowanie
+
+
+ Przesuń
+
+
+ Zresetuj powiększenie
+
+
+ Zmniejszać
+
+
+ Zwiększać
+
+
+ Nie znaleziono obrazu
+
+
+ Powiększenie
+
+
+ Zbliżenie
+
+
+ ZoomOut
+
+
+ Resetowanie
+
+
+ Przesuń
+
+
+ Powyżej
+
+
+ Dodaj
+
+
+ Nowe zadanie
+
+
+ Wyjściowa data końcowa
+
+
+ Początkowa data początkowa
+
+
+ Poniżej
+
+
+ Anuluj
+
+
+ Dziecko
+
+
+ Zwinąć wszystkie
+
+
+ Czy na pewno chcesz usunąć rekord?
+
+
+ Czy na pewno chcesz usunąć link zależności?
+
+
+ Akapit
+
+
+ Outdent
+
+
+ Konwertować
+
+
+ Eksport CSV
+
+
+ Niestandardowe kolumny
+
+
+ dzień
+
+
+ dni
+
+
+ Usuń adnotację
+
+
+ Usuń zależność
+
+
+ Usuń zadanie
+
+
+ Zależność
+
+
+ Trwanie
+
+
+ Edytować
+
+
+ Informacje o zadaniu
+
+
+ brak nagrań do odtworzenia
+
+
+ Data końcowa
+
+
+ Wpisz wartość
+
+
+ Znaczniki zdarzeń
+
+
+ Eksport do Excela
+
+
+ Rozwiń wszystkie
+
+
+ koniec
+
+
+ Od
+
+
+ Generał
+
+
+ godzina
+
+
+ godziny
+
+
+ ID
+
+
+ Opóźnienie
+
+
+ Lewa etykieta zadania
+
+
+ Kamień milowy
+
+
+ minuta
+
+
+ minuty
+
+
+ Nazwa
+
+
+ Następny okres
+
+
+ Notatki
+
+
+ Offsetowy
+
+
+ Dobrze
+
+
+ Poprzedni okres
+
+
+ Postęp
+
+
+ ID zasobu
+
+
+ Zasoby
+
+
+ Właściwa etykieta zadania
+
+
+ Zapisać
+
+
+ Zapisać
+
+
+ Szukaj
+
+
+ Początek
+
+
+ Data rozpoczęcia
+
+
+ zadanie
+
+
+ Przesunąłeś „{0}”, aby zakończyć po zakończeniu „{1}” i dwa zadania są połączone. W rezultacie łącza nie mogą być honorowane. Wybierz jedną akcję poniżej do wykonania
+
+
+ Przeniosłeś „{0}” z dala od „{1}” i oba zadania są połączone. W rezultacie łącza nie mogą być honorowane. Wybierz jedną akcję poniżej do wykonania
+
+
+ Przesunąłeś „{0}”, aby zakończyć po uruchomieniu „{1}” i połączeniu dwóch zadań. W rezultacie łącza nie mogą być honorowane. Wybierz jedną akcję poniżej do wykonania
+
+
+ Przesunąłeś „{0}”, aby rozpocząć po uruchomieniu „{1}” i dwa zadania są połączone. W rezultacie łącza nie mogą być honorowane. Wybierz jedną akcję poniżej do wykonania
+
+
+ Przesunąłeś „{0}”, aby zakończyć, zanim „{1}” zakończy się, a dwa zadania zostaną połączone. W rezultacie łącza nie mogą być honorowane. Wybierz jedną akcję poniżej do wykonania
+
+
+ Przesunąłeś „{0}”, aby rozpocząć przed zakończeniem „{1}” i połączeniem dwóch zadań. W rezultacie łącza nie mogą być honorowane. Wybierz jedną akcję poniżej do wykonania
+
+
+ Przeniosłeś „{0}” z „{1}” na start i oba zadania są połączone. W rezultacie łącza nie mogą być honorowane. Wybierz jedną akcję poniżej do wykonania
+
+
+ Przesunąłeś „{0}”, aby rozpocząć przed uruchomieniem „{1}” i dwa zadania są połączone. W rezultacie łącza nie mogą być honorowane. Wybierz jedną akcję poniżej do wykonania
+
+
+ Informacje o zadaniu
+
+
+ Link do zadania
+
+
+ zadania
+
+
+ Komórka osi czasu
+
+
+ Do
+
+
+ Do Milestone
+
+
+ Do zadania
+
+
+ Rodzaj
+
+
+ Aktualizacja
+
+
+ Notuj
+
+
+ Zbliżenie
+
+
+ Oddal
+
+
+ Powiększ, aby dopasować
+
+
+ Kolumna autodopasowania
+
+
+ Automatycznie dopasuj wszystkie kolumny
+
+
+ Sortuj rosnąco
+
+
+ Sortuj malejąco
+
+
+ Tryb zadania
+
+
+ Automatyczny
+
+
+ podręcznik
+
+
+ Podzadania Data rozpoczęcia
+
+
+ Podzadania – data zakończenia
+
+
+ Czas trwania
+
+
+ Praca
+
+
+ h
+
+
+ D
+
+
+ m
+
+
+ Min
+
+
+ Kolumny niestandardowe
+
+
+ Typ zadania
+
+
+ Ścieżki krytycznej
+
+
+ Zastosować
+
+
+ Anuluj
+
+
+ Tryb przełączania
+
+
+ Przełącz format
+
+
+ Narzędzie do wybierania kolorów
+
+
+ przycisk podziału
+
+
+ ŻŻŻądanie nie powiodło się
+
+
+ Przenieś wszystko z
+
+
+ Przenieś wszystko do
+
+
+ Padnij
+
+
+ Przenieść się z
+
+
+ Przenieś do
+
+
+ Podnieść
+
+
+ Nic nie znaleziono
+
+
+ Zaznacz wszystko
+
+
+ Odznacz wszystko
+
+
+ Pozycja listy wyszukiwania
+
+
+ Przykład: C, P, 0000%, ### 0. ## 0 # itd.
+
+
+ Sortuj kolejność danych
+
+
+ Sortuj malejąco
+
+
+ Lista pól przestawnych
+
+
+ Lista pól
+
+
+ Dodaj pole tutaj
+
+
+ Wybierz pole
+
+
+ Przeciągnij pola między osiami poniżej:
+
+
+ Dodaj
+
+
+ Odrocz aktualizację układu
+
+
+ Pokaż legendę
+
+
+ Wprowadź tytuł pola
+
+
+ Sortuj rosnąco
+
+
+ Raport o nazwie
+
+
+ już istnieje. Czy chcesz to wymienić?
+
+
+ Dodaj warunek
+
+
+ Dodaj do kolumny
+
+
+ Dodaj do filtra
+
+
+ Dodaj do wiersza
+
+
+ Dodaj do wartości
+
+
+ Po
+
+
+ Po lub równa
+
+
+ Aggregate
+
+
+ Alarm
+
+
+ Wszystko
+
+
+ Wszystkie pola
+
+
+ Wszystkie wartości
+
+
+ i
+
+
+ Zastosować
+
+
+ Powierzchnia
+
+
+ Rosnąco
+
+
+ Śr
+
+
+ Bar
+
+
+ Pole podstawowe
+
+
+ Element podstawowy
+
+
+ Przed
+
+
+ Przed lub równe
+
+
+ Zaczyna się z
+
+
+ pomiędzy
+
+
+ (Pusty)
+
+
+ przez
+
+
+ Obliczone pole
+
+
+ Pole obliczeniowe już istnieje w tej nazwie. Czy chcesz to wymienić?
+
+
+ Przeciągnij i upuść pola do formuły
+
+
+ Przeciągnij pole do formuły
+
+
+ Obliczone pole nie może być umieszczone w żadnym innym regionie oprócz osi wartości.
+
+
+ Przykład: ('Sum(Order_Count)' + 'Sum(In_Stock)') * 250
+
+
+ Pole o tej nazwie już istnieje. Wpisz inną nazwę.
+
+
+ Dodaj pola i edytuj formułę tutaj.
+
+
+ Wpisz nazwę pola
+
+
+ Przykład: [Measures].[Order Quantity] + ([Measures].[Order Quantity] * 0.10)
+
+
+ Przeciągnij i upuść pola, aby utworzyć wyrażenie. A jeśli chcesz edytować istniejące pola obliczeniowe! Możesz to osiągnąć, po prostu wybierając pole pod 'Obliczeni członkowie'.
+
+
+ anulować
+
+
+ Wykres
+
+
+ Kasować
+
+
+ Kasować
+
+
+ Blisko
+
+
+ Zawalić się
+
+
+ Kolumna
+
+
+ Upuść kolumnę tutaj
+
+
+ Kolumny
+
+
+ Formatowanie warunkowe
+
+
+ Formatowanie warunkowe
+
+
+ Zawiera
+
+
+ Kopiuj
+
+
+ Liczyć
+
+
+ Utwórz pole obliczeniowe
+
+
+ CSV
+
+
+ Waluta
+
+
+ Symbol waluty
+
+
+ Zwyczaj
+
+
+ Format niestandardowy
+
+
+ Wprowadź ciąg formatu niestandardowego
+
+
+ Data
+
+
+ Pokaż przedmioty, dla których data
+
+
+ Dni
+
+
+ Miejsca dziesiętne
+
+
+ Kasować
+
+
+ Usuń bieżący raport
+
+
+ Descending
+
+
+ Detale
+
+
+ Różnica od
+
+
+ Wymiar
+
+
+ Distinct Count
+
+
+ Nie zaczyna się
+
+
+ Nie zawiera
+
+
+ Nie kończy się na
+
+
+ Nie równa się
+
+
+ Nie pokazuj wielkich sum
+
+
+ Opór
+
+
+ Wiercić przez
+
+
+ Nie można wyświetlić nieprzetworzonych elementów pól obliczeniowych.
+
+
+ Edytować
+
+
+ brak nagrań do odtworzenia
+
+
+ Nie znaleziono raportów !!
+
+
+ Kończąc się na
+
+
+ Kończy się na
+
+
+ Wpisz datę
+
+
+ Wpisz nazwę raportu
+
+
+ Wpisz wartość
+
+
+ Równa się
+
+
+ Błąd
+
+
+ na przykład:
+
+
+ Excel
+
+
+ Rozszerzać
+
+
+ Eksport
+
+
+ Wyrażenie
+
+
+ Fałszywe
+
+
+ Podpis polowy
+
+
+ Podpis polowy
+
+
+ Przenoszonego pola nie można umieścić w tym obszarze raportu
+
+
+ Nazwa pola
+
+
+ Nazwa pola :
+
+
+ Typ pola
+
+
+ Filtr
+
+
+ Upuść filtr tutaj
+
+
+ Przefiltrowany
+
+
+ Filtry
+
+
+ Format
+
+
+ Formatuj ciąg
+
+
+ Typ formatu
+
+
+ Formuła
+
+
+ Łączna suma
+
+
+ Wielkie sumy
+
+
+ Lepszy niż
+
+
+ Większe bądź równe
+
+
+ Grupa
+
+
+ Wpisz podpis do wyświetlenia w nagłówku
+
+
+ Wpisz podpis pola grupy
+
+
+ Grupowanie
+
+
+ Nazwa grupy
+
+
+ godziny
+
+
+ Indeks
+
+
+ Interwał przez
+
+
+ Niepoprawny format.
+
+
+ Niepoprawna formuła.
+
+
+ Nie można zgrupować tego wyboru.
+
+
+ JPEG
+
+
+ Etykieta
+
+
+ Pokaż elementy, dla których etykieta
+
+
+ Lewo
+
+
+ Mniej niż
+
+
+ Mniejszy lub równy
+
+
+ Linia
+
+
+ Załaduj
+
+
+ Ładowanie...
+
+
+ Zarządzaj rekordami
+
+
+ Max
+
+
+ Zapytanie MDX
+
+
+ Pomiar
+
+
+ Członek
+
+
+ Więcej elementów. Wyszukaj, aby dalej udoskonalać.
+
+
+ Min
+
+
+ Minuty
+
+
+ Miesięcy
+
+
+ Więcej...
+
+
+ Wiele przedmiotów
+
+
+ Utwórz nowy raport
+
+
+ Czy chcesz zapisać zmiany w tym raporcie?
+
+
+ Nie znaleziono formatu !!!
+
+
+ Wpisz wartość
+
+
+ Brak wyników
+
+
+ Nie pomiędzy
+
+
+ Nie równa się
+
+
+ Bez wartości
+
+
+ zero
+
+
+ Numer
+
+
+ Formatowanie liczb
+
+
+ z
+
+
+ dobrze
+
+
+ Poza zakresem
+
+
+ Hierarchia rodziców
+
+
+ PDF
+
+
+ Procent
+
+
+ Odsetek
+
+
+ % kolumny ogółem
+
+
+ % różnicy od
+
+
+ % sumy całkowitej
+
+
+ % łącznej kolumny macierzystej
+
+
+ % sumy wierszy nadrzędnych
+
+
+ % sumy nadrzędnej
+
+
+ % sumy wierszy
+
+
+ PNG
+
+
+ Polarny
+
+
+ Populacja StDev
+
+
+ Populacja Var
+
+
+ Produkt
+
+
+ Qtr
+
+
+ Mieszkanie
+
+
+ Rok kwartalny
+
+
+ Usunąć
+
+
+ Czy na pewno chcesz usunąć ten raport?
+
+
+ Zmień nazwę bieżącego raportu
+
+
+ Lista raportów
+
+
+ Nazwa raportu :
+
+
+ Dobrze
+
+
+ Rząd
+
+
+ Upuść wiersz tutaj
+
+
+ Wydziwianie
+
+
+ Running Totals
+
+
+ Przykładowy Raport
+
+
+ Próbka StDev
+
+
+ Próbka Var
+
+
+ Zapisz jako raport bieżący
+
+
+ Zapisz raport
+
+
+ Rozpraszać
+
+
+ Szukaj
+
+
+ sekundy
+
+
+ Wybrane przedmioty
+
+
+ Wybierz grupy
+
+
+ Pokaż tylko kolumny sum ogółem
+
+
+ Pokaż listę pól
+
+
+ Pokaż sumy
+
+
+ Pokaż tylko wiersze sumy ogólnej
+
+
+ Pokaż tabelę
+
+
+ Sortować
+
+
+ Standard
+
+
+ Zaczynać od
+
+
+ Suma częściowa
+
+
+ Suma
+
+
+ Podsumowuje wartości według
+
+
+ Podsumuj wartości według
+
+
+ SVG
+
+
+ Pozycja symbolu
+
+
+ Całkowity
+
+
+ Prawdziwe
+
+
+ nieokreślony
+
+
+ Rozgrupuj
+
+
+ Wprowadź prawidłową nazwę rekordu !!!
+
+
+ Wartość
+
+
+ Upuść wartość tutaj
+
+
+ Ustawienia pola wartości
+
+
+ Wartości
+
+
+ Pokaż przedmioty, dla których
+
+
+ Ostrzeżenie
+
+
+ Lat
+
+
+ Wiele osi
+
+
+ Ustawienia typu wykresu
+
+
+ Rodzaj wykresu
+
+
+ tak
+
+
+ Nie
+
+
+ Formatowanie liczb...
+
+
+ Formatowanie warunkowe...
+
+
+ Czy na pewno chcesz usunąć to pole obliczeniowe?
+
+
+ Obszar skumulowany
+
+
+ Ułożona kolumna
+
+
+ Sztaplowany Sztabka
+
+
+ Linia kroku
+
+
+ Obszar kroku
+
+
+ Obszar splajnu
+
+
+ Klin
+
+
+ 100% skumulowana kolumna
+
+
+ 100% sztaplowany stos
+
+
+ 100% ułożonego obszaru
+
+
+ Bańka
+
+
+ Pareto
+
+
+ Radar
+
+
+ Edytuj pole obliczeniowe
+
+
+ Wyczyść edytowane informacje o polu
+
+
+ Ciasto
+
+
+ Piramida
+
+
+ Pączek
+
+
+ Lejek
+
+
+ Ułożone
+
+
+ Tryb wielu osi
+
+
+ Mediana
+
+
+ Na dole
+
+
+ Szczyt
+
+
+ Dodaj warunek
+
+
+ Dodaj grupę
+
+
+ I
+
+
+ pomiędzy
+
+
+ Zawiera
+
+
+ Usuń grupę
+
+
+ Usuń ten warunek
+
+
+ EDYTOWAĆ
+
+
+ Pusty
+
+
+ Kończy się na
+
+
+ Równy
+
+
+ Lepszy niż
+
+
+ Większy bądź równy
+
+
+ W
+
+
+ Mniej niż
+
+
+ Mniej niż równe
+
+
+ Nie pomiędzy
+
+
+ Nie zawiera
+
+
+ Nie pusty
+
+
+ Nie równe
+
+
+ Nie w
+
+
+ LUB
+
+
+ Inne pola
+
+
+ USUNĄĆ
+
+
+ Wybierz pole
+
+
+ Wybierz operatora
+
+
+ Wpisz wartość
+
+
+ Wybierz wartość
+
+
+ Wybierz zakres
+
+
+ Wybierz datę
+
+
+ Zaczynać z
+
+
+ Widok podsumowujący
+
+
+ To pole jest wymagane
+
+
+ Blisko
+
+
+ Blisko
+
+
+ Blisko
+
+
+ Zapisać
+
+
+ Anuluj
+
+
+ Ładowanie...
+
+
+ Kliknij aby edytowac
+
+
+ Kliknij aby edytowac
+
+
+ Kliknij dwukrotnie, aby edytować
+
+
+ Mała
+
+
+ Mała
+
+
+ Jasność
+
+
+ Przeglądaj
+
+
+ Pomniejsz
+
+
+ zbliżenie
+
+
+ Przytnij i przekształć
+
+
+ Wybór kadrowania
+
+
+ Adnotacja
+
+
+ Przekształć
+
+
+ dostroić
+
+
+ Filtr
+
+
+ Jasność
+
+
+ Kontrast
+
+
+ Barwa
+
+
+ Nasycenie
+
+
+ Ekspozycja
+
+
+ Nieprzezroczystość
+
+
+ Rozmycie
+
+
+ Rodzina czcionek
+
+
+ Rozmiar czcionki
+
+
+ Kolor czcionki
+
+
+ Kolor obrysu
+
+
+ Grubość obrysu
+
+
+ Kolor wypełnienia
+
+
+ dobrze
+
+
+ Anuluj
+
+
+ Resetowanie
+
+
+ Zapisać
+
+
+ Cofnij
+
+
+ Przerobić
+
+
+ Domyślne
+
+
+ Chrome
+
+
+ Zimno
+
+
+ Ciepła/y
+
+
+ Skala szarości
+
+
+ Sepia
+
+
+ Odwróć
+
+
+ Zwyczaj
+
+
+ Kwadrat
+
+
+ okrąg
+
+
+ Pióro
+
+
+ Linia
+
+
+ Prostokąt
+
+
+ Elipsa
+
+
+ Ścieżka
+
+
+ Dodaj tekst
+
+
+ Obróć w lewo
+
+
+ Obróć w prawo
+
+
+ Odwróć w poziomie
+
+
+ Odwróć w pionie
+
+
+ Pogrubienie
+
+
+ italski
+
+
+ x-mała
+
+
+ Mała
+
+
+ Średnie
+
+
+ Duża
+
+
+ X-Duży
+
+
+ Duplikat
+
+
+ Usunąć
+
+
+ Edycja tekstu
+
+
+ Początek
+
+
+ Koniec
+
+
+ Żaden
+
+
+ Strzała solidna
+
+
+ Żaden
+
+
+ Bar
+
+
+ Strzała
+
+
+ Strzała solidna
+
+
+ okrąg
+
+
+ Krąg solidny
+
+
+ Kwadrat
+
+
+ Kwadratowa bryła
+
+
+ Potwierdź zapisanie zmian
+
+
+ Czy chcesz zapisać zmiany wprowadzone w obrazie?
+
+
+ tak
+
+
+ Nie
+
+
+ Zmień rozmiar
+
+
+ szerokość
+
+
+ wysokość
+
+
+ Zachowaj brak proporcji
+
+
+ Zachowaj proporcje
+
+
+ odwrócenie w poziomie
+
+
+ obrót w pionie
+
+
+ przezroczystość
+
+
+ Przeciągnij i upuść swój obraz tutaj lub
+
+
+ Przeglądaj tutaj...
+
+
+ Obsługuje:
+
+
+ rama
+
+
+ nic
+
+
+ mata
+
+
+ ukos
+
+
+ linia
+
+
+ wstawka
+
+
+ hak
+
+
+ kolor
+
+
+ rozmiar
+
+
+ zrównoważyć
+
+
+ promień
+
+
+ kwota
+
+
+ W
+
+
+ H
+
+
+ Granica
+
+
+ Solidny
+
+
+ Przerywana
+
+
+ Kropkowany
+
+
+ Kolor gradientowy
+
+
+ przedmiotów
+
+
+ pozycja
+
+
+ Brak kart do wyświetlenia
+
+
+ Min
+
+
+ Max
+
+
+ Wybrane karty
+
+
+ Dodaj nową kartę
+
+
+ Edytuj szczegóły karty
+
+
+ Usuń kartę
+
+
+ Czy na pewno chcesz usunąć tę kartę?
+
+
+ Zapisać
+
+
+ Kasować
+
+
+ anulować
+
+
+ tak
+
+
+ Nie
+
+
+ Bogaty edytor tekstu
+
+
+ Redaktor Markdown
+
+
+ Lista numerowana
+
+
+ Żaden
+
+
+ Numer
+
+
+ Górna alfa
+
+
+ Dolna alfa
+
+
+ Górny Roman
+
+
+ Dolny rzymski
+
+
+ Dolnogrecki
+
+
+ Lista wypunktowana
+
+
+ Żaden
+
+
+ okrąg
+
+
+ Kwadrat
+
+
+ Dysk
+
+
+ Ustęp
+
+
+ Kod
+
+
+ Cytat
+
+
+ Nagłówek 1
+
+
+ Nagłówek 2
+
+
+ Nagłówek 3
+
+
+ Nagłówek 4
+
+
+ Nagłówek 5
+
+
+ Nagłówek 6
+
+
+ Segoe UI
+
+
+ Arial
+
+
+ Gruzja
+
+
+ Wpływ
+
+
+ Tahoma
+
+
+ Nowe czasy rzymski
+
+
+ Verdana
+
+
+ Wyrównania
+
+
+ Wyrównaj do lewej
+
+
+ Align Center
+
+
+ Wyrównaj do prawej
+
+
+ Align Justify
+
+
+ Nazwa czcionki
+
+
+ Rozmiar czcionki
+
+
+ Kolor czcionki
+
+
+ Kolor tła
+
+
+ Pogrubienie
+
+
+ italski
+
+
+ Podkreślać
+
+
+ Przekreślenie
+
+
+ Wyczyść format
+
+
+ Wyczyść wszystko
+
+
+ Wytnij
+
+
+ Kopiuj
+
+
+ Wklej
+
+
+ Lista wypunktowana
+
+
+ Lista numerowana
+
+
+ Zwiększ wcięcie
+
+
+ Zmniejsz wcięcie
+
+
+ Cofnij
+
+
+ Przerobić
+
+
+ Napisany u góry
+
+
+ Indeks
+
+
+ Wstaw łącze
+
+
+ Otwórz link
+
+
+ Edytuj link
+
+
+ Usuń link
+
+
+ Umieść obraz
+
+
+ Zastąpić
+
+
+ Wyrównać
+
+
+ Tytuł Zdjęcia
+
+
+ Usunąć
+
+
+ Wstaw link
+
+
+ Pokaz
+
+
+ alternatywny tekst
+
+
+ Zmień rozmiar
+
+
+ Wyolbrzymiać
+
+
+ Wyolbrzymiać
+
+
+ Zminimalizować
+
+
+ Małe litery
+
+
+ Duże litery
+
+
+ Wydrukować
+
+
+ Formaty
+
+
+ Widok kodu
+
+
+ Zapowiedź
+
+
+ Zobacz stronę
+
+
+ Wprowadź kod
+
+
+ Wyświetl tekst
+
+
+ Tytuł
+
+
+ Adres internetowy
+
+
+ Wpisz tytuł
+
+
+ http://example.com
+
+
+ Otwórz link w nowym oknie
+
+
+ Wstaw link
+
+
+ Wstawić
+
+
+ Anuluj
+
+
+ Aktualizacja
+
+
+ Umieść obraz
+
+
+ Możesz także podać link z Internetu
+
+
+ Podaj adres URL swojego obrazu
+
+
+ Upuść obraz tutaj lub przeglądaj, aby przesłać
+
+
+ Kliknij tutaj, aby przesłać
+
+
+ Alternatywny tekst
+
+
+ Alternatywny tekst
+
+
+ Przeglądaj
+
+
+ Kliknij tutaj, aby przesłać
+
+
+ Upuść plik wideo lub przeglądaj, aby go przesłać
+
+
+ Wklej tutaj osadzony kod
+
+
+ Adres internetowy
+
+
+ Wbudowany kod
+
+
+ Szerokość
+
+
+ Wysokość
+
+
+ Kliknij tutaj, aby przesłać
+
+
+ Upuść plik audio lub przeglądaj, aby go przesłać
+
+
+ http://example.com/image.png
+
+
+ Podpis
+
+
+ Rozmiar obrazu
+
+
+ Wysokość
+
+
+ Szerokość
+
+
+ Wprowadź tekst
+
+
+ Wypełnij tabelę
+
+
+ Wypełnij tabelę
+
+
+ Szerokość
+
+
+ Padding komórek
+
+
+ Odstępy między komórkami
+
+
+ Liczba kolumn
+
+
+ Liczba rzędów
+
+
+ Rzędy stołowe
+
+
+ Kolumny tabeli
+
+
+ Tabela komórek Wyrównanie w poziomie
+
+
+ Tabela komórek Pionowe wyrównanie
+
+
+ Utwórz tabelę
+
+
+ Usuń tabelę
+
+
+ Nagłówek tabeli
+
+
+ Usuń tabelę
+
+
+ Tło komórki tabeli
+
+
+ Właściwości edycji tabeli
+
+
+ Styles
+
+
+ Wstaw kolumnę po lewej
+
+
+ Wstaw kolumnę z prawej
+
+
+ Usuń kolumnę
+
+
+ Wstaw wiersz przed
+
+
+ Wstaw wiersz po
+
+
+ Usuń wiersz
+
+
+ Edytuj tabelę
+
+
+ Nagłówek
+
+
+ Przełęcz
+
+
+ Wstaw link
+
+
+ Edytuj obraz
+
+
+ Wyrównaj do lewej
+
+
+ Align Center
+
+
+ Wyrównaj do prawej
+
+
+ Align Justify
+
+
+ Inline
+
+
+ Przerwa
+
+
+ Wstaw wiersz wcześniej
+
+
+ Wstaw wiersz po
+
+
+ Usuń wiersz
+
+
+ Wstaw kolumnę po lewej
+
+
+ Wstaw kolumnę z prawej strony
+
+
+ Usuń kolumnę
+
+
+ Wyrównaj do góry
+
+
+ Wyrównaj środkowy
+
+
+ Wyrównaj do dołu
+
+
+ Przekreślone granice
+
+
+ Alternatywne rzędy
+
+
+ Wklej format
+
+
+ Wybierz akcję formatowania
+
+
+ Zwykły tekst
+
+
+ Czysty
+
+
+ Trzymać
+
+
+ dobrze
+
+
+ Anuluj
+
+
+ Zastępować
+
+
+ Usunąć
+
+
+ Wyświetlacz
+
+
+ Zastępować
+
+
+ Wyrównywać
+
+
+ Usunąć
+
+
+ Wyświetlacz
+
+
+ Wymiar
+
+
+ x
+
+
+ Tak
+
+
+ W
+
+
+ h
+
+
+ Przesuń na wierzch
+
+
+ Kopiuj
+
+
+ Wytnij
+
+
+ Grupa
+
+
+ Grupowanie
+
+
+ Ruszaj naprzód
+
+
+ Zamówienie
+
+
+ Wklej
+
+
+ Przerobić
+
+
+ Zaznacz wszystko
+
+
+ Wyślij wstecz
+
+
+ Wyślij wstecz
+
+
+ Cofnij
+
+
+ Rozgrupuj
+
+
+ brak nagrań do odtworzenia
+
+
+ prawdziwe
+
+
+ fałszywy
+
+
+ Nieprawidłowe dane filtru
+
+
+ Przeciągnij nagłówek kolumny tutaj, aby zgrupować kolumnę
+
+
+ Kliknij tutaj, aby rozgrupować
+
+
+ Grupowanie jest wyłączone dla tej kolumny
+
+
+ komórka paska filtru
+
+
+ DataSource nie może być pusta przy pierwszym ładowaniu, ponieważ kolumny są generowane z dataSource w AutoGenerate Column Grid
+
+
+ Dodaj
+
+
+ Edytować
+
+
+ Anuluj
+
+
+ Aktualizacja
+
+
+ Usunąć
+
+
+ Wydrukować
+
+
+ Eksport do pliku PDF
+
+
+ Eksport do Excela
+
+
+ Eksport słów
+
+
+ Eksport CSV
+
+
+ Szukaj
+
+
+ Kolumny
+
+
+ Zapisać
+
+
+ pozycja
+
+
+ przedmiotów
+
+
+ Nie wybrano rekordów do operacji edycji
+
+
+ Nie wybrano rekordów do operacji usuwania
+
+
+ Zapisać
+
+
+ dobrze
+
+
+ Anuluj
+
+
+ Szczegóły
+
+
+ Dodaj nowy rekord
+
+
+ Czy na pewno chcesz zapisać zmiany?
+
+
+ Niezapisane zmiany zostaną utracone. Jesteś pewien, że chcesz kontynuować?
+
+
+ Czy na pewno chcesz usunąć rekord?
+
+
+ Czy na pewno chcesz anulować zmiany?
+
+
+ Wybierz kolumnę
+
+
+ kolumny wyszukiwania
+
+
+ Nie znaleziono żadnego meczu
+
+
+ Filtr
+
+
+ Jasny
+
+
+ Zaczynać z
+
+
+ Kończy się na
+
+
+ Zawiera
+
+
+ Równy
+
+
+ Nie równe
+
+
+ Mniej niż
+
+
+ Mniej niż równe
+
+
+ Lepszy niż
+
+
+ Większy bądź równy
+
+
+ Wybierz datę
+
+
+ Wpisz wartość
+
+
+ Kopiuj
+
+
+ Grupuj według tej kolumny
+
+
+ Rozgrupuj według tej kolumny
+
+
+ Automatyczne dopasowanie wszystkich kolumn
+
+
+ Automatycznie dopasuj tę kolumnę
+
+
+ Eksport
+
+
+ Pierwsza strona
+
+
+ Ostatnia strona
+
+
+ Poprzednia strona
+
+
+ Następna strona
+
+
+ Sortuj rosnąco
+
+
+ Sortuj malejąco
+
+
+ Edytuj rekord
+
+
+ Usuń rekord
+
+
+ Filtr
+
+
+ Zaznacz wszystko
+
+
+ Puste
+
+
+ Prawdziwe
+
+
+ Fałszywy
+
+
+ Nie znaleziono żadnego meczu
+
+
+ Czysty filtr
+
+
+ Filtry liczbowe
+
+
+ Filtry tekstowe
+
+
+ Filtry daty
+
+
+ Filtry DateTime
+
+
+ Sprawa meczu
+
+
+ pomiędzy
+
+
+ Filtr niestandardowy
+
+
+ Wpisz wartość
+
+
+ Wybierz datę
+
+
+ I
+
+
+ LUB
+
+
+ Pokaż wiersze, w których:
+
+
+ Pole wyboru wiersza
+
+
+ Ikona filtra
+
+
+ Ikona menu kolumny
+
+
+ Przycisk grupy
+
+
+ Przycisk Rozgrupuj
+
+
+ Nagłówek kolumny
+
+
+ Filtruj pole wyboru
+
+
+ Pole wyboru nagłówka
+
+
+ Sortować
+
+
+ Rosnąco
+
+
+ Malejąco
+
+
+ Żaden
+
+
+ jest komórką szablonu
+
+
+ Press Enter to
+
+
+ Naciśnij Alt Down, aby otworzyć menu filtra
+
+
+ Naciśnij Alt Down, aby otworzyć Menu Kolumny
+
+
+ Naciśnij klawisz Ctrl, aby zgrupować
+
+
+ to komórka z podpisem grupowym
+
+
+ nagłówek kolumny niezdefiniowany
+
+
+ Kolumna dowodzenia
+
+
+ sortuj pogrupowaną kolumnę
+
+
+ nie zdefiniowano pustego nagłówka kolumny
+
+
+ zamknij
+
+
+ Operator filtra
+
+
+ wartość filtra
+
+
+ Strona
+
+
+ Strony
+
+
+ z
+
+
+ Wiadomość zewnętrzna Pager
+
+
+ strony
+
+
+ Lista rozwijana pagera
+
+
+ Idź do strony
+
+
+ {0} z {1} stron
+
+
+ ({0} przedmiotów)
+
+
+ Idź do pierwszej strony
+
+
+ Idź do ostatniej strony
+
+
+ Przejdź do następnej strony
+
+
+ Wróć do poprzedniej strony
+
+
+ Przejdź do następnego pagera
+
+
+ Przejdź do poprzedniego pagera
+
+
+ przedmioty na stronę
+
+
+ Przedmiotów
+
+
+ Wszystko
+
+
+ przedmiotów
+
+
+ Liczyć
+
+
+ Codziennie
+
+
+ Dni)
+
+
+ Koniec
+
+
+ każdy
+
+
+ Pierwszy
+
+
+ Czwarty
+
+
+ Ostatni, ubiegły, zeszły
+
+
+ Miesiąc
+
+
+ Expander miesięcy
+
+
+ Miesięczny
+
+
+ Pozycja miesiąca
+
+
+ Miesięcy)
+
+
+ Miesiąc Tydzień
+
+
+ Nigdy
+
+
+ Żaden
+
+
+ Powtórz wł
+
+
+ Dzień
+
+
+ Powtarzać
+
+
+ Powtórz każdy
+
+
+ Powtarzaj interwał
+
+
+ druga
+
+
+ dni)
+
+
+ miesięcy)
+
+
+ na
+
+
+ Powtarza się
+
+
+ czasy)
+
+
+ aż do
+
+
+ tydzień
+
+
+ rok (lata)
+
+
+ Trzeci
+
+
+ Aż do
+
+
+ Co tydzień
+
+
+ Tydzień (y)
+
+
+ Expander roku
+
+
+ Rocznie
+
+
+ Rok
+
+
+ Dodaj tytuł
+
+
+ Program
+
+
+ Alarm
+
+
+ Cały dzień
+
+
+ Zacząć od
+
+
+ Zdarzenia nie mogą być zaplanowane w zablokowanym przedziale czasowym.
+
+
+ Anuluj
+
+
+ Anuluj
+
+
+ Blisko
+
+
+ Czas trwania wydarzenia musi być krótszy niż częstotliwość jego występowania. Skróć czas trwania lub zmień wzorzec cyklu w edytorze zdarzeń cyklicznych.
+
+
+ Stwórz
+
+
+ Dzień
+
+
+ Usunąć
+
+
+ Usunąć
+
+
+ Czy na pewno chcesz usunąć to wydarzenie?
+
+
+ Wydarzenie
+
+
+ Czy na pewno chcesz usunąć wybrane wydarzenia?
+
+
+ Usuń wiele zdarzeń
+
+
+ Cała seria
+
+
+ Usuń wydarzenie
+
+
+ Opis
+
+
+ Edytować
+
+
+ Jak chciałbyś zmienić spotkanie w serialu?
+
+
+ Wydarzenie
+
+
+ Następujące wydarzenia
+
+
+ Edytuj cykl
+
+
+ Cała seria
+
+
+ Edytuj wydarzenie
+
+
+ Na ten dzień nie zaplanowano żadnych wydarzeń.
+
+
+ Koniec
+
+
+ Koniec czasu
+
+
+ Koniec o
+
+
+ Koniec strefy czasowej
+
+
+ Wprowadzona wartość daty jest nieprawidłowa.
+
+
+ Lokalizacja
+
+
+ Poszukaj więcej
+
+
+ Miesiąc
+
+
+ Agenda miesiąca
+
+
+ więcej
+
+
+ Więcej szczegółów
+
+
+ Nowe wydarzenie
+
+
+ Kolejny
+
+
+ Nie
+
+
+ Brak wydarzeń
+
+
+ Brak nagrań
+
+
+ (Bez tytułu)
+
+
+ Występowanie
+
+
+ Dobrze
+
+
+ Poprzedni
+
+
+ Nawrót
+
+
+ Powtarzające się wydarzenie
+
+
+ Powtarzać
+
+
+ Powtarza się
+
+
+ Dwa wystąpienia tego samego zdarzenia nie mogą wystąpić tego samego dnia.
+
+
+ Zapisać
+
+
+ Zapisać
+
+
+ Wybrane elementy
+
+
+ Seria
+
+
+ Wyszukaj strefę czasową
+
+
+ Czy chcesz anulować zmiany wprowadzone w określonych wystąpieniach tej serii i ponownie dopasować ją do całej serii?
+
+
+ Wyświetlam wydarzenia do
+
+
+ Początek
+
+
+ Czas rozpoczęcia
+
+
+ Wybrana data końcowa występuje przed datą początkową.
+
+
+ Uruchom strefę czasową
+
+
+ Przedmiot
+
+
+ Dzień na osi czasu
+
+
+ Miesiąc osi czasu
+
+
+ Tydzień na osi czasu
+
+
+ Tydzień roboczy osi czasu
+
+
+ Rok na osi czasu
+
+
+ Strefa czasowa
+
+
+ Tytuł
+
+
+ Dzisiaj
+
+
+ Tydzień
+
+
+ Program tygodniowy
+
+
+ Tydzień pracy
+
+
+ Agenda Tygodnia Pracy
+
+
+ Wzorzec powtarzania się jest nieprawidłowy.
+
+
+ tak
+
+
+ Rok
+
+
+ Blisko
+
+
+ Poprzedni slajd
+
+
+ Następny slajd
+
+
+ Ślizgać się
+
+
+ z
+
+
+ Zatrzymaj automatyczną animację
+
+
+ Uruchom animację automatyczną
+
+
+ pokaz slajdów
+
+
+ Przeglądarka plików PDF
+
+
+ Anuluj
+
+
+ Pobieranie pliku
+
+
+ Pobieranie
+
+
+ Ten dokument jest chroniony hasłem. proszę wprowadzić hasło.
+
+
+ Plik uszkodzony
+
+
+ Plik jest uszkodzony i nie można go otworzyć.
+
+
+ Dopasuj stronę
+
+
+ Dopasuj szerokość
+
+
+ Automatyczny
+
+
+ Pokaż pierwszą stronę
+
+
+ Niepoprawne hasło. Proszę spróbuj ponownie.
+
+
+ Pokaż następną stronę
+
+
+ Pokaż poprzednią stronę
+
+
+ OK
+
+
+ Otwórz plik
+
+
+ Aktualny numer strony
+
+
+ Pokaż ostatnią stronę
+
+
+ Powiększenie
+
+
+ zbliżenie
+
+
+ Pomniejsz
+
+
+ Miniatury stron
+
+
+ Zakładki
+
+
+ Wydrukuj plik
+
+
+ Wymagane hasło
+
+
+ Kopiuj
+
+
+ Narzędzie do zaznaczania tekstu
+
+
+ Tryb panoramy
+
+
+ Znajdź tekst
+
+
+ Znajdź w dokumencie
+
+
+ Sprawa meczu
+
+
+ Zastosować
+
+
+ Idź do strony
+
+
+ Przeglądarka zakończy wyszukiwanie dokumentu. Nie znaleziono więcej dopasowań
+
+
+ Nie znaleziono tekstu
+
+
+ Cofnij
+
+
+ Przerobić
+
+
+ Dodaj lub edytuj adnotacje
+
+
+ Zaznaczanie tekstu
+
+
+ Podkreśl tekst
+
+
+ Tekst przekreślony
+
+
+ Usuń adnotację
+
+
+ Nieprzezroczystość
+
+
+ Zmień kolor
+
+
+ Zmień krycie
+
+
+ Atrakcja
+
+
+ Podkreślać
+
+
+ Przekreślenie
+
+
+ Usługa internetowa nie nasłuchuje. Przeglądarka plików PDF zależy od serwisu internetowego dla wszystkich jego funkcji. Uruchom usługę internetową, aby kontynuować.
+
+
+ Znaleziono błąd po stronie klienta. Sprawdź niestandardowe nagłówki podane we właściwości AjaxRequestSettings i metody akcji WWW we właściwości ServerActionSettings.
+
+
+ otwarty
+
+
+ Pierwsza strona
+
+
+ Poprzednia strona
+
+
+ Następna strona
+
+
+ Ostatnia strona
+
+
+ zbliżenie
+
+
+ Pomniejsz
+
+
+ Wybór
+
+
+ Przesuń
+
+
+ Wydrukować
+
+
+ Szukaj
+
+
+ Edytuj adnotację
+
+
+ Grubość linii
+
+
+ Właściwości linii
+
+
+ Start Arrow
+
+
+ End Arrow
+
+
+ Styl linii
+
+
+ Kolor wypełnienia
+
+
+ Kolor linii
+
+
+ Żaden
+
+
+ Otwórz strzałkę
+
+
+ Zamknięta strzała
+
+
+ Okrągła strzała
+
+
+ Kwadratowa strzała
+
+
+ Diamentowa strzała
+
+
+ Wytnij
+
+
+ Wklej
+
+
+ Usunąć
+
+
+ Nieruchomości
+
+
+ Dodaj pieczęć
+
+
+ Dodaj kształty
+
+
+ Zmień kolor obrysu
+
+
+ Zmień grubość granicy
+
+
+ Dodaj linię
+
+
+ Dodaj strzałkę
+
+
+ Dodaj prostokąt
+
+
+ Dodaj krąg
+
+
+ Dodaj wielokąt
+
+
+ Dodaj Komentarze
+
+
+ Komentarze
+
+
+ Brak komentarzy
+
+
+ Przyjęty
+
+
+ Zakończony
+
+
+ Anulowany
+
+
+ Odrzucony
+
+
+ Długość lidera
+
+
+ Współczynnik skali
+
+
+ Kalibrować
+
+
+ Kalibruj odległość
+
+
+ Skalibruj obwód
+
+
+ Skalibruj obszar
+
+
+ Kalibruj promień
+
+
+ Kalibruj głośność
+
+
+ Głębokość
+
+
+ Zamknięte
+
+
+ Okrągły
+
+
+ Plac
+
+
+ Diament
+
+
+ Edytować
+
+
+ Komentarz
+
+
+ Panel komentarzy
+
+
+ Ustaw status
+
+
+ Poczta
+
+
+ Strona
+
+
+ Dodaj komentarz
+
+
+ Dodaj odpowiedź
+
+
+ Importuj adnotacje
+
+
+ Eksportuj adnotacje
+
+
+ Dodaj
+
+
+ Jasny
+
+
+ Pogrubienie
+
+
+ italski
+
+
+ Przekreślenie
+
+
+ Podkreśla
+
+
+ Napisany u góry
+
+
+ Indeks
+
+
+ Wyrównaj do lewej
+
+
+ Wyrównaj do prawej
+
+
+ Centrum
+
+
+ Uzasadniać
+
+
+ Kolor czcionki
+
+
+ Wyrównaj tekst
+
+
+ Styl czcionki
+
+
+ Narysuj podpis
+
+
+ Stwórz
+
+
+ Rodzina czcionek
+
+
+ Rozmiar czcionki
+
+
+ Dowolny tekst
+
+
+ Nieprawidłowy typ pliku JSON lub nazwa pliku; wybierz prawidłowy plik JSON
+
+
+ Zaimportowanego pliku JSON nie znaleziono w żądanej lokalizacji
+
+
+ Eksportowanie adnotacji nie powiodło się; upewnij się, że adnotacje zostały poprawnie dodane
+
+
+ REMIS
+
+
+ RODZAJ
+
+
+ PRZEKAZAĆ PLIK
+
+
+ PRZEGLĄDAJ
+
+
+ Zapisz podpis
+
+
+ Wpisz swoje imię
+
+
+ Dynamiczny
+
+
+ Standardowy biznes
+
+
+ Pieczęć Niestandardowa
+
+
+ Ulepszony
+
+
+ Oceniony
+
+
+ Otrzymane
+
+
+ Zatwierdzony
+
+
+ Poufny
+
+
+ Niezatwierdzony
+
+
+ Świadek
+
+
+ Inicjał tutaj
+
+
+ Podpisz tutaj
+
+
+ Projekt
+
+
+ Finał
+
+
+ Do publikacji
+
+
+ Nie do publikacji
+
+
+ Do komentarza
+
+
+ Próżnia
+
+
+ Wstępne rezultaty
+
+
+ Tylko informacje
+
+
+ Prześlij formularz
+
+
+ z
+
+
+ Ta przeglądarka plików PDF wymaga przetwarzania po stronie serwera w celu renderowania plików PDF za pośrednictwem usługi sieci Web. Aby kontynuować korzystanie z przeglądarki plików PDF, należy skonfigurować adres URL usługi
+
+
+ Blisko
+
+
+ Dodaj podpis
+
+
+ Rysuj atrament
+
+
+ Stół
+
+
+ Rząd
+
+
+ Komórka
+
+
+ Dobrze
+
+
+ Anuluj
+
+
+ Rozmiar
+
+
+ Preferowana szerokość
+
+
+ Zwrotnica
+
+
+ Procent
+
+
+ Zmierzyć w
+
+
+ Wyrównanie
+
+
+ Lewo
+
+
+ Centrum
+
+
+ Dobrze
+
+
+ Uzasadniać
+
+
+ Wcięcie od lewej
+
+
+ Granice i cieniowanie
+
+
+ Opcje
+
+
+ Określ wysokość
+
+
+ Przynajmniej
+
+
+ Dokładnie
+
+
+ Wysokość rzędu wynosi
+
+
+ Zezwalaj wierszowi na podział na strony
+
+
+ Powtórz jako wiersz nagłówka u góry każdej strony
+
+
+ Wyrównanie w pionie
+
+
+ Top
+
+
+ Dolny
+
+
+ Domyślne marginesy komórek
+
+
+ Domyślne odstępy między komórkami
+
+
+ Pozwól na odstępy między komórkami
+
+
+ Marginesy komórkowe
+
+
+ Taki sam jak cały stół
+
+
+ Granice
+
+
+ Żaden
+
+
+ Styl
+
+
+ Szerokość
+
+
+ Wysokość
+
+
+ List
+
+
+ Tabletka
+
+
+ Prawny
+
+
+ Komunikat
+
+
+ Wykonawczy
+
+
+ A3
+
+
+ A4
+
+
+ A5
+
+
+ B4
+
+
+ B5
+
+
+ Niestandardowy rozmiar
+
+
+ Różne nieparzyste i parzyste
+
+
+ Inna pierwsza strona
+
+
+ Od krawędzi
+
+
+ nagłówek
+
+
+ Stopka
+
+
+ Marginesy
+
+
+ Papier
+
+
+ Układ
+
+
+ Orientacja
+
+
+ Krajobraz
+
+
+ Portret
+
+
+ Pokaż numery stron
+
+
+ Wyrównaj do prawej numery stron.
+
+
+ Nic
+
+
+ Lider tabu
+
+
+ Pokaż poziomy
+
+
+ Użyj hiperłączy zamiast numerów stron
+
+
+ Zbuduj spis treści z
+
+
+ Style
+
+
+ Dostępne style
+
+
+ Poziom spisu treści
+
+
+ Nagłówek
+
+
+ Nagłówek 1
+
+
+ Nagłówek 2
+
+
+ Nagłówek 3
+
+
+ Nagłówek 4
+
+
+ Nagłówek 5
+
+
+ Nagłówek 6
+
+
+ Lista ust
+
+
+ Normalna
+
+
+ Poziomy konspektu
+
+
+ Pola wprowadzania tabeli
+
+
+ Modyfikować
+
+
+ Kolor
+
+
+ Oprawa
+
+
+ Pudełko
+
+
+ Wszystko
+
+
+ Zwyczaj
+
+
+ Zapowiedź
+
+
+ Zacienienie
+
+
+ Napełnić
+
+
+ Zastosuj do
+
+
+ Właściwości tabeli
+
+
+ Opcje komórek
+
+
+ Opcje tabeli
+
+
+ Wypełnij tabelę
+
+
+ Liczba kolumn
+
+
+ Liczba rzędów
+
+
+ Tekst do wyświetlenia
+
+
+ Adres
+
+
+ Wstaw łącze
+
+
+ Edytuj hiperłącze
+
+
+ Wstawić
+
+
+ Generał
+
+
+ Wcięcie
+
+
+ Przed tekstem
+
+
+ Specjalny
+
+
+ Pierwsza linia
+
+
+ Wiszące
+
+
+ Po tekście
+
+
+ Przez
+
+
+ Przed
+
+
+ Odstępy między wierszami
+
+
+ Po
+
+
+ W
+
+
+ Wielokrotność
+
+
+ Rozstaw
+
+
+ Zdefiniuj nową listę wielopoziomową
+
+
+ Poziom listy
+
+
+ Wybierz poziom do modyfikacji
+
+
+ Poziom
+
+
+ Format liczbowy
+
+
+ Styl liczbowy dla tego poziomu
+
+
+ Wprowadź formatowanie liczby
+
+
+ Zacznij od
+
+
+ Ponownie uruchom listę po
+
+
+ Pozycja
+
+
+ Wcięcie tekstu o
+
+
+ Wyrównany o
+
+
+ Podaj numer za pomocą
+
+
+ Znak tabulacji
+
+
+ Przestrzeń
+
+
+ arabski
+
+
+ UpRoman
+
+
+ LowRoman
+
+
+ UpLetter
+
+
+ LowLetter
+
+
+ Numer
+
+
+ Wiodące zero
+
+
+ Pocisk
+
+
+ Porządkowy
+
+
+ Tekst zwykły
+
+
+ Na wschód
+
+
+ Bez ponownego uruchomienia
+
+
+ Czcionka
+
+
+ Styl czcionki
+
+
+ Podkreśl styl
+
+
+ Kolor czcionki
+
+
+ Efekty
+
+
+ Przekreślenie
+
+
+ Napisany u góry
+
+
+ Indeks
+
+
+ Podwójne przekreślenie
+
+
+ Regularny
+
+
+ Pogrubienie
+
+
+ italski
+
+
+ Skaleczenie
+
+
+ Kopiuj
+
+
+ Pasta
+
+
+ Hiperłącze
+
+
+ Otwórz hiperłącze
+
+
+ Skopiuj hiperłącze
+
+
+ Usuń hiperłącze
+
+
+ Ustęp
+
+
+ Połączone (akapit i znak)
+
+
+ Postać
+
+
+ Scal komórki
+
+
+ Wstaw powyżej
+
+
+ Wstaw poniżej
+
+
+ Wstaw lewy
+
+
+ Wstaw w prawo
+
+
+ Usunąć
+
+
+ Usuń tabelę
+
+
+ Usuń wiersz
+
+
+ Usuń kolumnę
+
+
+ Nazwa pliku
+
+
+ Typ formatu
+
+
+ Zapisać
+
+
+ Nawigacja
+
+
+ Wyniki
+
+
+ Zastąpić
+
+
+ Zamień wszystko
+
+
+ Wymieniliśmy wszystko
+
+
+ Odnaleźć
+
+
+ Brak wyników
+
+
+ Wszystko gotowe
+
+
+ Wynik
+
+
+ z
+
+
+ instancje
+
+
+ z
+
+
+ Kliknij, aby śledzić link
+
+
+ Kontynuuj numerację
+
+
+ Nazwa zakładki
+
+
+ Blisko
+
+
+ Uruchom ponownie o
+
+
+ Nieruchomości
+
+
+ Nazwa
+
+
+ Rodzaj stylu
+
+
+ Styl oparty na
+
+
+ Styl następnego akapitu
+
+
+ Formatowanie
+
+
+ Numeracja i wypunktowania
+
+
+ Numeracja
+
+
+ Zaktualizuj pole
+
+
+ Edytuj pole
+
+
+ Zakładka
+
+
+ Ustawienia strony
+
+
+ Nie znaleziono zakładek
+
+
+ Format
+
+
+ Utwórz nowy styl
+
+
+ Zmień styl
+
+
+ Nowy
+
+
+ Kule
+
+
+ Użyj zakładek
+
+
+ Spis treści
+
+
+ AutoFit
+
+
+ Autodopasowanie do treści
+
+
+ Autodopasowanie do okna
+
+
+ Naprawiono szerokość kolumny
+
+
+ Resetowanie
+
+
+ Sprawa meczu
+
+
+ Całe słowa
+
+
+ Dodaj
+
+
+ Iść do
+
+
+ Szukaj
+
+
+ Zamienić
+
+
+ Spis treści 1
+
+
+ Spis treści 2
+
+
+ Spis treści 3
+
+
+ Spis treści 4
+
+
+ Spis treści 5
+
+
+ Spis treści 6
+
+
+ Spis treści 7
+
+
+ Spis treści 8
+
+
+ Spis treści 9
+
+
+ Od prawej do lewej
+
+
+ Z lewej na prawą
+
+
+ Kierunek
+
+
+ Kierunek stołu
+
+
+ Wcięcie od prawej
+
+
+ Nie dodawaj spacji między akapitami tego samego stylu
+
+
+ Hasło nie pasuje
+
+
+ Ogranicz edycję
+
+
+ Ograniczenia dotyczące formatowania
+
+
+ Zezwalaj na formatowanie
+
+
+ Ograniczenia edycji
+
+
+ Tylko czytać
+
+
+ Wyjątki (opcjonalnie)
+
+
+ Wybierz części dokumentu i wybierz użytkowników, którzy mogą je swobodnie edytować.
+
+
+ Każdy
+
+
+ Więcej użytkowników
+
+
+ Dodaj użytkowników
+
+
+ Tak, zacznij egzekwować ochronę
+
+
+ Rozpocznij egzekwowanie ochrony
+
+
+ Wpisz użytkownika
+
+
+ Użytkownicy
+
+
+ Wprowadź nowe hasło
+
+
+ Wprowadź ponownie nowe hasło, aby potwierdzić
+
+
+ Twoje uprawnienia
+
+
+ Ten dokument jest chroniony przed niezamierzoną edycją.
+
+
+ Możesz formatować tekst tylko w określonych stylach.
+
+
+ Zatrzymaj ochronę
+
+
+ Hasło
+
+
+ Edytor pisowni
+
+
+ Pisownia
+
+
+ Sprawdzanie pisowni
+
+
+ Podkreśl błędy
+
+
+ Ignorować
+
+
+ Ignorować wszystko
+
+
+ Dodaj do słownika
+
+
+ Zmiana
+
+
+ Zmienić wszystko
+
+
+ Propozycje
+
+
+ Hasło jest nieprawidłowe
+
+
+ Błąd podczas nawiązywania połączenia z serwerem WWW
+
+
+ Podświetl regiony, które mogę edytować
+
+
+ Pokaż wszystkie regiony, które mogę edytować
+
+
+ Znajdź następny region, który mogę edytować
+
+
+ Zachowaj formatowanie źródła
+
+
+ Dopasuj formatowanie docelowe
+
+
+ Tylko tekst
+
+
+ Komentarze
+
+
+ Wpisz swój komentarz
+
+
+ Poczta
+
+
+ Odpowiadać
+
+
+ Nowy komentarz
+
+
+ Edytować
+
+
+ Rozwiązać
+
+
+ Otworzyć na nowo
+
+
+ Brak komentarzy w tym dokumencie
+
+
+ więcej
+
+
+ Wpisz tutaj swój komentarz
+
+
+ Następny komentarz
+
+
+ Poprzedni komentarz
+
+
+ Niepublikowane komentarze
+
+
+ Dodane komentarze nie zostały opublikowane. Jeśli będziesz kontynuować, ten komentarz zostanie odrzucony.
+
+
+ Nie znaleziono nagłówka!
+
+
+ Ten dokument nie ma nagłówków. Dodaj nagłówki i spróbuj ponownie.
+
+
+ Więcej opcji
+
+
+ Kliknij, aby zobaczyć ten komentarz
+
+
+ Rozwijane pole formularza
+
+
+ Elementy rozwijane
+
+
+ Elementy na liście rozwijanej
+
+
+ DODAJ
+
+
+ USUNĄĆ
+
+
+ Ustawienia pola
+
+
+ Etykietka
+
+
+ Rozwijane włączone
+
+
+ Pole wyboru Pole formularza
+
+
+ Zaznacz rozmiar pola
+
+
+ Automatyczny
+
+
+ Domyślna wartość
+
+
+ Niesprawdzone
+
+
+ Sprawdzone
+
+
+ Pole wyboru włączone
+
+
+ Pole formularza tekstowego
+
+
+ Rodzaj
+
+
+ Domyślny tekst
+
+
+ Maksymalna długość
+
+
+ Format tekstowy
+
+
+ Wypełnij włączone
+
+
+ Domyślny numer
+
+
+ Domyślna data
+
+
+ Format daty
+
+
+ Ta akcja nie zostanie oznaczona jako zmiana. Czy chcesz kontynuować?
+
+
+ Nie można śledzić
+
+
+ Zaakceptować
+
+
+ Odrzucać
+
+
+ Poprzednie zmiany
+
+
+ Następne zmiany
+
+
+ Wstawiony
+
+
+ Usunięte
+
+
+ Zmiany
+
+
+ Akceptuj wszystkie
+
+
+ Odrzuć wszystko
+
+
+ Bez zmian
+
+
+ Zaakceptuj zmiany
+
+
+ Odrzuć zmiany
+
+
+ Użytkownik
+
+
+ Widok
+
+
+ Odblokuj dokument
+
+
+ Formularze można wypełniać tylko w tym regionie.
+
+
+ Kontrola wdowy/sierot
+
+
+ Wcięcia i odstępy
+
+
+ Łamanie wierszy i stron
+
+
+ Utrzymuj linie razem
+
+
+ Zignoruj raz
+
+
+ Zachowaj z następnym
+
+
+ Tekst etykietki ekranowej
+
+
+ Zachowaj formatowanie źródła
+
+
+ Dopasuj formatowanie docelowe
+
+
+ Możesz wstawiać komentarze tylko w tym regionie.
+
+
+ Liczba wierszy musi wynosić od 1 do 32767
+
+
+ Liczba kolumn musi wynosić od 1 do 63
+
+
+ Informacja
+
+
+ Kropka
+
+
+ Dash Mała Przerwa
+
+
+ kreska kropka
+
+
+ Cienka Gruba Mała Szczelina
+
+
+ Gruba Cienka Mała Szczelina
+
+
+ Gruba Cienka Średnia Szczelina
+
+
+ Gruba Cienka Duża Szczelina
+
+
+ Pojedyncza fala
+
+
+ Podwójne faliste
+
+
+ Wstawka
+
+
+ Dash Duża przerwa
+
+
+ Kreska Kropka Kropka
+
+
+ Potroić
+
+
+ Cienka Gruba Cienka Mała Szczelina
+
+
+ Cienka Gruba Cienka Średnia Szczelina
+
+
+ Cienka Gruba Cienka Duża Szczelina
+
+
+ Przekreślona kropka obrysowana
+
+
+ Graweruj3D
+
+
+ Gruby
+
+
+ Początek
+
+
+ Wytłoczenie3D
+
+
+ Cienka Gruba Duża Szczelina
+
+
+ Cienka Gruba Średnia Szczelina
+
+
+ Zwykły tekst
+
+
+ Data
+
+
+ Duże litery
+
+
+ Małe litery
+
+
+ Pierwszy kapitał
+
+
+ Tytuł sprawy
+
+
+ Przenieść się z
+
+
+ Przenieś do
+
+
+ px
+
+
+ Możesz edytować w tym regionie.
+
+
+Podział sekcji (następna strona)
+
+
+Podział strony
+
+
+Przerwa w kolumnie
+
+
+Jeden
+
+
+Dwa
+
+
+Trzy
+
+
+Presety
+
+
+Kolumny
+
+
+Podziel tekst na dwie lub więcej kolumn
+
+
+Linia między kolumnami
+
+
+Szerokość i odstępy
+
+
+Równa szerokość kolumny
+
+
+Kolumna
+
+
+Podział sekcji (ciągły)
+
+
+ Ze względu na politykę bezpieczeństwa przeglądarki wklejanie ze schowka systemowego jest ograniczone. Alternatywnie użyj skrótu klawiaturowego
+
+
+ Nie pokazuj więcej
+
+
+Kolumny
+
+
+Pokaż ukryte znaki, takie jak spacje, tabulatory, znaki akapitu i przerwy. (Ctrl + *)
+
+
+ Regularny
+
+
+ Pogrubiona kursywa
+
+
+ Nowy
+
+
+ otwarty
+
+
+ Cofnij
+
+
+ Przerobić
+
+
+ Wizerunek
+
+
+ Stół
+
+
+ Połączyć
+
+
+ Zakładka
+
+
+ Spis treści
+
+
+ Nagłówek - - - - 1
+
+
+ Nagłówek - - - - 2
+
+
+ Nagłówek - - - - 3
+
+
+ nagłówek
+
+
+ Stopka
+
+
+ Ustawienia strony
+
+
+ Numer strony
+
+
+ Przerwa
+
+
+ Odnaleźć
+
+
+ Lokalny schowek
+
+
+ Ogranicz edycję
+
+
+ Prześlij z komputera
+
+
+ Według adresu URL
+
+
+ Nagłówek stopka
+
+
+ Opcje
+
+
+ Poziomy
+
+
+ Inna pierwsza strona
+
+
+ Inny nagłówek i stopka dla stron nieparzystych i parzystych.
+
+
+ Różne strony nieparzyste i parzyste
+
+
+ Link do poprzedniego
+
+
+ Inny nagłówek i stopka dla pierwszej strony.
+
+
+ Pozycja
+
+
+ Nagłówek z góry
+
+
+ Stopka od dołu
+
+
+ Odległość od góry strony do góry nagłówka.
+
+
+ Odległość od dołu strony do dołu stopki.
+
+
+ Współczynnik kształtu
+
+
+ W
+
+
+ H
+
+
+ Szerokość
+
+
+ Wysokość
+
+
+ Tekst
+
+
+ Ustęp
+
+
+ Napełnić
+
+
+ Kolor wypełnienia
+
+
+ Styl granicy
+
+
+ Poza granicami
+
+
+ Wszystkie granice
+
+
+ Wewnątrz granic
+
+
+ Lewa granica
+
+
+ Wewnątrz pionowej granicy
+
+
+ Prawa granica
+
+
+ Górna granica
+
+
+ Wewnątrz poziomej granicy
+
+
+ Dolna granica
+
+
+ Kolor ramki
+
+
+ Szerokość granicy
+
+
+ Komórka
+
+
+ Scal komórki
+
+
+ Wstaw / Usuń
+
+
+ Wstaw kolumny po lewej stronie
+
+
+ Wstaw kolumny po prawej stronie
+
+
+ Wstaw wiersze powyżej
+
+
+ Wstaw wiersze poniżej
+
+
+ Usuń wiersze
+
+
+ Usuń kolumny
+
+
+ Margines komórki
+
+
+ Top
+
+
+ Dolny
+
+
+ Lewo
+
+
+ Dobrze
+
+
+ Wyrównaj tekst
+
+
+ Wyrównaj górę
+
+
+ Wyrównaj do dołu
+
+
+ Wyrównaj centrum
+
+
+ Liczba poziomów nagłówka lub konspektu do wyświetlenia w spisie treści.
+
+
+ Pokaż numery stron
+
+
+ Pokaż numery stron w spisie treści.
+
+
+ Wyrównaj do prawej numery stron.
+
+
+ Wyrównaj do prawej numery stron w spisie treści.
+
+
+ Użyj hiperłączy
+
+
+ Użyj hiperłączy zamiast numerów stron.
+
+
+ Czcionka
+
+
+ Rozmiar czcionki
+
+
+ Kolor czcionki
+
+
+ Kolor podświetlenia tekstu
+
+
+ Wyczyść całe formatowanie
+
+
+ Pogrubienie (Ctrl + B)
+
+
+ Kursywa (Ctrl + I)
+
+
+ Podkreśl (Ctrl + U)
+
+
+ Przekreślenie
+
+
+ Indeks górny (Ctrl + Shift ++)
+
+
+ Indeks dolny (Ctrl + =)
+
+
+ Wyrównaj do lewej (Ctrl + L)
+
+
+ Centrum (Ctrl + E)
+
+
+ Wyrównaj do prawej (Ctrl + R)
+
+
+ Justuj (Ctrl + J)
+
+
+ Zmniejsz wcięcie
+
+
+ Zwiększ wcięcie
+
+
+ Odstępy między wierszami
+
+
+ Kule
+
+
+ Numeracja
+
+
+ Style
+
+
+ Zarządzaj stylami
+
+
+ Strona
+
+
+ z
+
+
+ Dopasuj jedną stronę
+
+
+ Sprawdzanie pisowni
+
+
+ Podkreśl błędy
+
+
+ Dopasuj szerokość strony
+
+
+ Aktualizacja
+
+
+ Anuluj
+
+
+ Wstawić
+
+
+ Bez granic
+
+
+ Utwórz nowy dokument.
+
+
+ Otwórz dokument.
+
+
+ Cofnij ostatnią operację (Ctrl + Z).
+
+
+ Wykonaj ostatnią operację (Ctrl + Y).
+
+
+ Wstaw obraz wbudowany z pliku.
+
+
+ Wstaw tabelę do dokumentu.
+
+
+ Utwórz link w dokumencie, aby uzyskać szybki dostęp do stron internetowych i plików (Ctrl + K).
+
+
+ Wstaw zakładkę w określonym miejscu w tym dokumencie.
+
+
+ Podaj przegląd swojego dokumentu, dodając spis treści.
+
+
+ Dodaj lub edytuj nagłówek.
+
+
+ Dodaj lub edytuj stopkę.
+
+
+ Otwórz okno dialogowe konfiguracji strony.
+
+
+ Dodaj numery stron.
+
+
+ Znajdź tekst w dokumencie (Ctrl + F).
+
+
+ Aktualny numer strony w dokumencie. Kliknij lub naciśnij, aby nawigować po określonej stronie.
+
+
+ Tylko czytać
+
+
+ Zabezpieczenia
+
+
+ Błąd podczas nawiązywania połączenia z serwerem WWW
+
+
+ Pojedynczy
+
+
+ Podwójnie
+
+
+ Nowy komentarz
+
+
+ Komentarze
+
+
+ Układ wydruku
+
+
+ Układ sieci
+
+
+ Przełącz między schowkiem wewnętrznym a schowkiem systemowym.
+ Ze względu na zasady bezpieczeństwa przeglądarki dostęp do schowka systemowego za pomocą skryptu jest zabroniony. Zamiast tego
+ 1. Możesz włączyć wewnętrzny schowek do wycinania, kopiowania i wklejania w składniku.
+ 2. Możesz używać skrótów klawiaturowych (Ctrl + X, Ctrl + C i Ctrl + V) do wycinania , kopiuj i wklej ze schowka systemowego.
+
+
+ Formularz tekstowy
+
+
+ Pole wyboru
+
+
+ Upuścić
+
+
+ Zaktualizuj pola
+
+
+ Zaktualizuj pola odsyłaczy.
+
+
+ Śledź zmiany wprowadzone w dokumencie.
+
+
+ Śledzenie zmian
+
+
+ Poziom przybliżenia
+
+
+ Wstaw przypis (Alt + Ctrl + F).
+
+
+ Wstaw przypis końcowy (Alt + Ctrl + D).
+
+
+ Wstaw komentarze
+
+
+ Pola formularza
+
+
+ Informacja
+
+
+ Wszystkie duże litery
+
+
+ Wstawić
+
+
+ Wstawić
+
+
+ Wypełnianie formularzy
+
+
+ Śledzone zmiany
+
+
+ Jeśli wprowadzisz tę zmianę w ochronie dokumentów, program Word zignoruje wszystkie wyjątki w tym dokumencie.
+
+
+ Możesz edytować w tym regionie, ale wszystkie zmiany będą śledzone
+
+
+ Wybrany format pliku nie jest obsługiwany. Proszę wybrać poprawny format.
+
+
+ Wystąpił problem podczas otwierania tego dokumentu
+
+
+ Czy chcesz usunąć ignorowane wyjątki?
+
+
+ TAk
+
+
+ Nie
+
+
+ Pokaż panel właściwości
+
+
+ Ukryj panel właściwości
+
+
+ Ciągły
+
+
+ Kolumna
+
+
+ Strona
+
+
+ Następna strona
+
+
+ Podziały stron
+
+
+ Podziały sekcji
+
+
+ Adres tej witryny jest nieprawidłowy. Sprawdź adres i spróbuj ponownie.
+
+
+ OK
+
+
+ Wybierz inne zadanie
+
+
+ Wybierz pozycję złącza
+
+
+ Lewy
+
+
+ Dobrze
+
+
+ Eksportuj adnotację do pliku XFDF
+
+
+ Importuj adnotacje z pliku XFDF
+
+
+ Informacja
+
+
+ Linia skumulowana
+
+
+ 100% skumulowana linia
+
+
+ Żaden
+
+
+ Ładowanie...
+
+
+ dobrze
+
+
+ anulować
+
+
+ Nie pokazuj sum częściowych
+
+
+ Pokaż tylko kolumny z sumami częściowymi
+
+
+ Pokaż tylko wiersze z sumami częściowymi
+
+
+ Pokaż sumy częściowe
+
+
+ Pozycja sum częściowych
+
+
+ Pozycja sum całkowitych
+
+
+ Pojedynczy
+
+
+ Automatyczny
+
+
+ Pager wiersza
+
+
+ Wiersze na stronę
+
+
+ Pager kolumnowy
+
+
+ Kolumny na stronę
+
+
+ Przejdź do pierwszej strony
+
+
+ Przejdź do ostatniej strony
+
+
+ Przejdź do następnej strony
+
+
+ Wróć do poprzedniej strony
+
+
+ Wybierz
+
+
+ Filtry czasowe
+
+
+ To samo co Poprzednie
+
+
+ Sekcja
+
+
+ Nagłówek strony nieparzystej
+
+
+ Stopka strony nieparzystej
+
+
+ Parzysty nagłówek strony
+
+
+ Nawet stopka strony
+
+
+ Nagłówek pierwszej strony
+
+
+ Stopka pierwszej strony
+
+
+ Alternatywny tekst
+
+
+ i
+
+
+ Tytuł
+
+
+ Opis
+
+
+ Tekst alternatywny
+
+
+ dobrze
+
+
+ Nie wspierany plik
+
+
+ Upuszczony plik nie jest obsługiwany.
+
+
+ Upuść swój obraz tutaj lub
+
+
\ No newline at end of file
diff --git a/Common/Change the locale content for the word Clear/ChangeLocale/Resources/SfResources.resx b/Common/Change the locale content for the word Clear/ChangeLocale/Resources/SfResources.resx
new file mode 100644
index 00000000..93b93be7
--- /dev/null
+++ b/Common/Change the locale content for the word Clear/ChangeLocale/Resources/SfResources.resx
@@ -0,0 +1,4992 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 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
+
+
+ The Request Failed
+
+
+ No Records Found
+
+
+ Today
+
+
+ The 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
+
+
+ The Request Failed
+
+
+ No Records Found
+
+
+ The 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
+
+
+ Repeat 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
+
+
+ Delete Series
+
+
+ Delete Event
+
+
+ Description
+
+
+ Edit
+
+
+ How would you like to change the appointment in the series?
+
+
+ Edit Event
+
+
+ Following Events
+
+
+ Edit Recurrence
+
+
+ Edit 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
+
+
+ New Event
+
+
+ Next
+
+
+ No
+
+
+ No events
+
+
+ No records found
+
+
+ (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?
+
+
+ Showing events until
+
+
+ Start
+
+
+ Start Time
+
+
+ The selected end date occurs before the start date.
+
+
+ Start Time zone
+
+
+ Title
+
+
+ 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
+
+
+ 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
+
+
+ Doughnut
+
+
+ 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
+
+
+ Funnel
+
+
+ Grand Total
+
+
+ Grand totals
+
+
+ Greater Than
+
+
+ Greater Than Or Equal To
+
+
+ Group
+
+
+ Enter the caption to display in header
+
+
+ Grouped
+
+
+ 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
+
+
+ Median
+
+
+ Member
+
+
+ more items. Search to refine further.
+
+
+ Min
+
+
+ Minutes
+
+
+ Months
+
+
+ More...
+
+
+ Multiple Axis Mode
+
+
+ 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
+
+
+ Pie
+
+
+ PNG
+
+
+ Polar
+
+
+ Population StDev
+
+
+ Population Var
+
+
+ Product
+
+
+ Pyramid
+
+
+ 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
+
+
+ Stacked
+
+
+ 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 Axes
+
+
+ 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
+
+
+ Pan
+
+
+ Reset
+
+
+ Zoom
+
+
+ Zoom in
+
+
+ Zoom out
+
+
+ Pan
+
+
+ Reset
+
+
+ Zoom
+
+
+ Zoom in
+
+
+ Zoom out
+
+
+ Reset Zoom
+
+
+ Apply
+
+
+ Cancel
+
+
+ Switch Mode
+
+
+ The 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
+
+
+ Bring To Front
+
+
+ Copy
+
+
+ Cut
+
+
+ Group
+
+
+ Grouping
+
+
+ Move Forward
+
+
+ Order
+
+
+ Paste
+
+
+ Redo
+
+
+ Select All
+
+
+ Send Backward
+
+
+ Send To Back
+
+
+ Undo
+
+
+ Ungroup
+
+
+ H
+
+
+ W
+
+
+ X
+
+
+ Y
+
+
+ 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 Files
+
+
+ Are you sure you want to delete these {0} files?
+
+
+ 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?
+
+
+ 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
+
+
+ Indent
+
+
+ Outdent
+
+
+ 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:
+
+
+ {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/Common/Change the locale content for the word Clear/ChangeLocale/Resources/SyncfusionLocalizer.cs b/Common/Change the locale content for the word Clear/ChangeLocale/Resources/SyncfusionLocalizer.cs
new file mode 100644
index 00000000..138a7fe4
--- /dev/null
+++ b/Common/Change the locale content for the word Clear/ChangeLocale/Resources/SyncfusionLocalizer.cs
@@ -0,0 +1,22 @@
+using Syncfusion.Blazor;
+
+public class SyncfusionLocalizer : ISyncfusionStringLocalizer
+{
+ public string GetText(string key)
+ {
+ return this.ResourceManager.GetString(key);
+ }
+
+ public System.Resources.ResourceManager ResourceManager
+ {
+ get
+ {
+ // Replace the ApplicationNamespace with your application name.
+ return ChangeLocale.Resources.SfResources.ResourceManager;
+
+ //For .Net Maui Blazor App
+ // Replace the ApplicationNamespace with your application name.
+ //return ApplicationNamespace.LocalizationResources.SfResources.ResourceManager;
+ }
+ }
+}
\ No newline at end of file
diff --git a/Common/Change the locale content for the word Clear/ChangeLocale/appsettings.Development.json b/Common/Change the locale content for the word Clear/ChangeLocale/appsettings.Development.json
new file mode 100644
index 00000000..0c208ae9
--- /dev/null
+++ b/Common/Change the locale content for the word Clear/ChangeLocale/appsettings.Development.json
@@ -0,0 +1,8 @@
+{
+ "Logging": {
+ "LogLevel": {
+ "Default": "Information",
+ "Microsoft.AspNetCore": "Warning"
+ }
+ }
+}
diff --git a/Common/Change the locale content for the word Clear/ChangeLocale/appsettings.json b/Common/Change the locale content for the word Clear/ChangeLocale/appsettings.json
new file mode 100644
index 00000000..10f68b8c
--- /dev/null
+++ b/Common/Change the locale content for the word Clear/ChangeLocale/appsettings.json
@@ -0,0 +1,9 @@
+{
+ "Logging": {
+ "LogLevel": {
+ "Default": "Information",
+ "Microsoft.AspNetCore": "Warning"
+ }
+ },
+ "AllowedHosts": "*"
+}
diff --git a/Common/Change the locale content for the word Clear/ChangeLocale/wwwroot/app.css b/Common/Change the locale content for the word Clear/ChangeLocale/wwwroot/app.css
new file mode 100644
index 00000000..2bd9b789
--- /dev/null
+++ b/Common/Change the locale content for the word Clear/ChangeLocale/wwwroot/app.css
@@ -0,0 +1,51 @@
+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;
+}
diff --git a/Common/Change the locale content for the word Clear/ChangeLocale/wwwroot/bootstrap/bootstrap.min.css b/Common/Change the locale content for the word Clear/ChangeLocale/wwwroot/bootstrap/bootstrap.min.css
new file mode 100644
index 00000000..02ae65b5
--- /dev/null
+++ b/Common/Change the locale content for the word Clear/ChangeLocale/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/Common/Change the locale content for the word Clear/ChangeLocale/wwwroot/bootstrap/bootstrap.min.css.map b/Common/Change the locale content for the word Clear/ChangeLocale/wwwroot/bootstrap/bootstrap.min.css.map
new file mode 100644
index 00000000..afcd9e33
--- /dev/null
+++ b/Common/Change the locale content for the word Clear/ChangeLocale/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-`