diff --git a/src/Application/Application.csproj b/src/Application/Application.csproj index 0b56f8a4..0f380b4a 100644 --- a/src/Application/Application.csproj +++ b/src/Application/Application.csproj @@ -36,7 +36,87 @@ + + + + + True + True + ImportCustomersCommandHandler.resx + + + True + True + ExportCustomersQueryHandler.resx + + + True + True + ExportDocumentsQueryHandler.resx + + + True + True + ImportDocumentTypesCommandHandler.resx + + + True + True + ExportDocumentTypesQueryHandler.resx + + + True + True + ExportApprovalDatasQueryHandler.resx + + + True + True + ImportKeyValuesCommandHandler.resx + + + True + True + ExportKeyValuesQueryHandler.resx + + + + + + ResXFileCodeGenerator + ImportCustomersCommandHandler.Designer.cs + + + ResXFileCodeGenerator + ExportCustomersQueryHandler.Designer.cs + + + ResXFileCodeGenerator + ExportDocumentsQueryHandler.Designer.cs + + + ResXFileCodeGenerator + ImportDocumentTypesCommandHandler.Designer.cs + + + ResXFileCodeGenerator + ExportDocumentTypesQueryHandler.Designer.cs + + + ResXFileCodeGenerator + ExportApprovalDatasQueryHandler.Designer.cs + + + ResXFileCodeGenerator + ImportKeyValuesCommandHandler.Designer.cs + + + ResXFileCodeGenerator + ExportKeyValuesQueryHandler.Designer.cs + + + diff --git a/src/Application/Customers/Commands/Import/ImportCustomersCommand.cs b/src/Application/Customers/Commands/Import/ImportCustomersCommand.cs index 385c6a4b..520ef9a7 100644 --- a/src/Application/Customers/Commands/Import/ImportCustomersCommand.cs +++ b/src/Application/Customers/Commands/Import/ImportCustomersCommand.cs @@ -68,6 +68,7 @@ public async Task Handle(ImportCustomersCommand request, CancellationTok { _localizer["Address"], (row,item) => item.Address = row[_localizer["Address"]].ToString() }, { _localizer["Address Of English"], (row,item) => item.AddressOfEnglish = row[_localizer["Address Of English"]]?.ToString() }, { _localizer["Contract"], (row,item) => item.Contract = row[_localizer["Contract"]]?.ToString() }, + { _localizer["Email"], (row,item) => item.Email = row[_localizer["Email"]]?.ToString() }, { _localizer["Phone Number"], (row,item) => item.PhoneNumber = row[_localizer["Phone Number"]]?.ToString() }, { _localizer["Fax"], (row,item) => item.Fax = row[_localizer["Fax"]]?.ToString() }, { _localizer["Comments"], (row,item) => item.Comments = row[_localizer["Comments"]]?.ToString() } @@ -123,6 +124,7 @@ public async Task Handle(CreateCustomerTemplateCommand request, Cancella _localizer["Address"], _localizer["Address Of English"], _localizer["Contract"], + _localizer["Email"], _localizer["Phone Number"], _localizer["Fax"], _localizer["Comments"], diff --git a/src/Application/Features/ApprovalDatas/Queries/Export/ExportApprovalDatasQuery.cs b/src/Application/Features/ApprovalDatas/Queries/Export/ExportApprovalDatasQuery.cs index 2b9de8f5..0f188983 100644 --- a/src/Application/Features/ApprovalDatas/Queries/Export/ExportApprovalDatasQuery.cs +++ b/src/Application/Features/ApprovalDatas/Queries/Export/ExportApprovalDatasQuery.cs @@ -68,7 +68,7 @@ public async Task Handle(ExportApprovalDatasQuery request, CancellationT { _localizer["Outcome"], item => item.Outcome }, { _localizer["Comments"], item => item.Comments }, { _localizer["Approved DateTime"], item => item.ApprovedDateTime?.ToString("yyyy-MM-dd HH:mm:ss") } - }, _localizer["Documents"] + }, _localizer["ApprovalHistories"] ); return result; } diff --git a/src/Application/Resources/Customers/Commands/Import/ImportCustomersCommandHandler.Designer.cs b/src/Application/Resources/Customers/Commands/Import/ImportCustomersCommandHandler.Designer.cs new file mode 100644 index 00000000..2425cd99 --- /dev/null +++ b/src/Application/Resources/Customers/Commands/Import/ImportCustomersCommandHandler.Designer.cs @@ -0,0 +1,199 @@ +//------------------------------------------------------------------------------ +// +// 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 CleanArchitecture.Razor.Application.Resources.Customers.Commands.Import { + 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()] + internal class ImportCustomersCommandHandler { + + private static global::System.Resources.ResourceManager resourceMan; + + private static global::System.Globalization.CultureInfo resourceCulture; + + [global::System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")] + internal ImportCustomersCommandHandler() { + } + + /// + /// Returns the cached ResourceManager instance used by this class. + /// + [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)] + internal static global::System.Resources.ResourceManager ResourceManager { + get { + if (object.ReferenceEquals(resourceMan, null)) { + global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("CleanArchitecture.Razor.Application.Resources.Customers.Commands.Import.ImportCus" + + "tomersCommandHandler", typeof(ImportCustomersCommandHandler).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)] + internal static global::System.Globalization.CultureInfo Culture { + get { + return resourceCulture; + } + set { + resourceCulture = value; + } + } + + /// + /// Looks up a localized string similar to Address. + /// + internal static string Address { + get { + return ResourceManager.GetString("Address", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Address Of English. + /// + internal static string Address_Of_English { + get { + return ResourceManager.GetString("Address Of English", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Comments. + /// + internal static string Comments { + get { + return ResourceManager.GetString("Comments", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Contract. + /// + internal static string Contract { + get { + return ResourceManager.GetString("Contract", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Customers. + /// + internal static string Customers { + get { + return ResourceManager.GetString("Customers", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Email. + /// + internal static string Email { + get { + return ResourceManager.GetString("Email", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Fax. + /// + internal static string Fax { + get { + return ResourceManager.GetString("Fax", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Group Name. + /// + internal static string Group_Name { + get { + return ResourceManager.GetString("Group Name", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Name. + /// + internal static string Name { + get { + return ResourceManager.GetString("Name", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Name Of English. + /// + internal static string Name_Of_English { + get { + return ResourceManager.GetString("Name Of English", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Partner Type. + /// + internal static string Partner_Type { + get { + return ResourceManager.GetString("Partner Type", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Phone Number. + /// + internal static string Phone_Number { + get { + return ResourceManager.GetString("Phone Number", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Region. + /// + internal static string Region { + get { + return ResourceManager.GetString("Region", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Region Sales Director. + /// + internal static string Region_Sales_Director { + get { + return ResourceManager.GetString("Region Sales Director", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Sales. + /// + internal static string Sales { + get { + return ResourceManager.GetString("Sales", resourceCulture); + } + } + } +} diff --git a/src/Application/Resources/Customers/Commands/Import/ImportCustomersCommandHandler.de-DE.resx b/src/Application/Resources/Customers/Commands/Import/ImportCustomersCommandHandler.de-DE.resx new file mode 100644 index 00000000..c8f0e937 --- /dev/null +++ b/src/Application/Resources/Customers/Commands/Import/ImportCustomersCommandHandler.de-DE.resx @@ -0,0 +1,165 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 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 + + + Address + + + Adresse des Englischen + + + Kommentare + + + Vertrag + + + Kundschaft + + + E-Mail + + + Fax + + + Gruppenname + + + Name + + + Name des Englischen + + + Partnertyp + + + Telefonnummer + + + Region + + + Vertriebsleiter Region + + + Umsatz + + \ No newline at end of file diff --git a/src/Application/Resources/Customers/Commands/Import/ImportCustomersCommandHandler.en.resx b/src/Application/Resources/Customers/Commands/Import/ImportCustomersCommandHandler.en.resx new file mode 100644 index 00000000..6a565a7e --- /dev/null +++ b/src/Application/Resources/Customers/Commands/Import/ImportCustomersCommandHandler.en.resx @@ -0,0 +1,165 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 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 + + + Address + + + Address Of English + + + Comments + + + Contract + + + Customers + + + Email + + + Fax + + + Group Name + + + Name + + + Name Of English + + + Partner Type + + + Phone Number + + + Region + + + Region Sales Director + + + Sales + + \ No newline at end of file diff --git a/src/Application/Resources/Customers/Commands/Import/ImportCustomersCommandHandler.ja-JP.resx b/src/Application/Resources/Customers/Commands/Import/ImportCustomersCommandHandler.ja-JP.resx new file mode 100644 index 00000000..2f8decbb --- /dev/null +++ b/src/Application/Resources/Customers/Commands/Import/ImportCustomersCommandHandler.ja-JP.resx @@ -0,0 +1,165 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 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 newline at end of file diff --git a/src/Application/Resources/Customers/Commands/Import/ImportCustomersCommandHandler.resx b/src/Application/Resources/Customers/Commands/Import/ImportCustomersCommandHandler.resx new file mode 100644 index 00000000..6a565a7e --- /dev/null +++ b/src/Application/Resources/Customers/Commands/Import/ImportCustomersCommandHandler.resx @@ -0,0 +1,165 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 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 + + + Address + + + Address Of English + + + Comments + + + Contract + + + Customers + + + Email + + + Fax + + + Group Name + + + Name + + + Name Of English + + + Partner Type + + + Phone Number + + + Region + + + Region Sales Director + + + Sales + + \ No newline at end of file diff --git a/src/Application/Resources/Customers/Commands/Import/ImportCustomersCommandHandler.ru.resx b/src/Application/Resources/Customers/Commands/Import/ImportCustomersCommandHandler.ru.resx new file mode 100644 index 00000000..1700f1ac --- /dev/null +++ b/src/Application/Resources/Customers/Commands/Import/ImportCustomersCommandHandler.ru.resx @@ -0,0 +1,165 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 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 newline at end of file diff --git a/src/Application/Resources/Customers/Commands/Import/ImportCustomersCommandHandler.zh-CN.resx b/src/Application/Resources/Customers/Commands/Import/ImportCustomersCommandHandler.zh-CN.resx new file mode 100644 index 00000000..8b90b752 --- /dev/null +++ b/src/Application/Resources/Customers/Commands/Import/ImportCustomersCommandHandler.zh-CN.resx @@ -0,0 +1,165 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 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 newline at end of file diff --git a/src/Application/Resources/Customers/Queries/Export/ExportCustomersQueryHandler.Designer.cs b/src/Application/Resources/Customers/Queries/Export/ExportCustomersQueryHandler.Designer.cs new file mode 100644 index 00000000..aa37d550 --- /dev/null +++ b/src/Application/Resources/Customers/Queries/Export/ExportCustomersQueryHandler.Designer.cs @@ -0,0 +1,199 @@ +//------------------------------------------------------------------------------ +// +// 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 CleanArchitecture.Razor.Application.Resources.Customers.Queries.Export { + 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()] + internal class ExportCustomersQueryHandler { + + private static global::System.Resources.ResourceManager resourceMan; + + private static global::System.Globalization.CultureInfo resourceCulture; + + [global::System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")] + internal ExportCustomersQueryHandler() { + } + + /// + /// Returns the cached ResourceManager instance used by this class. + /// + [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)] + internal static global::System.Resources.ResourceManager ResourceManager { + get { + if (object.ReferenceEquals(resourceMan, null)) { + global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("CleanArchitecture.Razor.Application.Resources.Customers.Queries.Export.ExportCust" + + "omersQueryHandler", typeof(ExportCustomersQueryHandler).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)] + internal static global::System.Globalization.CultureInfo Culture { + get { + return resourceCulture; + } + set { + resourceCulture = value; + } + } + + /// + /// Looks up a localized string similar to Address. + /// + internal static string Address { + get { + return ResourceManager.GetString("Address", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Address Of English. + /// + internal static string Address_Of_English { + get { + return ResourceManager.GetString("Address Of English", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Comments. + /// + internal static string Comments { + get { + return ResourceManager.GetString("Comments", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Contract. + /// + internal static string Contract { + get { + return ResourceManager.GetString("Contract", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Customers. + /// + internal static string Customers { + get { + return ResourceManager.GetString("Customers", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Email. + /// + internal static string Email { + get { + return ResourceManager.GetString("Email", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Fax. + /// + internal static string Fax { + get { + return ResourceManager.GetString("Fax", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Group Name. + /// + internal static string Group_Name { + get { + return ResourceManager.GetString("Group Name", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Name. + /// + internal static string Name { + get { + return ResourceManager.GetString("Name", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Name Of English. + /// + internal static string Name_Of_English { + get { + return ResourceManager.GetString("Name Of English", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Partner Type. + /// + internal static string Partner_Type { + get { + return ResourceManager.GetString("Partner Type", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Phone Number. + /// + internal static string Phone_Number { + get { + return ResourceManager.GetString("Phone Number", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Region. + /// + internal static string Region { + get { + return ResourceManager.GetString("Region", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Region Sales Director. + /// + internal static string Region_Sales_Director { + get { + return ResourceManager.GetString("Region Sales Director", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Sales. + /// + internal static string Sales { + get { + return ResourceManager.GetString("Sales", resourceCulture); + } + } + } +} diff --git a/src/Application/Resources/Customers/Queries/Export/ExportCustomersQueryHandler.de-DE.resx b/src/Application/Resources/Customers/Queries/Export/ExportCustomersQueryHandler.de-DE.resx new file mode 100644 index 00000000..7359b780 --- /dev/null +++ b/src/Application/Resources/Customers/Queries/Export/ExportCustomersQueryHandler.de-DE.resx @@ -0,0 +1,165 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 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 + + + Adresse + + + Kommentare + + + Adresse des Englischen + + + Vertrag + + + Kundschaft + + + E-Mail + + + Fax + + + Gruppenname + + + Name + + + Name des Englischen + + + Partnertyp + + + Telefonnummer + + + Region + + + Vertriebsleiter Region + + + Umsatz + + \ No newline at end of file diff --git a/src/Application/Resources/Customers/Queries/Export/ExportCustomersQueryHandler.en.resx b/src/Application/Resources/Customers/Queries/Export/ExportCustomersQueryHandler.en.resx new file mode 100644 index 00000000..b79f125f --- /dev/null +++ b/src/Application/Resources/Customers/Queries/Export/ExportCustomersQueryHandler.en.resx @@ -0,0 +1,165 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 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 + + + Address + + + Comments + + + Address Of English + + + Contract + + + Customers + + + Email + + + Fax + + + Group Name + + + Name + + + Name Of English + + + Partner Type + + + Phone Number + + + Region + + + Region Sales Director + + + Sales + + \ No newline at end of file diff --git a/src/Application/Resources/Customers/Queries/Export/ExportCustomersQueryHandler.ja-JP.resx b/src/Application/Resources/Customers/Queries/Export/ExportCustomersQueryHandler.ja-JP.resx new file mode 100644 index 00000000..99d3bbf8 --- /dev/null +++ b/src/Application/Resources/Customers/Queries/Export/ExportCustomersQueryHandler.ja-JP.resx @@ -0,0 +1,165 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 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 newline at end of file diff --git a/src/Application/Resources/Customers/Queries/Export/ExportCustomersQueryHandler.resx b/src/Application/Resources/Customers/Queries/Export/ExportCustomersQueryHandler.resx new file mode 100644 index 00000000..6a565a7e --- /dev/null +++ b/src/Application/Resources/Customers/Queries/Export/ExportCustomersQueryHandler.resx @@ -0,0 +1,165 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 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 + + + Address + + + Address Of English + + + Comments + + + Contract + + + Customers + + + Email + + + Fax + + + Group Name + + + Name + + + Name Of English + + + Partner Type + + + Phone Number + + + Region + + + Region Sales Director + + + Sales + + \ No newline at end of file diff --git a/src/Application/Resources/Customers/Queries/Export/ExportCustomersQueryHandler.ru.resx b/src/Application/Resources/Customers/Queries/Export/ExportCustomersQueryHandler.ru.resx new file mode 100644 index 00000000..176addf6 --- /dev/null +++ b/src/Application/Resources/Customers/Queries/Export/ExportCustomersQueryHandler.ru.resx @@ -0,0 +1,165 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 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 newline at end of file diff --git a/src/Application/Resources/Customers/Queries/Export/ExportCustomersQueryHandler.zh-CN.resx b/src/Application/Resources/Customers/Queries/Export/ExportCustomersQueryHandler.zh-CN.resx new file mode 100644 index 00000000..21b83bca --- /dev/null +++ b/src/Application/Resources/Customers/Queries/Export/ExportCustomersQueryHandler.zh-CN.resx @@ -0,0 +1,165 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 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 newline at end of file diff --git a/src/Application/Resources/DocumentTypes/Commands/Import/ImportDocumentTypesCommandHandler.Designer.cs b/src/Application/Resources/DocumentTypes/Commands/Import/ImportDocumentTypesCommandHandler.Designer.cs new file mode 100644 index 00000000..451a547c --- /dev/null +++ b/src/Application/Resources/DocumentTypes/Commands/Import/ImportDocumentTypesCommandHandler.Designer.cs @@ -0,0 +1,91 @@ +//------------------------------------------------------------------------------ +// +// 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 CleanArchitecture.Razor.Application.Resources.DocumentTypes.Commands.Import { + 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()] + internal class ImportDocumentTypesCommandHandler { + + private static global::System.Resources.ResourceManager resourceMan; + + private static global::System.Globalization.CultureInfo resourceCulture; + + [global::System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")] + internal ImportDocumentTypesCommandHandler() { + } + + /// + /// Returns the cached ResourceManager instance used by this class. + /// + [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)] + internal static global::System.Resources.ResourceManager ResourceManager { + get { + if (object.ReferenceEquals(resourceMan, null)) { + global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("CleanArchitecture.Razor.Application.Resources.DocumentTypes.Commands.Import.Impor" + + "tDocumentTypesCommandHandler", typeof(ImportDocumentTypesCommandHandler).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)] + internal static global::System.Globalization.CultureInfo Culture { + get { + return resourceCulture; + } + set { + resourceCulture = value; + } + } + + /// + /// Looks up a localized string similar to Description. + /// + internal static string Description { + get { + return ResourceManager.GetString("Description", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to DocumentTypes. + /// + internal static string DocumentTypes { + get { + return ResourceManager.GetString("DocumentTypes", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Name. + /// + internal static string Name { + get { + return ResourceManager.GetString("Name", resourceCulture); + } + } + } +} diff --git a/src/Application/Resources/DocumentTypes/Commands/Import/ImportDocumentTypesCommandHandler.de-DE.resx b/src/Application/Resources/DocumentTypes/Commands/Import/ImportDocumentTypesCommandHandler.de-DE.resx new file mode 100644 index 00000000..3dc904f3 --- /dev/null +++ b/src/Application/Resources/DocumentTypes/Commands/Import/ImportDocumentTypesCommandHandler.de-DE.resx @@ -0,0 +1,129 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 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 + + + Beschreibung + + + Dokumenttypen + + + Name + + \ No newline at end of file diff --git a/src/Application/Resources/DocumentTypes/Commands/Import/ImportDocumentTypesCommandHandler.en.resx b/src/Application/Resources/DocumentTypes/Commands/Import/ImportDocumentTypesCommandHandler.en.resx new file mode 100644 index 00000000..1d8c3461 --- /dev/null +++ b/src/Application/Resources/DocumentTypes/Commands/Import/ImportDocumentTypesCommandHandler.en.resx @@ -0,0 +1,129 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 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 + + + Description + + + DocumentTypes + + + Name + + \ No newline at end of file diff --git a/src/Application/Resources/DocumentTypes/Commands/Import/ImportDocumentTypesCommandHandler.ja-JP.resx b/src/Application/Resources/DocumentTypes/Commands/Import/ImportDocumentTypesCommandHandler.ja-JP.resx new file mode 100644 index 00000000..637145a8 --- /dev/null +++ b/src/Application/Resources/DocumentTypes/Commands/Import/ImportDocumentTypesCommandHandler.ja-JP.resx @@ -0,0 +1,129 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 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 newline at end of file diff --git a/src/Application/Resources/DocumentTypes/Commands/Import/ImportDocumentTypesCommandHandler.resx b/src/Application/Resources/DocumentTypes/Commands/Import/ImportDocumentTypesCommandHandler.resx new file mode 100644 index 00000000..1d8c3461 --- /dev/null +++ b/src/Application/Resources/DocumentTypes/Commands/Import/ImportDocumentTypesCommandHandler.resx @@ -0,0 +1,129 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 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 + + + Description + + + DocumentTypes + + + Name + + \ No newline at end of file diff --git a/src/Application/Resources/DocumentTypes/Commands/Import/ImportDocumentTypesCommandHandler.ru.resx b/src/Application/Resources/DocumentTypes/Commands/Import/ImportDocumentTypesCommandHandler.ru.resx new file mode 100644 index 00000000..d8a5dc84 --- /dev/null +++ b/src/Application/Resources/DocumentTypes/Commands/Import/ImportDocumentTypesCommandHandler.ru.resx @@ -0,0 +1,129 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 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 newline at end of file diff --git a/src/Application/Resources/DocumentTypes/Commands/Import/ImportDocumentTypesCommandHandler.zh-CN.resx b/src/Application/Resources/DocumentTypes/Commands/Import/ImportDocumentTypesCommandHandler.zh-CN.resx new file mode 100644 index 00000000..adb51fbe --- /dev/null +++ b/src/Application/Resources/DocumentTypes/Commands/Import/ImportDocumentTypesCommandHandler.zh-CN.resx @@ -0,0 +1,129 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 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 newline at end of file diff --git a/src/Application/Resources/DocumentTypes/Queries/Export/ExportDocumentTypesQueryHandler.Designer.cs b/src/Application/Resources/DocumentTypes/Queries/Export/ExportDocumentTypesQueryHandler.Designer.cs new file mode 100644 index 00000000..371764a2 --- /dev/null +++ b/src/Application/Resources/DocumentTypes/Queries/Export/ExportDocumentTypesQueryHandler.Designer.cs @@ -0,0 +1,91 @@ +//------------------------------------------------------------------------------ +// +// 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 CleanArchitecture.Razor.Application.Resources.DocumentTypes.Queries.Export { + 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()] + internal class ExportDocumentTypesQueryHandler { + + private static global::System.Resources.ResourceManager resourceMan; + + private static global::System.Globalization.CultureInfo resourceCulture; + + [global::System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")] + internal ExportDocumentTypesQueryHandler() { + } + + /// + /// Returns the cached ResourceManager instance used by this class. + /// + [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)] + internal static global::System.Resources.ResourceManager ResourceManager { + get { + if (object.ReferenceEquals(resourceMan, null)) { + global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("CleanArchitecture.Razor.Application.Resources.DocumentTypes.Queries.Export.Export" + + "DocumentTypesQueryHandler", typeof(ExportDocumentTypesQueryHandler).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)] + internal static global::System.Globalization.CultureInfo Culture { + get { + return resourceCulture; + } + set { + resourceCulture = value; + } + } + + /// + /// Looks up a localized string similar to Description. + /// + internal static string Description { + get { + return ResourceManager.GetString("Description", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to DocumentTypes. + /// + internal static string DocumentTypes { + get { + return ResourceManager.GetString("DocumentTypes", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Name. + /// + internal static string Name { + get { + return ResourceManager.GetString("Name", resourceCulture); + } + } + } +} diff --git a/src/Application/Resources/DocumentTypes/Queries/Export/ExportDocumentTypesQueryHandler.de-DE.resx b/src/Application/Resources/DocumentTypes/Queries/Export/ExportDocumentTypesQueryHandler.de-DE.resx new file mode 100644 index 00000000..3dc904f3 --- /dev/null +++ b/src/Application/Resources/DocumentTypes/Queries/Export/ExportDocumentTypesQueryHandler.de-DE.resx @@ -0,0 +1,129 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 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 + + + Beschreibung + + + Dokumenttypen + + + Name + + \ No newline at end of file diff --git a/src/Application/Resources/DocumentTypes/Queries/Export/ExportDocumentTypesQueryHandler.en.resx b/src/Application/Resources/DocumentTypes/Queries/Export/ExportDocumentTypesQueryHandler.en.resx new file mode 100644 index 00000000..1d8c3461 --- /dev/null +++ b/src/Application/Resources/DocumentTypes/Queries/Export/ExportDocumentTypesQueryHandler.en.resx @@ -0,0 +1,129 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 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 + + + Description + + + DocumentTypes + + + Name + + \ No newline at end of file diff --git a/src/Application/Resources/DocumentTypes/Queries/Export/ExportDocumentTypesQueryHandler.ja-JP.resx b/src/Application/Resources/DocumentTypes/Queries/Export/ExportDocumentTypesQueryHandler.ja-JP.resx new file mode 100644 index 00000000..637145a8 --- /dev/null +++ b/src/Application/Resources/DocumentTypes/Queries/Export/ExportDocumentTypesQueryHandler.ja-JP.resx @@ -0,0 +1,129 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 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 newline at end of file diff --git a/src/Application/Resources/DocumentTypes/Queries/Export/ExportDocumentTypesQueryHandler.resx b/src/Application/Resources/DocumentTypes/Queries/Export/ExportDocumentTypesQueryHandler.resx new file mode 100644 index 00000000..1d8c3461 --- /dev/null +++ b/src/Application/Resources/DocumentTypes/Queries/Export/ExportDocumentTypesQueryHandler.resx @@ -0,0 +1,129 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 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 + + + Description + + + DocumentTypes + + + Name + + \ No newline at end of file diff --git a/src/Application/Resources/DocumentTypes/Queries/Export/ExportDocumentTypesQueryHandler.ru.resx b/src/Application/Resources/DocumentTypes/Queries/Export/ExportDocumentTypesQueryHandler.ru.resx new file mode 100644 index 00000000..d8a5dc84 --- /dev/null +++ b/src/Application/Resources/DocumentTypes/Queries/Export/ExportDocumentTypesQueryHandler.ru.resx @@ -0,0 +1,129 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 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 newline at end of file diff --git a/src/Application/Resources/DocumentTypes/Queries/Export/ExportDocumentTypesQueryHandler.zh-CN.resx b/src/Application/Resources/DocumentTypes/Queries/Export/ExportDocumentTypesQueryHandler.zh-CN.resx new file mode 100644 index 00000000..adb51fbe --- /dev/null +++ b/src/Application/Resources/DocumentTypes/Queries/Export/ExportDocumentTypesQueryHandler.zh-CN.resx @@ -0,0 +1,129 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 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 newline at end of file diff --git a/src/Application/Resources/Documents/Queries/Export/ExportDocumentsQueryHandler.Designer.cs b/src/Application/Resources/Documents/Queries/Export/ExportDocumentsQueryHandler.Designer.cs new file mode 100644 index 00000000..e1cd3ffc --- /dev/null +++ b/src/Application/Resources/Documents/Queries/Export/ExportDocumentsQueryHandler.Designer.cs @@ -0,0 +1,109 @@ +//------------------------------------------------------------------------------ +// +// 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 CleanArchitecture.Razor.Application.Resources.Documents.Queries.Export { + 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()] + internal class ExportDocumentsQueryHandler { + + private static global::System.Resources.ResourceManager resourceMan; + + private static global::System.Globalization.CultureInfo resourceCulture; + + [global::System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")] + internal ExportDocumentsQueryHandler() { + } + + /// + /// Returns the cached ResourceManager instance used by this class. + /// + [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)] + internal static global::System.Resources.ResourceManager ResourceManager { + get { + if (object.ReferenceEquals(resourceMan, null)) { + global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("CleanArchitecture.Razor.Application.Resources.Documents.Queries.Export.ExportDocu" + + "mentsQueryHandler", typeof(ExportDocumentsQueryHandler).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)] + internal static global::System.Globalization.CultureInfo Culture { + get { + return resourceCulture; + } + set { + resourceCulture = value; + } + } + + /// + /// Looks up a localized string similar to Created By. + /// + internal static string Created_By { + get { + return ResourceManager.GetString("Created By", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Description. + /// + internal static string Description { + get { + return ResourceManager.GetString("Description", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Documents. + /// + internal static string Documents { + get { + return ResourceManager.GetString("Documents", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Title. + /// + internal static string Title { + get { + return ResourceManager.GetString("Title", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to URL. + /// + internal static string URL { + get { + return ResourceManager.GetString("URL", resourceCulture); + } + } + } +} diff --git a/src/Application/Resources/Documents/Queries/Export/ExportDocumentsQueryHandler.de-DE.resx b/src/Application/Resources/Documents/Queries/Export/ExportDocumentsQueryHandler.de-DE.resx new file mode 100644 index 00000000..4b75ffd0 --- /dev/null +++ b/src/Application/Resources/Documents/Queries/Export/ExportDocumentsQueryHandler.de-DE.resx @@ -0,0 +1,135 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 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 + + + Erstellt von + + + Beschreibung + + + Urkunden + + + Titel + + + URL (URL) + + \ No newline at end of file diff --git a/src/Application/Resources/Documents/Queries/Export/ExportDocumentsQueryHandler.en.resx b/src/Application/Resources/Documents/Queries/Export/ExportDocumentsQueryHandler.en.resx new file mode 100644 index 00000000..2b1cfe7f --- /dev/null +++ b/src/Application/Resources/Documents/Queries/Export/ExportDocumentsQueryHandler.en.resx @@ -0,0 +1,135 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 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 + + + Created By + + + Description + + + Documents + + + Title + + + URL + + \ No newline at end of file diff --git a/src/Application/Resources/Documents/Queries/Export/ExportDocumentsQueryHandler.ja-JP.resx b/src/Application/Resources/Documents/Queries/Export/ExportDocumentsQueryHandler.ja-JP.resx new file mode 100644 index 00000000..c542a90b --- /dev/null +++ b/src/Application/Resources/Documents/Queries/Export/ExportDocumentsQueryHandler.ja-JP.resx @@ -0,0 +1,135 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 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 + + + 作成者 + + + 形容 + + + 書類 + + + タイトル + + + URL + + \ No newline at end of file diff --git a/src/Application/Resources/Documents/Queries/Export/ExportDocumentsQueryHandler.resx b/src/Application/Resources/Documents/Queries/Export/ExportDocumentsQueryHandler.resx new file mode 100644 index 00000000..2b1cfe7f --- /dev/null +++ b/src/Application/Resources/Documents/Queries/Export/ExportDocumentsQueryHandler.resx @@ -0,0 +1,135 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 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 + + + Created By + + + Description + + + Documents + + + Title + + + URL + + \ No newline at end of file diff --git a/src/Application/Resources/Documents/Queries/Export/ExportDocumentsQueryHandler.ru.resx b/src/Application/Resources/Documents/Queries/Export/ExportDocumentsQueryHandler.ru.resx new file mode 100644 index 00000000..71db7688 --- /dev/null +++ b/src/Application/Resources/Documents/Queries/Export/ExportDocumentsQueryHandler.ru.resx @@ -0,0 +1,135 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 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 + + + Создание сайта + + + Описание + + + Документы + + + Титул + + + URL-адрес + + \ No newline at end of file diff --git a/src/Application/Resources/Documents/Queries/Export/ExportDocumentsQueryHandler.zh-CN.resx b/src/Application/Resources/Documents/Queries/Export/ExportDocumentsQueryHandler.zh-CN.resx new file mode 100644 index 00000000..10b55753 --- /dev/null +++ b/src/Application/Resources/Documents/Queries/Export/ExportDocumentsQueryHandler.zh-CN.resx @@ -0,0 +1,135 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 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 + + + 创建人 + + + 描述 + + + 文档信息 + + + 标题 + + + URL + + \ No newline at end of file diff --git a/src/Application/Resources/Features/ApprovalDatas/Queries/Export/ExportApprovalDatasQueryHandler.Designer.cs b/src/Application/Resources/Features/ApprovalDatas/Queries/Export/ExportApprovalDatasQueryHandler.Designer.cs new file mode 100644 index 00000000..1234e9e0 --- /dev/null +++ b/src/Application/Resources/Features/ApprovalDatas/Queries/Export/ExportApprovalDatasQueryHandler.Designer.cs @@ -0,0 +1,163 @@ +//------------------------------------------------------------------------------ +// +// 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 CleanArchitecture.Razor.Application.Resources.Features.ApprovalDatas.Queries.Export { + 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()] + internal class ExportApprovalDatasQueryHandler { + + private static global::System.Resources.ResourceManager resourceMan; + + private static global::System.Globalization.CultureInfo resourceCulture; + + [global::System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")] + internal ExportApprovalDatasQueryHandler() { + } + + /// + /// Returns the cached ResourceManager instance used by this class. + /// + [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)] + internal static global::System.Resources.ResourceManager ResourceManager { + get { + if (object.ReferenceEquals(resourceMan, null)) { + global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("CleanArchitecture.Razor.Application.Resources.Features.ApprovalDatas.Queries.Expo" + + "rt.ExportApprovalDatasQueryHandler", typeof(ExportApprovalDatasQueryHandler).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)] + internal static global::System.Globalization.CultureInfo Culture { + get { + return resourceCulture; + } + set { + resourceCulture = value; + } + } + + /// + /// Looks up a localized string similar to Applicant. + /// + internal static string Applicant { + get { + return ResourceManager.GetString("Applicant", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to ApprovalHistories. + /// + internal static string ApprovalHistories { + get { + return ResourceManager.GetString("ApprovalHistories", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Approved DateTime. + /// + internal static string Approved_DateTime { + get { + return ResourceManager.GetString("Approved DateTime", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Approver. + /// + internal static string Approver { + get { + return ResourceManager.GetString("Approver", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Comments. + /// + internal static string Comments { + get { + return ResourceManager.GetString("Comments", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Document Name. + /// + internal static string Document_Name { + get { + return ResourceManager.GetString("Document Name", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Outcome. + /// + internal static string Outcome { + get { + return ResourceManager.GetString("Outcome", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Request DateTime. + /// + internal static string Request_DateTime { + get { + return ResourceManager.GetString("Request DateTime", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Status. + /// + internal static string Status { + get { + return ResourceManager.GetString("Status", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Url. + /// + internal static string Url { + get { + return ResourceManager.GetString("Url", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Workflow Name. + /// + internal static string Workflow_Name { + get { + return ResourceManager.GetString("Workflow Name", resourceCulture); + } + } + } +} diff --git a/src/Application/Resources/Features/ApprovalDatas/Queries/Export/ExportApprovalDatasQueryHandler.de-DE.resx b/src/Application/Resources/Features/ApprovalDatas/Queries/Export/ExportApprovalDatasQueryHandler.de-DE.resx new file mode 100644 index 00000000..acd7bfad --- /dev/null +++ b/src/Application/Resources/Features/ApprovalDatas/Queries/Export/ExportApprovalDatasQueryHandler.de-DE.resx @@ -0,0 +1,153 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 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 + + + Antragsteller + + + GenehmigungHistorien + + + Genehmigte DateTime + + + Genehmiger + + + Kommentare + + + Dokumentname + + + Ergebnis + + + DateTime anfordern + + + Status + + + Url (URL) + + + Workflow-Name + + \ No newline at end of file diff --git a/src/Application/Resources/Features/ApprovalDatas/Queries/Export/ExportApprovalDatasQueryHandler.en.resx b/src/Application/Resources/Features/ApprovalDatas/Queries/Export/ExportApprovalDatasQueryHandler.en.resx new file mode 100644 index 00000000..e49c0211 --- /dev/null +++ b/src/Application/Resources/Features/ApprovalDatas/Queries/Export/ExportApprovalDatasQueryHandler.en.resx @@ -0,0 +1,153 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 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 + + + Applicant + + + ApprovalHistories + + + Approved DateTime + + + Approver + + + Comments + + + Document Name + + + Outcome + + + Request DateTime + + + Status + + + Url + + + Workflow Name + + \ No newline at end of file diff --git a/src/Application/Resources/Features/ApprovalDatas/Queries/Export/ExportApprovalDatasQueryHandler.ja-JP.resx b/src/Application/Resources/Features/ApprovalDatas/Queries/Export/ExportApprovalDatasQueryHandler.ja-JP.resx new file mode 100644 index 00000000..edd8e42a --- /dev/null +++ b/src/Application/Resources/Features/ApprovalDatas/Queries/Export/ExportApprovalDatasQueryHandler.ja-JP.resx @@ -0,0 +1,153 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 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 + + + 出願者 + + + 承認ヒストトリー + + + 承認日時 + + + 承認 + + + コメント + + + ドキュメント名 + + + 結果 + + + 要求日時 + + + 地位 + + + URL + + + ワークフロー名 + + \ No newline at end of file diff --git a/src/Application/Resources/Features/ApprovalDatas/Queries/Export/ExportApprovalDatasQueryHandler.resx b/src/Application/Resources/Features/ApprovalDatas/Queries/Export/ExportApprovalDatasQueryHandler.resx new file mode 100644 index 00000000..e49c0211 --- /dev/null +++ b/src/Application/Resources/Features/ApprovalDatas/Queries/Export/ExportApprovalDatasQueryHandler.resx @@ -0,0 +1,153 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 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 + + + Applicant + + + ApprovalHistories + + + Approved DateTime + + + Approver + + + Comments + + + Document Name + + + Outcome + + + Request DateTime + + + Status + + + Url + + + Workflow Name + + \ No newline at end of file diff --git a/src/Application/Resources/Features/ApprovalDatas/Queries/Export/ExportApprovalDatasQueryHandler.ru.resx b/src/Application/Resources/Features/ApprovalDatas/Queries/Export/ExportApprovalDatasQueryHandler.ru.resx new file mode 100644 index 00000000..bbbe4f2c --- /dev/null +++ b/src/Application/Resources/Features/ApprovalDatas/Queries/Export/ExportApprovalDatasQueryHandler.ru.resx @@ -0,0 +1,153 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 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 + + + Проситель + + + ОдобрениеИстории + + + Утвержденная датаВремя + + + Утверждающий + + + Комментарии + + + Название документа + + + Результат + + + Запросить датувремя + + + Статус + + + URL-адрес + + + Имя рабочего процесса + + \ No newline at end of file diff --git a/src/Application/Resources/Features/ApprovalDatas/Queries/Export/ExportApprovalDatasQueryHandler.zh-CN.resx b/src/Application/Resources/Features/ApprovalDatas/Queries/Export/ExportApprovalDatasQueryHandler.zh-CN.resx new file mode 100644 index 00000000..fcf0aba8 --- /dev/null +++ b/src/Application/Resources/Features/ApprovalDatas/Queries/Export/ExportApprovalDatasQueryHandler.zh-CN.resx @@ -0,0 +1,153 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 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 + + + 申请人 + + + 审批历史记录 + + + 审批时间 + + + 审批人 + + + 备注 + + + 文档名 + + + 审批结果 + + + 请求时间 + + + 状态 + + + Url + + + 工作流名称 + + \ No newline at end of file diff --git a/src/Application/Resources/KeyValues/Commands/Import/ImportKeyValuesCommandHandler.Designer.cs b/src/Application/Resources/KeyValues/Commands/Import/ImportKeyValuesCommandHandler.Designer.cs new file mode 100644 index 00000000..df8e157f --- /dev/null +++ b/src/Application/Resources/KeyValues/Commands/Import/ImportKeyValuesCommandHandler.Designer.cs @@ -0,0 +1,109 @@ +//------------------------------------------------------------------------------ +// +// 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 CleanArchitecture.Razor.Application.Resources.KeyValues.Commands.Import { + 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()] + internal class ImportKeyValuesCommandHandler { + + private static global::System.Resources.ResourceManager resourceMan; + + private static global::System.Globalization.CultureInfo resourceCulture; + + [global::System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")] + internal ImportKeyValuesCommandHandler() { + } + + /// + /// Returns the cached ResourceManager instance used by this class. + /// + [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)] + internal static global::System.Resources.ResourceManager ResourceManager { + get { + if (object.ReferenceEquals(resourceMan, null)) { + global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("CleanArchitecture.Razor.Application.Resources.KeyValues.Commands.Import.ImportKey" + + "ValuesCommandHandler", typeof(ImportKeyValuesCommandHandler).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)] + internal static global::System.Globalization.CultureInfo Culture { + get { + return resourceCulture; + } + set { + resourceCulture = value; + } + } + + /// + /// Looks up a localized string similar to Description. + /// + internal static string Description { + get { + return ResourceManager.GetString("Description", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to KeyValues. + /// + internal static string KeyValues { + get { + return ResourceManager.GetString("KeyValues", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Name. + /// + internal static string Name { + get { + return ResourceManager.GetString("Name", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Text. + /// + internal static string Text { + get { + return ResourceManager.GetString("Text", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Value. + /// + internal static string Value { + get { + return ResourceManager.GetString("Value", resourceCulture); + } + } + } +} diff --git a/src/Application/Resources/KeyValues/Commands/Import/ImportKeyValuesCommandHandler.de-DE.resx b/src/Application/Resources/KeyValues/Commands/Import/ImportKeyValuesCommandHandler.de-DE.resx new file mode 100644 index 00000000..eb67f03b --- /dev/null +++ b/src/Application/Resources/KeyValues/Commands/Import/ImportKeyValuesCommandHandler.de-DE.resx @@ -0,0 +1,135 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 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 + + + Beschreibung + + + KeyValues + + + Name + + + Text + + + Wert + + \ No newline at end of file diff --git a/src/Application/Resources/KeyValues/Commands/Import/ImportKeyValuesCommandHandler.en.resx b/src/Application/Resources/KeyValues/Commands/Import/ImportKeyValuesCommandHandler.en.resx new file mode 100644 index 00000000..7b6ae3ec --- /dev/null +++ b/src/Application/Resources/KeyValues/Commands/Import/ImportKeyValuesCommandHandler.en.resx @@ -0,0 +1,135 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 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 + + + Description + + + KeyValues + + + Name + + + Text + + + Value + + \ No newline at end of file diff --git a/src/Application/Resources/KeyValues/Commands/Import/ImportKeyValuesCommandHandler.ja-JP.resx b/src/Application/Resources/KeyValues/Commands/Import/ImportKeyValuesCommandHandler.ja-JP.resx new file mode 100644 index 00000000..04ec6c4b --- /dev/null +++ b/src/Application/Resources/KeyValues/Commands/Import/ImportKeyValuesCommandHandler.ja-JP.resx @@ -0,0 +1,135 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 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 newline at end of file diff --git a/src/Application/Resources/KeyValues/Commands/Import/ImportKeyValuesCommandHandler.resx b/src/Application/Resources/KeyValues/Commands/Import/ImportKeyValuesCommandHandler.resx new file mode 100644 index 00000000..7b6ae3ec --- /dev/null +++ b/src/Application/Resources/KeyValues/Commands/Import/ImportKeyValuesCommandHandler.resx @@ -0,0 +1,135 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 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 + + + Description + + + KeyValues + + + Name + + + Text + + + Value + + \ No newline at end of file diff --git a/src/Application/Resources/KeyValues/Commands/Import/ImportKeyValuesCommandHandler.ru.resx b/src/Application/Resources/KeyValues/Commands/Import/ImportKeyValuesCommandHandler.ru.resx new file mode 100644 index 00000000..4bebce77 --- /dev/null +++ b/src/Application/Resources/KeyValues/Commands/Import/ImportKeyValuesCommandHandler.ru.resx @@ -0,0 +1,135 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 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 newline at end of file diff --git a/src/Application/Resources/KeyValues/Commands/Import/ImportKeyValuesCommandHandler.zh-CN.resx b/src/Application/Resources/KeyValues/Commands/Import/ImportKeyValuesCommandHandler.zh-CN.resx new file mode 100644 index 00000000..7e51aba0 --- /dev/null +++ b/src/Application/Resources/KeyValues/Commands/Import/ImportKeyValuesCommandHandler.zh-CN.resx @@ -0,0 +1,135 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 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 newline at end of file diff --git a/src/Application/Resources/KeyValues/Queries/Export/ExportKeyValuesQueryHandler.Designer.cs b/src/Application/Resources/KeyValues/Queries/Export/ExportKeyValuesQueryHandler.Designer.cs new file mode 100644 index 00000000..db9b1407 --- /dev/null +++ b/src/Application/Resources/KeyValues/Queries/Export/ExportKeyValuesQueryHandler.Designer.cs @@ -0,0 +1,109 @@ +//------------------------------------------------------------------------------ +// +// 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 CleanArchitecture.Razor.Application.Resources.KeyValues.Queries.Export { + 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()] + internal class ExportKeyValuesQueryHandler { + + private static global::System.Resources.ResourceManager resourceMan; + + private static global::System.Globalization.CultureInfo resourceCulture; + + [global::System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")] + internal ExportKeyValuesQueryHandler() { + } + + /// + /// Returns the cached ResourceManager instance used by this class. + /// + [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)] + internal static global::System.Resources.ResourceManager ResourceManager { + get { + if (object.ReferenceEquals(resourceMan, null)) { + global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("CleanArchitecture.Razor.Application.Resources.KeyValues.Queries.Export.ExportKeyV" + + "aluesQueryHandler", typeof(ExportKeyValuesQueryHandler).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)] + internal static global::System.Globalization.CultureInfo Culture { + get { + return resourceCulture; + } + set { + resourceCulture = value; + } + } + + /// + /// Looks up a localized string similar to Description. + /// + internal static string Description { + get { + return ResourceManager.GetString("Description", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to KeyValues. + /// + internal static string KeyValues { + get { + return ResourceManager.GetString("KeyValues", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Name. + /// + internal static string Name { + get { + return ResourceManager.GetString("Name", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Text. + /// + internal static string Text { + get { + return ResourceManager.GetString("Text", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Value. + /// + internal static string Value { + get { + return ResourceManager.GetString("Value", resourceCulture); + } + } + } +} diff --git a/src/Application/Resources/KeyValues/Queries/Export/ExportKeyValuesQueryHandler.de-DE.resx b/src/Application/Resources/KeyValues/Queries/Export/ExportKeyValuesQueryHandler.de-DE.resx new file mode 100644 index 00000000..eb67f03b --- /dev/null +++ b/src/Application/Resources/KeyValues/Queries/Export/ExportKeyValuesQueryHandler.de-DE.resx @@ -0,0 +1,135 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 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 + + + Beschreibung + + + KeyValues + + + Name + + + Text + + + Wert + + \ No newline at end of file diff --git a/src/Application/Resources/KeyValues/Queries/Export/ExportKeyValuesQueryHandler.en.resx b/src/Application/Resources/KeyValues/Queries/Export/ExportKeyValuesQueryHandler.en.resx new file mode 100644 index 00000000..7b6ae3ec --- /dev/null +++ b/src/Application/Resources/KeyValues/Queries/Export/ExportKeyValuesQueryHandler.en.resx @@ -0,0 +1,135 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 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 + + + Description + + + KeyValues + + + Name + + + Text + + + Value + + \ No newline at end of file diff --git a/src/Application/Resources/KeyValues/Queries/Export/ExportKeyValuesQueryHandler.ja-JP.resx b/src/Application/Resources/KeyValues/Queries/Export/ExportKeyValuesQueryHandler.ja-JP.resx new file mode 100644 index 00000000..04ec6c4b --- /dev/null +++ b/src/Application/Resources/KeyValues/Queries/Export/ExportKeyValuesQueryHandler.ja-JP.resx @@ -0,0 +1,135 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 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 newline at end of file diff --git a/src/Application/Resources/KeyValues/Queries/Export/ExportKeyValuesQueryHandler.resx b/src/Application/Resources/KeyValues/Queries/Export/ExportKeyValuesQueryHandler.resx new file mode 100644 index 00000000..7b6ae3ec --- /dev/null +++ b/src/Application/Resources/KeyValues/Queries/Export/ExportKeyValuesQueryHandler.resx @@ -0,0 +1,135 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 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 + + + Description + + + KeyValues + + + Name + + + Text + + + Value + + \ No newline at end of file diff --git a/src/Application/Resources/KeyValues/Queries/Export/ExportKeyValuesQueryHandler.ru.resx b/src/Application/Resources/KeyValues/Queries/Export/ExportKeyValuesQueryHandler.ru.resx new file mode 100644 index 00000000..4bebce77 --- /dev/null +++ b/src/Application/Resources/KeyValues/Queries/Export/ExportKeyValuesQueryHandler.ru.resx @@ -0,0 +1,135 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 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 newline at end of file diff --git a/src/Application/Resources/KeyValues/Queries/Export/ExportKeyValuesQueryHandler.zh-CN.resx b/src/Application/Resources/KeyValues/Queries/Export/ExportKeyValuesQueryHandler.zh-CN.resx new file mode 100644 index 00000000..7e51aba0 --- /dev/null +++ b/src/Application/Resources/KeyValues/Queries/Export/ExportKeyValuesQueryHandler.zh-CN.resx @@ -0,0 +1,135 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 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 newline at end of file