diff --git a/src/Spork/Components/Implementations/CommandLineArguments.cs b/src/Spork/Components/Implementations/CommandLineArguments.cs index 576ac1e5..e1be14cf 100644 --- a/src/Spork/Components/Implementations/CommandLineArguments.cs +++ b/src/Spork/Components/Implementations/CommandLineArguments.cs @@ -33,9 +33,6 @@ public CommandLineArguments() _installRaiDriveOption = new Option(ConstantStrings.TableCloth_Switch_InstallRaiDrive) { IsRequired = false, Arity = ArgumentArity.Zero, Description = UIStringResources.TableCloth_Switch_InstallRaiDrive_Help, }; - _enableIEModeOption = new Option(ConstantStrings.TableCloth_Switch_EnableIEMode) - { IsRequired = false, Arity = ArgumentArity.Zero, Description = UIStringResources.TableCloth_Switch_EnableIEMode_Help, }; - _dryRunOption = new Option(ConstantStrings.TableCloth_Switch_DryRun) { IsRequired = false, Arity = ArgumentArity.Zero, Description = UIStringResources.TableCloth_Switch_DryRun_Help, }; @@ -53,7 +50,6 @@ public CommandLineArguments() _installAdobeReaderOption, _installHancomOfficeViewerOption, _installRaiDriveOption, - _enableIEModeOption, _dryRunOption, _simulateFailureOption, _siteIdListArgument, @@ -80,7 +76,6 @@ public CommandLineArguments() private readonly Option _installAdobeReaderOption; private readonly Option _installHancomOfficeViewerOption; private readonly Option _installRaiDriveOption; - private readonly Option _enableIEModeOption; private readonly Option _dryRunOption; private readonly Option _simulateFailureOption; private readonly Argument _siteIdListArgument; @@ -122,7 +117,6 @@ public CommandLineArgumentModel GetCurrent() installAdobeReader: parseResult.GetValueForOption(_installAdobeReaderOption), installHancomOfficeViewer: parseResult.GetValueForOption(_installHancomOfficeViewerOption), installRaiDrive: parseResult.GetValueForOption(_installRaiDriveOption), - enableInternetExplorerMode: parseResult.GetValueForOption(_enableIEModeOption), showCommandLineHelp: parseResult.HasOption(_helpOption), showVersionHelp: parseResult.HasOption(_versionOption), dryRun: parseResult.GetValueForOption(_dryRunOption), diff --git a/src/Spork/Program.cs b/src/Spork/Program.cs index b59e2048..6b9ba300 100644 --- a/src/Spork/Program.cs +++ b/src/Spork/Program.cs @@ -152,7 +152,6 @@ private static void ConfigureServices(IServiceCollection services) .AddSingleton() .AddKeyedSingleton(nameof(ConfigAhnLabSafeTransactionStep)) .AddKeyedSingleton(nameof(EdgeExtensionInstallStep)) - .AddKeyedSingleton(nameof(EnableInternetExplorerModeStep)) .AddKeyedSingleton(nameof(OpenWebSiteStep)) .AddKeyedSingleton(nameof(PackageInstallStep)) .AddKeyedSingleton(nameof(PowerShellScriptRunStep)) diff --git a/src/Spork/Spork.csproj b/src/Spork/Spork.csproj index 9b94f6bd..20b8148a 100644 --- a/src/Spork/Spork.csproj +++ b/src/Spork/Spork.csproj @@ -255,7 +255,6 @@ - diff --git a/src/Spork/Steps/Implementations/EnableInternetExplorerModeStep.cs b/src/Spork/Steps/Implementations/EnableInternetExplorerModeStep.cs deleted file mode 100644 index cd596b1b..00000000 --- a/src/Spork/Steps/Implementations/EnableInternetExplorerModeStep.cs +++ /dev/null @@ -1,51 +0,0 @@ -using Microsoft.Win32; -using Spork.Components; -using Spork.ViewModels; -using System; -using System.Threading; -using System.Threading.Tasks; -using TableCloth.Resources; - -namespace Spork.Steps.Implementations -{ - public sealed class EnableInternetExplorerModeStep : StepBase - { - public EnableInternetExplorerModeStep( - ICommandLineArguments commandLineArguments) - { - _commandLineArguments = commandLineArguments; - } - - private readonly ICommandLineArguments _commandLineArguments; - - public override Task EvaluateRequiredStepAsync(InstallItemViewModel _, CancellationToken cancellationToken = default) - { - var parsedArgs = _commandLineArguments.GetCurrent(); - var isIeModeRequested = parsedArgs.EnableInternetExplorerMode ?? false; - return Task.FromResult(!isIeModeRequested); - } - - public override Task LoadContentForStepAsync(InstallItemViewModel viewModel, Action progressCallback, CancellationToken cancellationToken = default) - => Task.CompletedTask; - - public override Task PlayStepAsync(InstallItemViewModel _, Action progressCallback, CancellationToken cancellationToken = default) - { - using (var ieModeKey = Registry.LocalMachine.CreateSubKey(@"SOFTWARE\Policies\Microsoft\Edge", true)) - { - ieModeKey.SetValue("InternetExplorerIntegrationLevel", 1, RegistryValueKind.DWord); - ieModeKey.SetValue("InternetExplorerIntegrationSiteList", ConstantStrings.IEModePolicyXmlUrl, RegistryValueKind.String); - } - - using (var ieModeKey = Registry.LocalMachine.CreateSubKey(@"SOFTWARE\Policies\Wow6432Node\Microsoft\Edge", true)) - { - ieModeKey.SetValue("InternetExplorerIntegrationLevel", 1, RegistryValueKind.DWord); - ieModeKey.SetValue("InternetExplorerIntegrationSiteList", ConstantStrings.IEModePolicyXmlUrl, RegistryValueKind.String); - } - - return Task.CompletedTask; - } - - public override bool ShouldSimulateWhenDryRun - => true; - } -} diff --git a/src/Spork/Steps/Implementations/StepsComposer.cs b/src/Spork/Steps/Implementations/StepsComposer.cs index a6afb88d..2093b807 100644 --- a/src/Spork/Steps/Implementations/StepsComposer.cs +++ b/src/Spork/Steps/Implementations/StepsComposer.cs @@ -1,202 +1,190 @@ -using Spork.Components; -using Spork.ViewModels; -using System; -using System.Collections.Generic; -using System.Linq; -using TableCloth.Resources; - -namespace Spork.Steps.Implementations -{ - public sealed class StepsComposer : IStepsComposer - { - public StepsComposer( - IStepsFactory stepsFactory, - ICommandLineArguments commandLineArguments, - IResourceCacheManager resourceCacheManager) - { - _stepsFactory = stepsFactory; - _commandLineArguments = commandLineArguments; - _resourceCacheManager = resourceCacheManager; - } - - private readonly IStepsFactory _stepsFactory; - private readonly ICommandLineArguments _commandLineArguments; - private readonly IResourceCacheManager _resourceCacheManager; - - public IEnumerable ComposeSteps() - { - var parsedArgs = _commandLineArguments.GetCurrent(); - var catalog = _resourceCacheManager.CatalogDocument; - var targets = parsedArgs.SelectedServices; - var steps = new List(); - - steps.AddRange(new[] - { - new StepItemViewModel - { - Step = _stepsFactory.GetStepByName(nameof(PrepareDirectoriesStep)), - Argument = new InstallItemViewModel(), - TargetSiteName = UIStringResources.Option_Prerequisites, - PackageName = UIStringResources.Install_PrepareEnvironment, - }, - new StepItemViewModel - { - Step = _stepsFactory.GetStepByName(nameof(TryProtectCriticalServicesStep)), - Argument = new InstallItemViewModel(), - TargetSiteName = UIStringResources.Option_Prerequisites, - PackageName = UIStringResources.Install_TryProtectCriticalServices, - }, - new StepItemViewModel - { - Step = _stepsFactory.GetStepByName(nameof(SetDesktopWallpaperStep)), - Argument = new InstallItemViewModel(), - TargetSiteName = UIStringResources.Option_Prerequisites, - PackageName = UIStringResources.Install_SetDesktopWallpaper, - }, - }); - - if (parsedArgs.EnableInternetExplorerMode.HasValue && - parsedArgs.EnableInternetExplorerMode.Value) - { - steps.Add(new StepItemViewModel - { - Step = _stepsFactory.GetStepByName(nameof(EnableInternetExplorerModeStep)), - Argument = new InstallItemViewModel(), - TargetSiteName = UIStringResources.Option_Prerequisites, - PackageName = UIStringResources.Install_EnableIEMode, - }); - } - - foreach (var eachTargetName in targets) - { - var targetService = catalog.Services.FirstOrDefault(x => string.Equals(eachTargetName, x.Id, StringComparison.Ordinal)); - - if (targetService == null) - continue; - - steps.AddRange(targetService.Packages.Select(eachPackage => new StepItemViewModel - { - Step = _stepsFactory.GetStepByName(nameof(PackageInstallStep)), - Argument = new PackageInstallItemViewModel - { - PackageUrl = eachPackage.Url, - Arguments = eachPackage.Arguments, - }, - TargetSiteName = targetService.DisplayName, - TargetSiteUrl = targetService.Url, - PackageName = eachPackage.Name, - })); - - steps.AddRange(targetService.EdgeExtensions.Select(eachEdgeExtension => new StepItemViewModel - { - Step = _stepsFactory.GetStepByName(nameof(EdgeExtensionInstallStep)), - Argument = new EdgeExtensionInstallItemViewModel - { - EdgeExtensionId = eachEdgeExtension.ExtensionId, - EdgeCrxUrl = eachEdgeExtension.CrxUrl, - }, - TargetSiteName = targetService.DisplayName, - TargetSiteUrl = targetService.Url, - PackageName = eachEdgeExtension.Name, - })); - - var bootstrapData = targetService.CustomBootstrap; - - if (!string.IsNullOrWhiteSpace(bootstrapData)) - { - steps.Add(new StepItemViewModel - { - Step = _stepsFactory.GetStepByName(nameof(PowerShellScriptRunStep)), - Argument = new PowerShellScriptInstallItemViewModel - { - ScriptContent = bootstrapData, - }, - TargetSiteName = targetService.DisplayName, - TargetSiteUrl = targetService.Url, - PackageName = UIStringResources.Spork_CustomScript_Title, - }); - } - } - - steps.AddRange(new[] - { - new StepItemViewModel - { - Step = _stepsFactory.GetStepByName(nameof(ConfigAhnLabSafeTransactionStep)), - Argument = new InstallItemViewModel(), - TargetSiteName = UIStringResources.Option_Config, - PackageName = UIStringResources.Install_ConfigASTx, - }, - new StepItemViewModel - { - Step = _stepsFactory.GetStepByName(nameof(ReloadEdgeStep)), - Argument = new InstallItemViewModel(), - TargetSiteName = UIStringResources.Option_Config, - PackageName = UIStringResources.Install_ReloadMicrosoftEdge, - }, - }); - - if (parsedArgs.InstallAdobeReader.HasValue && - parsedArgs.InstallAdobeReader.Value) - { - steps.Add(new StepItemViewModel - { - Step = _stepsFactory.GetStepByName(nameof(OpenWebSiteStep)), - Argument = new OpenWebSiteItemViewModel - { - TargetUrl = CommonStrings.AdobeReaderUrl, - }, - TargetSiteName = UIStringResources.Option_Addin, - PackageName = UIStringResources.Option_InstallAdobeReader, - }); - } - - if (parsedArgs.InstallEveryonesPrinter.HasValue && - parsedArgs.InstallEveryonesPrinter.Value) - { - steps.Add(new StepItemViewModel - { - Step = _stepsFactory.GetStepByName(nameof(OpenWebSiteStep)), - Argument = new OpenWebSiteItemViewModel - { - TargetUrl = CommonStrings.EveryonesPrinterUrl, - }, - TargetSiteName = UIStringResources.Option_Addin, - PackageName = UIStringResources.Option_InstallEveryonesPrinter, - }); - } - - if (parsedArgs.InstallHancomOfficeViewer.HasValue && - parsedArgs.InstallHancomOfficeViewer.Value) - { - steps.Add(new StepItemViewModel - { - Step = _stepsFactory.GetStepByName(nameof(OpenWebSiteStep)), - Argument = new OpenWebSiteItemViewModel - { - TargetUrl = CommonStrings.HancomOfficeViewerUrl, - }, - TargetSiteName = UIStringResources.Option_Addin, - PackageName = UIStringResources.Option_InstallHancomOfficeViewer, - }); - } - - if (parsedArgs.InstallRaiDrive.HasValue && - parsedArgs.InstallRaiDrive.Value) - { - steps.Add(new StepItemViewModel - { - Step = _stepsFactory.GetStepByName(nameof(OpenWebSiteStep)), - Argument = new OpenWebSiteItemViewModel - { - TargetUrl = CommonStrings.RaiDriveUrl, - }, - TargetSiteName = UIStringResources.Option_Addin, - PackageName = UIStringResources.Option_InstallRaiDrive, - }); - } - - return steps; - } - } -} +using Spork.Components; +using Spork.ViewModels; +using System; +using System.Collections.Generic; +using System.Linq; +using TableCloth.Resources; + +namespace Spork.Steps.Implementations +{ + public sealed class StepsComposer : IStepsComposer + { + public StepsComposer( + IStepsFactory stepsFactory, + ICommandLineArguments commandLineArguments, + IResourceCacheManager resourceCacheManager) + { + _stepsFactory = stepsFactory; + _commandLineArguments = commandLineArguments; + _resourceCacheManager = resourceCacheManager; + } + + private readonly IStepsFactory _stepsFactory; + private readonly ICommandLineArguments _commandLineArguments; + private readonly IResourceCacheManager _resourceCacheManager; + + public IEnumerable ComposeSteps() + { + var parsedArgs = _commandLineArguments.GetCurrent(); + var catalog = _resourceCacheManager.CatalogDocument; + var targets = parsedArgs.SelectedServices; + var steps = new List(); + + steps.AddRange(new[] + { + new StepItemViewModel + { + Step = _stepsFactory.GetStepByName(nameof(PrepareDirectoriesStep)), + Argument = new InstallItemViewModel(), + TargetSiteName = UIStringResources.Option_Prerequisites, + PackageName = UIStringResources.Install_PrepareEnvironment, + }, + new StepItemViewModel + { + Step = _stepsFactory.GetStepByName(nameof(TryProtectCriticalServicesStep)), + Argument = new InstallItemViewModel(), + TargetSiteName = UIStringResources.Option_Prerequisites, + PackageName = UIStringResources.Install_TryProtectCriticalServices, + }, + new StepItemViewModel + { + Step = _stepsFactory.GetStepByName(nameof(SetDesktopWallpaperStep)), + Argument = new InstallItemViewModel(), + TargetSiteName = UIStringResources.Option_Prerequisites, + PackageName = UIStringResources.Install_SetDesktopWallpaper, + }, + }); + + foreach (var eachTargetName in targets) + { + var targetService = catalog.Services.FirstOrDefault(x => string.Equals(eachTargetName, x.Id, StringComparison.Ordinal)); + + if (targetService == null) + continue; + + steps.AddRange(targetService.Packages.Select(eachPackage => new StepItemViewModel + { + Step = _stepsFactory.GetStepByName(nameof(PackageInstallStep)), + Argument = new PackageInstallItemViewModel + { + PackageUrl = eachPackage.Url, + Arguments = eachPackage.Arguments, + }, + TargetSiteName = targetService.DisplayName, + TargetSiteUrl = targetService.Url, + PackageName = eachPackage.Name, + })); + + steps.AddRange(targetService.EdgeExtensions.Select(eachEdgeExtension => new StepItemViewModel + { + Step = _stepsFactory.GetStepByName(nameof(EdgeExtensionInstallStep)), + Argument = new EdgeExtensionInstallItemViewModel + { + EdgeExtensionId = eachEdgeExtension.ExtensionId, + EdgeCrxUrl = eachEdgeExtension.CrxUrl, + }, + TargetSiteName = targetService.DisplayName, + TargetSiteUrl = targetService.Url, + PackageName = eachEdgeExtension.Name, + })); + + var bootstrapData = targetService.CustomBootstrap; + + if (!string.IsNullOrWhiteSpace(bootstrapData)) + { + steps.Add(new StepItemViewModel + { + Step = _stepsFactory.GetStepByName(nameof(PowerShellScriptRunStep)), + Argument = new PowerShellScriptInstallItemViewModel + { + ScriptContent = bootstrapData, + }, + TargetSiteName = targetService.DisplayName, + TargetSiteUrl = targetService.Url, + PackageName = UIStringResources.Spork_CustomScript_Title, + }); + } + } + + steps.AddRange(new[] + { + new StepItemViewModel + { + Step = _stepsFactory.GetStepByName(nameof(ConfigAhnLabSafeTransactionStep)), + Argument = new InstallItemViewModel(), + TargetSiteName = UIStringResources.Option_Config, + PackageName = UIStringResources.Install_ConfigASTx, + }, + new StepItemViewModel + { + Step = _stepsFactory.GetStepByName(nameof(ReloadEdgeStep)), + Argument = new InstallItemViewModel(), + TargetSiteName = UIStringResources.Option_Config, + PackageName = UIStringResources.Install_ReloadMicrosoftEdge, + }, + }); + + if (parsedArgs.InstallAdobeReader.HasValue && + parsedArgs.InstallAdobeReader.Value) + { + steps.Add(new StepItemViewModel + { + Step = _stepsFactory.GetStepByName(nameof(OpenWebSiteStep)), + Argument = new OpenWebSiteItemViewModel + { + TargetUrl = CommonStrings.AdobeReaderUrl, + }, + TargetSiteName = UIStringResources.Option_Addin, + PackageName = UIStringResources.Option_InstallAdobeReader, + }); + } + + if (parsedArgs.InstallEveryonesPrinter.HasValue && + parsedArgs.InstallEveryonesPrinter.Value) + { + steps.Add(new StepItemViewModel + { + Step = _stepsFactory.GetStepByName(nameof(OpenWebSiteStep)), + Argument = new OpenWebSiteItemViewModel + { + TargetUrl = CommonStrings.EveryonesPrinterUrl, + }, + TargetSiteName = UIStringResources.Option_Addin, + PackageName = UIStringResources.Option_InstallEveryonesPrinter, + }); + } + + if (parsedArgs.InstallHancomOfficeViewer.HasValue && + parsedArgs.InstallHancomOfficeViewer.Value) + { + steps.Add(new StepItemViewModel + { + Step = _stepsFactory.GetStepByName(nameof(OpenWebSiteStep)), + Argument = new OpenWebSiteItemViewModel + { + TargetUrl = CommonStrings.HancomOfficeViewerUrl, + }, + TargetSiteName = UIStringResources.Option_Addin, + PackageName = UIStringResources.Option_InstallHancomOfficeViewer, + }); + } + + if (parsedArgs.InstallRaiDrive.HasValue && + parsedArgs.InstallRaiDrive.Value) + { + steps.Add(new StepItemViewModel + { + Step = _stepsFactory.GetStepByName(nameof(OpenWebSiteStep)), + Argument = new OpenWebSiteItemViewModel + { + TargetUrl = CommonStrings.RaiDriveUrl, + }, + TargetSiteName = UIStringResources.Option_Addin, + PackageName = UIStringResources.Option_InstallRaiDrive, + }); + } + + return steps; + } + } +} diff --git a/src/TableCloth.Resources/ConstantStrings.Designer.cs b/src/TableCloth.Resources/ConstantStrings.Designer.cs index 98fd98ec..43938e94 100644 --- a/src/TableCloth.Resources/ConstantStrings.Designer.cs +++ b/src/TableCloth.Resources/ConstantStrings.Designer.cs @@ -1,288 +1,270 @@ -//------------------------------------------------------------------------------ -// -// 이 코드는 도구를 사용하여 생성되었습니다. -// 런타임 버전:4.0.30319.42000 -// -// 파일 내용을 변경하면 잘못된 동작이 발생할 수 있으며, 코드를 다시 생성하면 -// 이러한 변경 내용이 손실됩니다. -// -//------------------------------------------------------------------------------ - -namespace TableCloth.Resources { - using System; - - - /// - /// 지역화된 문자열 등을 찾기 위한 강력한 형식의 리소스 클래스입니다. - /// - // 이 클래스는 ResGen 또는 Visual Studio와 같은 도구를 통해 StronglyTypedResourceBuilder - // 클래스에서 자동으로 생성되었습니다. - // 멤버를 추가하거나 제거하려면 .ResX 파일을 편집한 다음 /str 옵션을 사용하여 ResGen을 - // 다시 실행하거나 VS 프로젝트를 다시 빌드하십시오. - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "17.0.0.0")] - [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] - [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()] - public class ConstantStrings { - - private static global::System.Resources.ResourceManager resourceMan; - - private static global::System.Globalization.CultureInfo resourceCulture; - - [global::System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")] - internal ConstantStrings() { - } - - /// - /// 이 클래스에서 사용하는 캐시된 ResourceManager 인스턴스를 반환합니다. - /// - [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("TableCloth.Resources.ConstantStrings", typeof(ConstantStrings).Assembly); - resourceMan = temp; - } - return resourceMan; - } - } - - /// - /// 이 강력한 형식의 리소스 클래스를 사용하여 모든 리소스 조회에 대해 현재 스레드의 CurrentUICulture 속성을 - /// 재정의합니다. - /// - [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)] - public static global::System.Globalization.CultureInfo Culture { - get { - return resourceCulture; - } - set { - resourceCulture = value; - } - } - - /// - /// https://yourtablecloth.app/TableClothCatalog/Catalog.xml과(와) 유사한 지역화된 문자열을 찾습니다. - /// - public static string CatalogUrl { - get { - return ResourceManager.GetString("CatalogUrl", resourceCulture); - } - } - - /// - /// Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.3과(와) 유사한 지역화된 문자열을 찾습니다. - /// - public static string FamiliarUserAgentText { - get { - return ResourceManager.GetString("FamiliarUserAgentText", resourceCulture); - } - } - - /// - /// github.com과(와) 유사한 지역화된 문자열을 찾습니다. - /// - public static string GitHub_Domain { - get { - return ResourceManager.GetString("GitHub_Domain", resourceCulture); - } - } - - /// - /// https://yourtablecloth.app/TableClothCatalog/sites.xml과(와) 유사한 지역화된 문자열을 찾습니다. - /// - public static string IEModePolicyXmlUrl { - get { - return ResourceManager.GetString("IEModePolicyXmlUrl", resourceCulture); - } - } - - /// - /// https://yourtablecloth.app/TableClothCatalog/images과(와) 유사한 지역화된 문자열을 찾습니다. - /// - public static string ImageUrlPrefix { - get { - return ResourceManager.GetString("ImageUrlPrefix", resourceCulture); - } - } - - /// - /// ts과(와) 유사한 지역화된 문자열을 찾습니다. - /// - public static string QueryString_Timestamp_Key { - get { - return ResourceManager.GetString("QueryString_Timestamp_Key", resourceCulture); - } - } - - /// - /// https://785e3f46849c403bb6c323d7a9eaad91@o77541.ingest.sentry.io/5915832과(와) 유사한 지역화된 문자열을 찾습니다. - /// - public static string SentryDsn { - get { - return ResourceManager.GetString("SentryDsn", resourceCulture); - } - } - - /// - /// --cert-private-key과(와) 유사한 지역화된 문자열을 찾습니다. - /// - public static string TableCloth_Switch_CertPrivateKey { - get { - return ResourceManager.GetString("TableCloth_Switch_CertPrivateKey", resourceCulture); - } - } - - /// - /// --cert-public-key과(와) 유사한 지역화된 문자열을 찾습니다. - /// - public static string TableCloth_Switch_CertPublicKey { - get { - return ResourceManager.GetString("TableCloth_Switch_CertPublicKey", resourceCulture); - } - } - - /// - /// --dry-run과(와) 유사한 지역화된 문자열을 찾습니다. - /// - public static string TableCloth_Switch_DryRun { - get { - return ResourceManager.GetString("TableCloth_Switch_DryRun", resourceCulture); - } - } - - /// - /// --enable-camera과(와) 유사한 지역화된 문자열을 찾습니다. - /// - public static string TableCloth_Switch_EnableCamera { - get { - return ResourceManager.GetString("TableCloth_Switch_EnableCamera", resourceCulture); - } - } - - /// - /// --enable-cert과(와) 유사한 지역화된 문자열을 찾습니다. - /// - public static string TableCloth_Switch_EnableCert { - get { - return ResourceManager.GetString("TableCloth_Switch_EnableCert", resourceCulture); - } - } - - /// - /// --enable-ie-mode과(와) 유사한 지역화된 문자열을 찾습니다. - /// - public static string TableCloth_Switch_EnableIEMode { - get { - return ResourceManager.GetString("TableCloth_Switch_EnableIEMode", resourceCulture); - } - } - - /// - /// --enable-microphone과(와) 유사한 지역화된 문자열을 찾습니다. - /// - public static string TableCloth_Switch_EnableMicrophone { - get { - return ResourceManager.GetString("TableCloth_Switch_EnableMicrophone", resourceCulture); - } - } - - /// - /// --enable-printer과(와) 유사한 지역화된 문자열을 찾습니다. - /// - public static string TableCloth_Switch_EnablePrinter { - get { - return ResourceManager.GetString("TableCloth_Switch_EnablePrinter", resourceCulture); - } - } - - /// - /// --help과(와) 유사한 지역화된 문자열을 찾습니다. - /// - public static string TableCloth_Switch_Help { - get { - return ResourceManager.GetString("TableCloth_Switch_Help", resourceCulture); - } - } - - /// - /// --ignore--과(와) 유사한 지역화된 문자열을 찾습니다. - /// - public static string TableCloth_Switch_IgnoreSwitch { - get { - return ResourceManager.GetString("TableCloth_Switch_IgnoreSwitch", resourceCulture); - } - } - - /// - /// --install-adobe-reader과(와) 유사한 지역화된 문자열을 찾습니다. - /// - public static string TableCloth_Switch_InstallAdobeReader { - get { - return ResourceManager.GetString("TableCloth_Switch_InstallAdobeReader", resourceCulture); - } - } - - /// - /// --install-everyones-printer과(와) 유사한 지역화된 문자열을 찾습니다. - /// - public static string TableCloth_Switch_InstallEveryonesPrinter { - get { - return ResourceManager.GetString("TableCloth_Switch_InstallEveryonesPrinter", resourceCulture); - } - } - - /// - /// --install-hancom-office-viewer과(와) 유사한 지역화된 문자열을 찾습니다. - /// - public static string TableCloth_Switch_InstallHancomOfficeViewer { - get { - return ResourceManager.GetString("TableCloth_Switch_InstallHancomOfficeViewer", resourceCulture); - } - } - - /// - /// --install-rai-drive과(와) 유사한 지역화된 문자열을 찾습니다. - /// - public static string TableCloth_Switch_InstallRaiDrive { - get { - return ResourceManager.GetString("TableCloth_Switch_InstallRaiDrive", resourceCulture); - } - } - - /// - /// --과(와) 유사한 지역화된 문자열을 찾습니다. - /// - public static string TableCloth_Switch_Prefix { - get { - return ResourceManager.GetString("TableCloth_Switch_Prefix", resourceCulture); - } - } - - /// - /// --simulate-failure과(와) 유사한 지역화된 문자열을 찾습니다. - /// - public static string TableCloth_Switch_SimulateFailure { - get { - return ResourceManager.GetString("TableCloth_Switch_SimulateFailure", resourceCulture); - } - } - - /// - /// --version과(와) 유사한 지역화된 문자열을 찾습니다. - /// - public static string TableCloth_Switch_Version { - get { - return ResourceManager.GetString("TableCloth_Switch_Version", resourceCulture); - } - } - - /// - /// Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.164 Safari/537.36과(와) 유사한 지역화된 문자열을 찾습니다. - /// - public static string UserAgentText { - get { - return ResourceManager.GetString("UserAgentText", resourceCulture); - } - } - } -} +//------------------------------------------------------------------------------ +// +// 이 코드는 도구를 사용하여 생성되었습니다. +// 런타임 버전:4.0.30319.42000 +// +// 파일 내용을 변경하면 잘못된 동작이 발생할 수 있으며, 코드를 다시 생성하면 +// 이러한 변경 내용이 손실됩니다. +// +//------------------------------------------------------------------------------ + +namespace TableCloth.Resources { + using System; + + + /// + /// 지역화된 문자열 등을 찾기 위한 강력한 형식의 리소스 클래스입니다. + /// + // 이 클래스는 ResGen 또는 Visual Studio와 같은 도구를 통해 StronglyTypedResourceBuilder + // 클래스에서 자동으로 생성되었습니다. + // 멤버를 추가하거나 제거하려면 .ResX 파일을 편집한 다음 /str 옵션을 사용하여 ResGen을 + // 다시 실행하거나 VS 프로젝트를 다시 빌드하십시오. + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "17.0.0.0")] + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()] + public class ConstantStrings { + + private static global::System.Resources.ResourceManager resourceMan; + + private static global::System.Globalization.CultureInfo resourceCulture; + + [global::System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")] + internal ConstantStrings() { + } + + /// + /// 이 클래스에서 사용하는 캐시된 ResourceManager 인스턴스를 반환합니다. + /// + [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("TableCloth.Resources.ConstantStrings", typeof(ConstantStrings).Assembly); + resourceMan = temp; + } + return resourceMan; + } + } + + /// + /// 이 강력한 형식의 리소스 클래스를 사용하여 모든 리소스 조회에 대해 현재 스레드의 CurrentUICulture 속성을 + /// 재정의합니다. + /// + [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)] + public static global::System.Globalization.CultureInfo Culture { + get { + return resourceCulture; + } + set { + resourceCulture = value; + } + } + + /// + /// https://yourtablecloth.app/TableClothCatalog/Catalog.xml과(와) 유사한 지역화된 문자열을 찾습니다. + /// + public static string CatalogUrl { + get { + return ResourceManager.GetString("CatalogUrl", resourceCulture); + } + } + + /// + /// Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.3과(와) 유사한 지역화된 문자열을 찾습니다. + /// + public static string FamiliarUserAgentText { + get { + return ResourceManager.GetString("FamiliarUserAgentText", resourceCulture); + } + } + + /// + /// github.com과(와) 유사한 지역화된 문자열을 찾습니다. + /// + public static string GitHub_Domain { + get { + return ResourceManager.GetString("GitHub_Domain", resourceCulture); + } + } + + /// + /// https://yourtablecloth.app/TableClothCatalog/images과(와) 유사한 지역화된 문자열을 찾습니다. + /// + public static string ImageUrlPrefix { + get { + return ResourceManager.GetString("ImageUrlPrefix", resourceCulture); + } + } + + /// + /// ts과(와) 유사한 지역화된 문자열을 찾습니다. + /// + public static string QueryString_Timestamp_Key { + get { + return ResourceManager.GetString("QueryString_Timestamp_Key", resourceCulture); + } + } + + /// + /// https://785e3f46849c403bb6c323d7a9eaad91@o77541.ingest.sentry.io/5915832과(와) 유사한 지역화된 문자열을 찾습니다. + /// + public static string SentryDsn { + get { + return ResourceManager.GetString("SentryDsn", resourceCulture); + } + } + + /// + /// --cert-private-key과(와) 유사한 지역화된 문자열을 찾습니다. + /// + public static string TableCloth_Switch_CertPrivateKey { + get { + return ResourceManager.GetString("TableCloth_Switch_CertPrivateKey", resourceCulture); + } + } + + /// + /// --cert-public-key과(와) 유사한 지역화된 문자열을 찾습니다. + /// + public static string TableCloth_Switch_CertPublicKey { + get { + return ResourceManager.GetString("TableCloth_Switch_CertPublicKey", resourceCulture); + } + } + + /// + /// --dry-run과(와) 유사한 지역화된 문자열을 찾습니다. + /// + public static string TableCloth_Switch_DryRun { + get { + return ResourceManager.GetString("TableCloth_Switch_DryRun", resourceCulture); + } + } + + /// + /// --enable-camera과(와) 유사한 지역화된 문자열을 찾습니다. + /// + public static string TableCloth_Switch_EnableCamera { + get { + return ResourceManager.GetString("TableCloth_Switch_EnableCamera", resourceCulture); + } + } + + /// + /// --enable-cert과(와) 유사한 지역화된 문자열을 찾습니다. + /// + public static string TableCloth_Switch_EnableCert { + get { + return ResourceManager.GetString("TableCloth_Switch_EnableCert", resourceCulture); + } + } + + /// + /// --enable-microphone과(와) 유사한 지역화된 문자열을 찾습니다. + /// + public static string TableCloth_Switch_EnableMicrophone { + get { + return ResourceManager.GetString("TableCloth_Switch_EnableMicrophone", resourceCulture); + } + } + + /// + /// --enable-printer과(와) 유사한 지역화된 문자열을 찾습니다. + /// + public static string TableCloth_Switch_EnablePrinter { + get { + return ResourceManager.GetString("TableCloth_Switch_EnablePrinter", resourceCulture); + } + } + + /// + /// --help과(와) 유사한 지역화된 문자열을 찾습니다. + /// + public static string TableCloth_Switch_Help { + get { + return ResourceManager.GetString("TableCloth_Switch_Help", resourceCulture); + } + } + + /// + /// --ignore--과(와) 유사한 지역화된 문자열을 찾습니다. + /// + public static string TableCloth_Switch_IgnoreSwitch { + get { + return ResourceManager.GetString("TableCloth_Switch_IgnoreSwitch", resourceCulture); + } + } + + /// + /// --install-adobe-reader과(와) 유사한 지역화된 문자열을 찾습니다. + /// + public static string TableCloth_Switch_InstallAdobeReader { + get { + return ResourceManager.GetString("TableCloth_Switch_InstallAdobeReader", resourceCulture); + } + } + + /// + /// --install-everyones-printer과(와) 유사한 지역화된 문자열을 찾습니다. + /// + public static string TableCloth_Switch_InstallEveryonesPrinter { + get { + return ResourceManager.GetString("TableCloth_Switch_InstallEveryonesPrinter", resourceCulture); + } + } + + /// + /// --install-hancom-office-viewer과(와) 유사한 지역화된 문자열을 찾습니다. + /// + public static string TableCloth_Switch_InstallHancomOfficeViewer { + get { + return ResourceManager.GetString("TableCloth_Switch_InstallHancomOfficeViewer", resourceCulture); + } + } + + /// + /// --install-rai-drive과(와) 유사한 지역화된 문자열을 찾습니다. + /// + public static string TableCloth_Switch_InstallRaiDrive { + get { + return ResourceManager.GetString("TableCloth_Switch_InstallRaiDrive", resourceCulture); + } + } + + /// + /// --과(와) 유사한 지역화된 문자열을 찾습니다. + /// + public static string TableCloth_Switch_Prefix { + get { + return ResourceManager.GetString("TableCloth_Switch_Prefix", resourceCulture); + } + } + + /// + /// --simulate-failure과(와) 유사한 지역화된 문자열을 찾습니다. + /// + public static string TableCloth_Switch_SimulateFailure { + get { + return ResourceManager.GetString("TableCloth_Switch_SimulateFailure", resourceCulture); + } + } + + /// + /// --version과(와) 유사한 지역화된 문자열을 찾습니다. + /// + public static string TableCloth_Switch_Version { + get { + return ResourceManager.GetString("TableCloth_Switch_Version", resourceCulture); + } + } + + /// + /// Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.164 Safari/537.36과(와) 유사한 지역화된 문자열을 찾습니다. + /// + public static string UserAgentText { + get { + return ResourceManager.GetString("UserAgentText", resourceCulture); + } + } + } +} diff --git a/src/TableCloth.Resources/ConstantStrings.resx b/src/TableCloth.Resources/ConstantStrings.resx index 7e65aa77..c66c2d30 100644 --- a/src/TableCloth.Resources/ConstantStrings.resx +++ b/src/TableCloth.Resources/ConstantStrings.resx @@ -1,220 +1,212 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - 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 - - - https://yourtablecloth.app/TableClothCatalog/Catalog.xml - (Important) Please do not translate this item without intend. - - - Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.3 - (Important) Please do not translate this item without intend. - - - github.com - (Important) Please do not translate this item without intend. - - - https://yourtablecloth.app/TableClothCatalog/sites.xml - (Important) Please do not translate this item without intend. - - - https://yourtablecloth.app/TableClothCatalog/images - (Important) Please do not translate this item without intend. - - - ts - (Important) Please do not translate this item without intend. - - - https://785e3f46849c403bb6c323d7a9eaad91@o77541.ingest.sentry.io/5915832 - (Important) Please do not translate this item without intend. - - - --cert-private-key - (Important) Please do not translate this item without intend. - - - --cert-public-key - (Important) Please do not translate this item without intend. - - - --dry-run - (Important) Please do not translate this item without intend. - - - --enable-camera - (Important) Please do not translate this item without intend. - - - --enable-cert - (Important) Please do not translate this item without intend. - - - --enable-ie-mode - (Important) Please do not translate this item without intend. - - - --enable-microphone - (Important) Please do not translate this item without intend. - - - --enable-printer - (Important) Please do not translate this item without intend. - - - --help - (Important) Please do not translate this item without intend. - - - --ignore-- - (Important) Please do not translate this item without intend. - - - --install-adobe-reader - (Important) Please do not translate this item without intend. - - - --install-everyones-printer - (Important) Please do not translate this item without intend. - - - --install-hancom-office-viewer - (Important) Please do not translate this item without intend. - - - --install-rai-drive - (Important) Please do not translate this item without intend. - - - -- - (Important) Please do not translate this item without intend. - - - --simulate-failure - (Important) Please do not translate this item without intend. - - - --version - (Important) Please do not translate this item without intend. - - - Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.164 Safari/537.36 - (Important) Please do not translate this item without intend. - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 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 + + + https://yourtablecloth.app/TableClothCatalog/Catalog.xml + (Important) Please do not translate this item without intend. + + + Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.3 + (Important) Please do not translate this item without intend. + + + github.com + (Important) Please do not translate this item without intend. + + + https://yourtablecloth.app/TableClothCatalog/images + (Important) Please do not translate this item without intend. + + + ts + (Important) Please do not translate this item without intend. + + + https://785e3f46849c403bb6c323d7a9eaad91@o77541.ingest.sentry.io/5915832 + (Important) Please do not translate this item without intend. + + + --cert-private-key + (Important) Please do not translate this item without intend. + + + --cert-public-key + (Important) Please do not translate this item without intend. + + + --dry-run + (Important) Please do not translate this item without intend. + + + --enable-camera + (Important) Please do not translate this item without intend. + + + --enable-cert + (Important) Please do not translate this item without intend. + + + --enable-microphone + (Important) Please do not translate this item without intend. + + + --enable-printer + (Important) Please do not translate this item without intend. + + + --help + (Important) Please do not translate this item without intend. + + + --ignore-- + (Important) Please do not translate this item without intend. + + + --install-adobe-reader + (Important) Please do not translate this item without intend. + + + --install-everyones-printer + (Important) Please do not translate this item without intend. + + + --install-hancom-office-viewer + (Important) Please do not translate this item without intend. + + + --install-rai-drive + (Important) Please do not translate this item without intend. + + + -- + (Important) Please do not translate this item without intend. + + + --simulate-failure + (Important) Please do not translate this item without intend. + + + --version + (Important) Please do not translate this item without intend. + + + Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.164 Safari/537.36 + (Important) Please do not translate this item without intend. + \ No newline at end of file diff --git a/src/TableCloth.Resources/UIStringResources.Designer.cs b/src/TableCloth.Resources/UIStringResources.Designer.cs index f762f2ed..9285d7a7 100644 --- a/src/TableCloth.Resources/UIStringResources.Designer.cs +++ b/src/TableCloth.Resources/UIStringResources.Designer.cs @@ -1,1361 +1,1352 @@ -//------------------------------------------------------------------------------ -// -// 이 코드는 도구를 사용하여 생성되었습니다. -// 런타임 버전:4.0.30319.42000 -// -// 파일 내용을 변경하면 잘못된 동작이 발생할 수 있으며, 코드를 다시 생성하면 -// 이러한 변경 내용이 손실됩니다. -// -//------------------------------------------------------------------------------ - -namespace TableCloth.Resources { - using System; - - - /// - /// 지역화된 문자열 등을 찾기 위한 강력한 형식의 리소스 클래스입니다. - /// - // 이 클래스는 ResGen 또는 Visual Studio와 같은 도구를 통해 StronglyTypedResourceBuilder - // 클래스에서 자동으로 생성되었습니다. - // 멤버를 추가하거나 제거하려면 .ResX 파일을 편집한 다음 /str 옵션을 사용하여 ResGen을 - // 다시 실행하거나 VS 프로젝트를 다시 빌드하십시오. - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "17.0.0.0")] - [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] - [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()] - public class UIStringResources { - - private static global::System.Resources.ResourceManager resourceMan; - - private static global::System.Globalization.CultureInfo resourceCulture; - - [global::System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")] - internal UIStringResources() { - } - - /// - /// 이 클래스에서 사용하는 캐시된 ResourceManager 인스턴스를 반환합니다. - /// - [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("TableCloth.Resources.UIStringResources", typeof(UIStringResources).Assembly); - resourceMan = temp; - } - return resourceMan; - } - } - - /// - /// 이 강력한 형식의 리소스 클래스를 사용하여 모든 리소스 조회에 대해 현재 스레드의 CurrentUICulture 속성을 - /// 재정의합니다. - /// - [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)] - public static global::System.Globalization.CultureInfo Culture { - get { - return resourceCulture; - } - set { - resourceCulture = value; - } - } - - /// - /// Program Version과(와) 유사한 지역화된 문자열을 찾습니다. - /// - public static string AboutWindow_AppVersionText { - get { - return ResourceManager.GetString("AboutWindow_AppVersionText", resourceCulture); - } - } - - /// - /// Catalog Version과(와) 유사한 지역화된 문자열을 찾습니다. - /// - public static string AboutWindow_CatalogDateText { - get { - return ResourceManager.GetString("AboutWindow_CatalogDateText", resourceCulture); - } - } - - /// - /// Retrieving license information.과(와) 유사한 지역화된 문자열을 찾습니다. - /// - public static string AboutWindow_LoadingLicensesMessage { - get { - return ResourceManager.GetString("AboutWindow_LoadingLicensesMessage", resourceCulture); - } - } - - /// - /// About This Program과(와) 유사한 지역화된 문자열을 찾습니다. - /// - public static string AboutWindow_Title { - get { - return ResourceManager.GetString("AboutWindow_Title", resourceCulture); - } - } - - /// - /// Once you've finalized your settings, hit the OK button.과(와) 유사한 지역화된 문자열을 찾습니다. - /// - public static string Await_ConfigASTx { - get { - return ResourceManager.GetString("Await_ConfigASTx", resourceCulture); - } - } - - /// - /// This build is for development purposes only.과(와) 유사한 지역화된 문자열을 찾습니다. - /// - public static string Build_Debug { - get { - return ResourceManager.GetString("Build_Debug", resourceCulture); - } - } - - /// - /// About과(와) 유사한 지역화된 문자열을 찾습니다. - /// - public static string Button_AboutButton { - get { - return ResourceManager.GetString("Button_AboutButton", resourceCulture); - } - } - - /// - /// Restart과(와) 유사한 지역화된 문자열을 찾습니다. - /// - public static string Button_AppRestartButton { - get { - return ResourceManager.GetString("Button_AppRestartButton", resourceCulture); - } - } - - /// - /// Browse...과(와) 유사한 지역화된 문자열을 찾습니다. - /// - public static string Button_BrowseButton { - get { - return ResourceManager.GetString("Button_BrowseButton", resourceCulture); - } - } - - /// - /// Cancel과(와) 유사한 지역화된 문자열을 찾습니다. - /// - public static string Button_CancelButton { - get { - return ResourceManager.GetString("Button_CancelButton", resourceCulture); - } - } - - /// - /// Check Update과(와) 유사한 지역화된 문자열을 찾습니다. - /// - public static string Button_CheckUpdateButton { - get { - return ResourceManager.GetString("Button_CheckUpdateButton", resourceCulture); - } - } - - /// - /// Close과(와) 유사한 지역화된 문자열을 찾습니다. - /// - public static string Button_CloseButton { - get { - return ResourceManager.GetString("Button_CloseButton", resourceCulture); - } - } - - /// - /// Convert to PFX과(와) 유사한 지역화된 문자열을 찾습니다. - /// - public static string Button_ConvertToPfxButton { - get { - return ResourceManager.GetString("Button_ConvertToPfxButton", resourceCulture); - } - } - - /// - /// Copy Commandline과(와) 유사한 지역화된 문자열을 찾습니다. - /// - public static string Button_CopyCommandLineButton { - get { - return ResourceManager.GetString("Button_CopyCommandLineButton", resourceCulture); - } - } - - /// - /// Create a Shortcut과(와) 유사한 지역화된 문자열을 찾습니다. - /// - public static string Button_CreateShortcutButton { - get { - return ResourceManager.GetString("Button_CreateShortcutButton", resourceCulture); - } - } - - /// - /// Debug과(와) 유사한 지역화된 문자열을 찾습니다. - /// - public static string Button_DebugButton { - get { - return ResourceManager.GetString("Button_DebugButton", resourceCulture); - } - } - - /// - /// Install과(와) 유사한 지역화된 문자열을 찾습니다. - /// - public static string Button_InstallButton { - get { - return ResourceManager.GetString("Button_InstallButton", resourceCulture); - } - } - - /// - /// Launch과(와) 유사한 지역화된 문자열을 찾습니다. - /// - public static string Button_LaunchButton { - get { - return ResourceManager.GetString("Button_LaunchButton", resourceCulture); - } - } - - /// - /// Import Certificates과(와) 유사한 지역화된 문자열을 찾습니다. - /// - public static string Button_MapNpkiCertButton { - get { - return ResourceManager.GetString("Button_MapNpkiCertButton", resourceCulture); - } - } - - /// - /// OK과(와) 유사한 지역화된 문자열을 찾습니다. - /// - public static string Button_OkayButton { - get { - return ResourceManager.GetString("Button_OkayButton", resourceCulture); - } - } - - /// - /// Website과(와) 유사한 지역화된 문자열을 찾습니다. - /// - public static string Button_OpenHomepageButton { - get { - return ResourceManager.GetString("Button_OpenHomepageButton", resourceCulture); - } - } - - /// - /// Privacy Policy과(와) 유사한 지역화된 문자열을 찾습니다. - /// - public static string Button_PrivacyLink { - get { - return ResourceManager.GetString("Button_PrivacyLink", resourceCulture); - } - } - - /// - /// Refresh과(와) 유사한 지역화된 문자열을 찾습니다. - /// - public static string Button_RefreshButton { - get { - return ResourceManager.GetString("Button_RefreshButton", resourceCulture); - } - } - - /// - /// System Information과(와) 유사한 지역화된 문자열을 찾습니다. - /// - public static string Button_ShowSysInfoButton { - get { - return ResourceManager.GetString("Button_ShowSysInfoButton", resourceCulture); - } - } - - /// - /// Select the website you want to access, or enter a search term in the search bar in the upper-right corner.과(와) 유사한 지역화된 문자열을 찾습니다. - /// - public static string CatalogPage_Instruction { - get { - return ResourceManager.GetString("CatalogPage_Instruction", resourceCulture); - } - } - - /// - /// {0}과(와) 유사한 지역화된 문자열을 찾습니다. - /// - public static string CatalogPage_ItemCountLabel { - get { - return ResourceManager.GetString("CatalogPage_ItemCountLabel", resourceCulture); - } - } - - /// - /// Select a service과(와) 유사한 지역화된 문자열을 찾습니다. - /// - public static string CatalogPage_Title { - get { - return ResourceManager.GetString("CatalogPage_Title", resourceCulture); - } - } - - /// - /// Available과(와) 유사한 지역화된 문자열을 찾습니다. - /// - public static string Cert_Availability_Available { - get { - return ResourceManager.GetString("Cert_Availability_Available", resourceCulture); - } - } - - /// - /// Expired과(와) 유사한 지역화된 문자열을 찾습니다. - /// - public static string Cert_Availability_Expired { - get { - return ResourceManager.GetString("Cert_Availability_Expired", resourceCulture); - } - } - - /// - /// Expires in {0} days과(와) 유사한 지역화된 문자열을 찾습니다. - /// - public static string Cert_Availability_ExpireSoon { - get { - return ResourceManager.GetString("Cert_Availability_ExpireSoon", resourceCulture); - } - } - - /// - /// Available in {0} days과(와) 유사한 지역화된 문자열을 찾습니다. - /// - public static string Cert_Availability_MayTooEarly { - get { - return ResourceManager.GetString("Cert_Availability_MayTooEarly", resourceCulture); - } - } - - /// - /// Availability과(와) 유사한 지역화된 문자열을 찾습니다. - /// - public static string CertSelectWindow_CertList_Available { - get { - return ResourceManager.GetString("CertSelectWindow_CertList_Available", resourceCulture); - } - } - - /// - /// Owner과(와) 유사한 지역화된 문자열을 찾습니다. - /// - public static string CertSelectWindow_CertList_CommonName { - get { - return ResourceManager.GetString("CertSelectWindow_CertList_CommonName", resourceCulture); - } - } - - /// - /// Country과(와) 유사한 지역화된 문자열을 찾습니다. - /// - public static string CertSelectWindow_CertList_CountryName { - get { - return ResourceManager.GetString("CertSelectWindow_CertList_CountryName", resourceCulture); - } - } - - /// - /// Organization과(와) 유사한 지역화된 문자열을 찾습니다. - /// - public static string CertSelectWindow_CertList_Organization { - get { - return ResourceManager.GetString("CertSelectWindow_CertList_Organization", resourceCulture); - } - } - - /// - /// Organizational Unit과(와) 유사한 지역화된 문자열을 찾습니다. - /// - public static string CertSelectWindow_CertList_OrganizationalUnits { - get { - return ResourceManager.GetString("CertSelectWindow_CertList_OrganizationalUnits", resourceCulture); - } - } - - /// - /// Public Certificate File (signCert.der;signPri.key)|signCert.der;signPri.key|Public Certificate File (*.pfx;*.p12)|*.pfx;*.p12과(와) 유사한 지역화된 문자열을 찾습니다. - /// - public static string CertSelectWindow_FileOpenDialog_FilterText { - get { - return ResourceManager.GetString("CertSelectWindow_FileOpenDialog_FilterText", resourceCulture); - } - } - - /// - /// Open the certificate files (signCert.der, signPri.key, *.pfx, *.p12)과(와) 유사한 지역화된 문자열을 찾습니다. - /// - public static string CertSelectWindow_FileOpenDialog_Text { - get { - return ResourceManager.GetString("CertSelectWindow_FileOpenDialog_Text", resourceCulture); - } - } - - /// - /// The following certificates were found, please select one of them.과(와) 유사한 지역화된 문자열을 찾습니다. - /// - public static string CertSelectWindow_InstructionLabel { - get { - return ResourceManager.GetString("CertSelectWindow_InstructionLabel", resourceCulture); - } - } - - /// - /// If you don't see the certificate you're looking for, click the Find Joint Certificate button to manually find the DER file and KEY file pair, or PFX file.과(와) 유사한 지역화된 문자열을 찾습니다. - /// - public static string CertSelectWindow_ManualInstructionLabelText { - get { - return ResourceManager.GetString("CertSelectWindow_ManualInstructionLabelText", resourceCulture); - } - } - - /// - /// Select a certificate...과(와) 유사한 지역화된 문자열을 찾습니다. - /// - public static string CertSelectWindow_OpenNpkiCertButton { - get { - return ResourceManager.GetString("CertSelectWindow_OpenNpkiCertButton", resourceCulture); - } - } - - /// - /// Select the certificate과(와) 유사한 지역화된 문자열을 찾습니다. - /// - public static string CertSelectWindow_Title { - get { - return ResourceManager.GetString("CertSelectWindow_Title", resourceCulture); - } - } - - /// - /// Failure Test과(와) 유사한 지역화된 문자열을 찾습니다. - /// - public static string Debug_SimulateFailure { - get { - return ResourceManager.GetString("Debug_SimulateFailure", resourceCulture); - } - } - - /// - /// Failure Test과(와) 유사한 지역화된 문자열을 찾습니다. - /// - public static string Debug_SimulateFailurePackageName { - get { - return ResourceManager.GetString("Debug_SimulateFailurePackageName", resourceCulture); - } - } - - /// - /// Number of software to be installed after sandbox run: {0}과(와) 유사한 지역화된 문자열을 찾습니다. - /// - public static string DetailPage_PackageCountDisplayLabel { - get { - return ResourceManager.GetString("DetailPage_PackageCountDisplayLabel", resourceCulture); - } - } - - /// - /// Homepage address: {0}과(와) 유사한 지역화된 문자열을 찾습니다. - /// - public static string DetailPage_UrlLabel { - get { - return ResourceManager.GetString("DetailPage_UrlLabel", resourceCulture); - } - } - - /// - /// I agree. I won't look at this screen for a week.과(와) 유사한 지역화된 문자열을 찾습니다. - /// - public static string DisclaimerWindow_AgreeButtonText { - get { - return ResourceManager.GetString("DisclaimerWindow_AgreeButtonText", resourceCulture); - } - } - - /// - /// You are responsible for any failure or damage to any person, business, or organization that occurs while using Tableau, including loss of money, missed tax returns, etc. - /// - ///We recommend that you do not use TableCloth for tasks that cannot be performed in a virtual environment and should be performed in a physical PC environment to prevent damage or harm.과(와) 유사한 지역화된 문자열을 찾습니다. - /// - public static string DisclaimerWindow_Content { - get { - return ResourceManager.GetString("DisclaimerWindow_Content", resourceCulture); - } - } - - /// - /// Be sure to read it.과(와) 유사한 지역화된 문자열을 찾습니다. - /// - public static string DisclaimerWindow_Readme { - get { - return ResourceManager.GetString("DisclaimerWindow_Readme", resourceCulture); - } - } - - /// - /// Precautions for using TableCloth과(와) 유사한 지역화된 문자열을 찾습니다. - /// - public static string DisclaimerWindow_Title { - get { - return ResourceManager.GetString("DisclaimerWindow_Title", resourceCulture); - } - } - - /// - /// The password you enter is only used inside the program and is discarded.과(와) 유사한 지역화된 문자열을 찾습니다. - /// - public static string InputPasswordWindow_Disclaimer { - get { - return ResourceManager.GetString("InputPasswordWindow_Disclaimer", resourceCulture); - } - } - - /// - /// A passphrase is required to convert the PFX certificate to a DER and KEY for delivery.과(와) 유사한 지역화된 문자열을 찾습니다. - /// - public static string InputPasswordWindow_Instruction { - get { - return ResourceManager.GetString("InputPasswordWindow_Instruction", resourceCulture); - } - } - - /// - /// PFX Certificate File Path: {0}과(와) 유사한 지역화된 문자열을 찾습니다. - /// - public static string InputPasswordWindow_PfxPathPrefix { - get { - return ResourceManager.GetString("InputPasswordWindow_PfxPathPrefix", resourceCulture); - } - } - - /// - /// Enter the password to convert the PFX certificate과(와) 유사한 지역화된 문자열을 찾습니다. - /// - public static string InputPasswordWindow_Title { - get { - return ResourceManager.GetString("InputPasswordWindow_Title", resourceCulture); - } - } - - /// - /// Config AhnLab Safe Transaction과(와) 유사한 지역화된 문자열을 찾습니다. - /// - public static string Install_ConfigASTx { - get { - return ResourceManager.GetString("Install_ConfigASTx", resourceCulture); - } - } - - /// - /// Enabling Internet Explorer Mode과(와) 유사한 지역화된 문자열을 찾습니다. - /// - public static string Install_EnableIEMode { - get { - return ResourceManager.GetString("Install_EnableIEMode", resourceCulture); - } - } - - /// - /// Enabling WinSxS과(와) 유사한 지역화된 문자열을 찾습니다. - /// - public static string Install_EnableWinSxSForSandbox { - get { - return ResourceManager.GetString("Install_EnableWinSxSForSandbox", resourceCulture); - } - } - - /// - /// Preparing Environment과(와) 유사한 지역화된 문자열을 찾습니다. - /// - public static string Install_PrepareEnvironment { - get { - return ResourceManager.GetString("Install_PrepareEnvironment", resourceCulture); - } - } - - /// - /// Reload Microsoft Edge Settings과(와) 유사한 지역화된 문자열을 찾습니다. - /// - public static string Install_ReloadMicrosoftEdge { - get { - return ResourceManager.GetString("Install_ReloadMicrosoftEdge", resourceCulture); - } - } - - /// - /// Setting Desktop Wallpaper과(와) 유사한 지역화된 문자열을 찾습니다. - /// - public static string Install_SetDesktopWallpaper { - get { - return ResourceManager.GetString("Install_SetDesktopWallpaper", resourceCulture); - } - } - - /// - /// Try Protecting Critical Services과(와) 유사한 지역화된 문자열을 찾습니다. - /// - public static string Install_TryProtectCriticalServices { - get { - return ResourceManager.GetString("Install_TryProtectCriticalServices", resourceCulture); - } - } - - /// - /// Verifying Environment과(와) 유사한 지역화된 문자열을 찾습니다. - /// - public static string Install_VerifyEnvironment { - get { - return ResourceManager.GetString("Install_VerifyEnvironment", resourceCulture); - } - } - - /// - /// AhnLab Safe Transaction needs to turn off the remote access blocking feature to continue running Windows Sandbox. Please uncheck the Block Remote Access checkbox on the screen and click the Close button.과(와) 유사한 지역화된 문자열을 찾습니다. - /// - public static string Instruction_ConfigASTx { - get { - return ResourceManager.GetString("Instruction_ConfigASTx", resourceCulture); - } - } - - /// - /// Category과(와) 유사한 지역화된 문자열을 찾습니다. - /// - public static string MainWindow_Column_Category { - get { - return ResourceManager.GetString("MainWindow_Column_Category", resourceCulture); - } - } - - /// - /// Number of software required과(와) 유사한 지역화된 문자열을 찾습니다. - /// - public static string MainWindow_Column_PackageCount { - get { - return ResourceManager.GetString("MainWindow_Column_PackageCount", resourceCulture); - } - } - - /// - /// Website Name과(와) 유사한 지역화된 문자열을 찾습니다. - /// - public static string MainWindow_Column_SiteName { - get { - return ResourceManager.GetString("MainWindow_Column_SiteName", resourceCulture); - } - } - - /// - /// Website Address과(와) 유사한 지역화된 문자열을 찾습니다. - /// - public static string MainWindow_Column_SiteUrl { - get { - return ResourceManager.GetString("MainWindow_Column_SiteUrl", resourceCulture); - } - } - - /// - /// Show Only Favorites과(와) 유사한 지역화된 문자열을 찾습니다. - /// - public static string MainWindow_Favorites { - get { - return ResourceManager.GetString("MainWindow_Favorites", resourceCulture); - } - } - - /// - /// Just run it.과(와) 유사한 지역화된 문자열을 찾습니다. - /// - public static string MainWindow_JustRunItemText { - get { - return ResourceManager.GetString("MainWindow_JustRunItemText", resourceCulture); - } - } - - /// - /// Select your preferred option.과(와) 유사한 지역화된 문자열을 찾습니다. - /// - public static string MainWindow_SelectOptionsLabelText { - get { - return ResourceManager.GetString("MainWindow_SelectOptionsLabelText", resourceCulture); - } - } - - /// - /// Select the sites you want to access on the tablecloth. The site will automatically install the necessary programs for you.과(와) 유사한 지역화된 문자열을 찾습니다. - /// - public static string MainWindow_SelectSiteLabelText { - get { - return ResourceManager.GetString("MainWindow_SelectSiteLabelText", resourceCulture); - } - } - - /// - /// The program didn't get the catalog file! But we'll run the sandbox for you.과(와) 유사한 지역화된 문자열을 찾습니다. - /// - public static string MainWindow_SelectSiteLabelText_Alt { - get { - return ResourceManager.GetString("MainWindow_SelectSiteLabelText_Alt", resourceCulture); - } - } - - /// - /// Failed to import the catalog file!과(와) 유사한 지역화된 문자열을 찾습니다. - /// - public static string MainWindow_SelectSiteLabelText_Alt2 { - get { - return ResourceManager.GetString("MainWindow_SelectSiteLabelText_Alt2", resourceCulture); - } - } - - /// - /// Keep Your Computer Sound & Safe!과(와) 유사한 지역화된 문자열을 찾습니다. - /// - public static string MainWindow_Title { - get { - return ResourceManager.GetString("MainWindow_Title", resourceCulture); - } - } - - /// - /// Add-in과(와) 유사한 지역화된 문자열을 찾습니다. - /// - public static string Option_Addin { - get { - return ResourceManager.GetString("Option_Addin", resourceCulture); - } - } - - /// - /// Add-ons과(와) 유사한 지역화된 문자열을 찾습니다. - /// - public static string Option_Addons { - get { - return ResourceManager.GetString("Option_Addons", resourceCulture); - } - } - - /// - /// Basic Preferences과(와) 유사한 지역화된 문자열을 찾습니다. - /// - public static string Option_BasicPreferences { - get { - return ResourceManager.GetString("Option_BasicPreferences", resourceCulture); - } - } - - /// - /// Post Config과(와) 유사한 지역화된 문자열을 찾습니다. - /// - public static string Option_Config { - get { - return ResourceManager.GetString("Option_Config", resourceCulture); - } - } - - /// - /// Install Adobe Reader과(와) 유사한 지역화된 문자열을 찾습니다. - /// - public static string Option_InstallAdobeReader { - get { - return ResourceManager.GetString("Option_InstallAdobeReader", resourceCulture); - } - } - - /// - /// Install Everyones Printer과(와) 유사한 지역화된 문자열을 찾습니다. - /// - public static string Option_InstallEveryonesPrinter { - get { - return ResourceManager.GetString("Option_InstallEveryonesPrinter", resourceCulture); - } - } - - /// - /// Install Hancom Office Viewer과(와) 유사한 지역화된 문자열을 찾습니다. - /// - public static string Option_InstallHancomOfficeViewer { - get { - return ResourceManager.GetString("Option_InstallHancomOfficeViewer", resourceCulture); - } - } - - /// - /// Install RaiDrive과(와) 유사한 지역화된 문자열을 찾습니다. - /// - public static string Option_InstallRaiDrive { - get { - return ResourceManager.GetString("Option_InstallRaiDrive", resourceCulture); - } - } - - /// - /// Prerequisites과(와) 유사한 지역화된 문자열을 찾습니다. - /// - public static string Option_Prerequisites { - get { - return ResourceManager.GetString("Option_Prerequisites", resourceCulture); - } - } - - /// - /// TableCloth uses the Sentry.io service to anonymously collect information about errors that occur during the execution of the Tablecloth program. If you do not want to send data, please uncheck the box below and run Tablecloth again.과(와) 유사한 지역화된 문자열을 찾습니다. - /// - public static string Option_TelemetryDescriptionText { - get { - return ResourceManager.GetString("Option_TelemetryDescriptionText", resourceCulture); - } - } - - /// - /// Collecting information to improve features과(와) 유사한 지역화된 문자열을 찾습니다. - /// - public static string Option_TelemetryPreferences { - get { - return ResourceManager.GetString("Option_TelemetryPreferences", resourceCulture); - } - } - - /// - /// Automatically collect TableCloth error logs과(와) 유사한 지역화된 문자열을 찾습니다. - /// - public static string Option_UseAutoLogCollecting { - get { - return ResourceManager.GetString("Option_UseAutoLogCollecting", resourceCulture); - } - } - - /// - /// Enable Internet Explorer compatibility mode과(와) 유사한 지역화된 문자열을 찾습니다. - /// - public static string Option_UseIEModeCompatList { - get { - return ResourceManager.GetString("Option_UseIEModeCompatList", resourceCulture); - } - } - - /// - /// Using audio input - be careful about revealing personal information!과(와) 유사한 지역화된 문자열을 찾습니다. - /// - public static string Option_UseMicrophoneCheckboxText { - get { - return ResourceManager.GetString("Option_UseMicrophoneCheckboxText", resourceCulture); - } - } - - /// - /// Using with printers과(와) 유사한 지역화된 문자열을 찾습니다. - /// - public static string Option_UsePrinterCheckboxText { - get { - return ResourceManager.GetString("Option_UsePrinterCheckboxText", resourceCulture); - } - } - - /// - /// Using video input - be careful about exposing personal information!과(와) 유사한 지역화된 문자열을 찾습니다. - /// - public static string Option_UseWebCameraCheckboxText { - get { - return ResourceManager.GetString("Option_UseWebCameraCheckboxText", resourceCulture); - } - } - - /// - /// Enter a search keyword (e.g., Shinhan)과(와) 유사한 지역화된 문자열을 찾습니다. - /// - public static string SearchFilter_Watermark { - get { - return ResourceManager.GetString("SearchFilter_Watermark", resourceCulture); - } - } - - /// - /// {0} files deleted successfully과(와) 유사한 지역화된 문자열을 찾습니다. - /// - public static string Sponge_DeletedFileCount { - get { - return ResourceManager.GetString("Sponge_DeletedFileCount", resourceCulture); - } - } - - /// - /// Failed to delete {0} files과(와) 유사한 지역화된 문자열을 찾습니다. - /// - public static string Sponge_DeleteFailedFileCount { - get { - return ResourceManager.GetString("Sponge_DeleteFailedFileCount", resourceCulture); - } - } - - /// - /// Files deleted successfully ({0} of {1})과(와) 유사한 지역화된 문자열을 찾습니다. - /// - public static string Sponge_DeleteProgressMessage { - get { - return ResourceManager.GetString("Sponge_DeleteProgressMessage", resourceCulture); - } - } - - /// - /// Exit과(와) 유사한 지역화된 문자열을 찾습니다. - /// - public static string Sponge_Exit { - get { - return ResourceManager.GetString("Sponge_Exit", resourceCulture); - } - } - - /// - /// This program helps you irretrievably delete the joint certificate file that was copied with the TableCloth run.과(와) 유사한 지역화된 문자열을 찾습니다. - /// - public static string Sponge_Introduction { - get { - return ResourceManager.GetString("Sponge_Introduction", resourceCulture); - } - } - - /// - /// The deletion of the retrieved certificate files results in the following:과(와) 유사한 지역화된 문자열을 찾습니다. - /// - public static string Sponge_OperationCompleted { - get { - return ResourceManager.GetString("Sponge_OperationCompleted", resourceCulture); - } - } - - /// - /// No certificate files were found.과(와) 유사한 지역화된 문자열을 찾습니다. - /// - public static string Sponge_OperationCompleted_WithNoResult { - get { - return ResourceManager.GetString("Sponge_OperationCompleted_WithNoResult", resourceCulture); - } - } - - /// - /// Deleting by overwriting multiple times과(와) 유사한 지역화된 문자열을 찾습니다. - /// - public static string Sponge_OverwriteMultipleTimes { - get { - return ResourceManager.GetString("Sponge_OverwriteMultipleTimes", resourceCulture); - } - } - - /// - /// Delete Files과(와) 유사한 지역화된 문자열을 찾습니다. - /// - public static string Sponge_PerformDelete { - get { - return ResourceManager.GetString("Sponge_PerformDelete", resourceCulture); - } - } - - /// - /// Searching for a joint certificate file...과(와) 유사한 지역화된 문자열을 찾습니다. - /// - public static string Sponge_WorkInProgress { - get { - return ResourceManager.GetString("Sponge_WorkInProgress", resourceCulture); - } - } - - /// - /// This program is a tool that installs the requested installers into the sandbox at once. Press the Install button to start the installation.과(와) 유사한 지역화된 문자열을 찾습니다. - /// - public static string Spork_AppInstructionMessage { - get { - return ResourceManager.GetString("Spork_AppInstructionMessage", resourceCulture); - } - } - - /// - /// Spork과(와) 유사한 지역화된 문자열을 찾습니다. - /// - public static string Spork_AppTitle { - get { - return ResourceManager.GetString("Spork_AppTitle", resourceCulture); - } - } - - /// - /// Separate installation script과(와) 유사한 지역화된 문자열을 찾습니다. - /// - public static string Spork_CustomScript_Title { - get { - return ResourceManager.GetString("Spork_CustomScript_Title", resourceCulture); - } - } - - /// - /// Downloading...과(와) 유사한 지역화된 문자열을 찾습니다. - /// - public static string Spork_Download_InProgress { - get { - return ResourceManager.GetString("Spork_Download_InProgress", resourceCulture); - } - } - - /// - /// Spork is running in dry run mode.과(와) 유사한 지역화된 문자열을 찾습니다. - /// - public static string Spork_DryRunInstructionMessage { - get { - return ResourceManager.GetString("Spork_DryRunInstructionMessage", resourceCulture); - } - } - - /// - /// Fail과(와) 유사한 지역화된 문자열을 찾습니다. - /// - public static string Spork_Install_Failed { - get { - return ResourceManager.GetString("Spork_Install_Failed", resourceCulture); - } - } - - /// - /// Installing...과(와) 유사한 지역화된 문자열을 찾습니다. - /// - public static string Spork_Install_InProgress { - get { - return ResourceManager.GetString("Spork_Install_InProgress", resourceCulture); - } - } - - /// - /// Skipped과(와) 유사한 지역화된 문자열을 찾습니다. - /// - public static string Spork_Install_Skipped { - get { - return ResourceManager.GetString("Spork_Install_Skipped", resourceCulture); - } - } - - /// - /// Done과(와) 유사한 지역화된 문자열을 찾습니다. - /// - public static string Spork_Install_Succeed { - get { - return ResourceManager.GetString("Spork_Install_Succeed", resourceCulture); - } - } - - /// - /// The website ID you want to use is not specified. The sandbox is now available for use.과(와) 유사한 지역화된 문자열을 찾습니다. - /// - public static string Spork_No_Targets { - get { - return ResourceManager.GetString("Spork_No_Targets", resourceCulture); - } - } - - /// - /// Caveats과(와) 유사한 지역화된 문자열을 찾습니다. - /// - public static string Spork_PrecautionWindowText { - get { - return ResourceManager.GetString("Spork_PrecautionWindowText", resourceCulture); - } - } - - /// - /// Read more과(와) 유사한 지역화된 문자열을 찾습니다. - /// - public static string Spork_ShowDetailError { - get { - return ResourceManager.GetString("Spork_ShowDetailError", resourceCulture); - } - } - - /// - /// Precautions for using the site과(와) 유사한 지역화된 문자열을 찾습니다. - /// - public static string Spork_Warning_Title { - get { - return ResourceManager.GetString("Spork_Warning_Title", resourceCulture); - } - } - - /// - /// Checking internet connection...과(와) 유사한 지역화된 문자열을 찾습니다. - /// - public static string Status_CheckInternetConnection { - get { - return ResourceManager.GetString("Status_CheckInternetConnection", resourceCulture); - } - } - - /// - /// You're ready to run.과(와) 유사한 지역화된 문자열을 찾습니다. - /// - public static string Status_Done { - get { - return ResourceManager.GetString("Status_Done", resourceCulture); - } - } - - /// - /// Checking system environment...과(와) 유사한 지역화된 문자열을 찾습니다. - /// - public static string Status_EvaluatingRequirementsMet { - get { - return ResourceManager.GetString("Status_EvaluatingRequirementsMet", resourceCulture); - } - } - - /// - /// Initializing the application...과(와) 유사한 지역화된 문자열을 찾습니다. - /// - public static string Status_InitializingApplication { - get { - return ResourceManager.GetString("Status_InitializingApplication", resourceCulture); - } - } - - /// - /// An error occurred.과(와) 유사한 지역화된 문자열을 찾습니다. - /// - public static string Status_InitializingFailed { - get { - return ResourceManager.GetString("Status_InitializingFailed", resourceCulture); - } - } - - /// - /// Loading catalog...과(와) 유사한 지역화된 문자열을 찾습니다. - /// - public static string Status_LoadingCatalog { - get { - return ResourceManager.GetString("Status_LoadingCatalog", resourceCulture); - } - } - - /// - /// Loading images...과(와) 유사한 지역화된 문자열을 찾습니다. - /// - public static string Status_LoadingImages { - get { - return ResourceManager.GetString("Status_LoadingImages", resourceCulture); - } - } - - /// - /// Loading preferences...과(와) 유사한 지역화된 문자열을 찾습니다. - /// - public static string Status_LoadingPreferences { - get { - return ResourceManager.GetString("Status_LoadingPreferences", resourceCulture); - } - } - - /// - /// Analyzing the command line...과(와) 유사한 지역화된 문자열을 찾습니다. - /// - public static string Status_ParsingCommandLine { - get { - return ResourceManager.GetString("Status_ParsingCommandLine", resourceCulture); - } - } - - /// - /// Please wait a second...과(와) 유사한 지역화된 문자열을 찾습니다. - /// - public static string Status_PleaseWait { - get { - return ResourceManager.GetString("Status_PleaseWait", resourceCulture); - } - } - - /// - /// Specifies a list of one or more site IDs from the catalog.과(와) 유사한 지역화된 문자열을 찾습니다. - /// - public static string TableCloth_Arguments_SiteIdList_Help { - get { - return ResourceManager.GetString("TableCloth_Arguments_SiteIdList_Help", resourceCulture); - } - } - - /// - /// Specify the private public certificate secret key file.과(와) 유사한 지역화된 문자열을 찾습니다. - /// - public static string TableCloth_Switch_CertPrivateKey_Help { - get { - return ResourceManager.GetString("TableCloth_Switch_CertPrivateKey_Help", resourceCulture); - } - } - - /// - /// Specify the private public certificate public key file.과(와) 유사한 지역화된 문자열을 찾습니다. - /// - public static string TableCloth_Switch_CertPublicKey_Help { - get { - return ResourceManager.GetString("TableCloth_Switch_CertPublicKey_Help", resourceCulture); - } - } - - /// - /// Change the behavior so that no system changes are attempted.과(와) 유사한 지역화된 문자열을 찾습니다. - /// - public static string TableCloth_Switch_DryRun_Help { - get { - return ResourceManager.GetString("TableCloth_Switch_DryRun_Help", resourceCulture); - } - } - - /// - /// Grant permission to take camera shots inside the Windows Sandbox.과(와) 유사한 지역화된 문자열을 찾습니다. - /// - public static string TableCloth_Switch_EnableCamera_Help { - get { - return ResourceManager.GetString("TableCloth_Switch_EnableCamera_Help", resourceCulture); - } - } - - /// - /// Copy the joint certificate file to be available inside the Windows Sandbox.과(와) 유사한 지역화된 문자열을 찾습니다. - /// - public static string TableCloth_Switch_EnableCert_Help { - get { - return ResourceManager.GetString("TableCloth_Switch_EnableCert_Help", resourceCulture); - } - } - - /// - /// Change the settings to allow the Microsoft Edge browser to run in Internet Explorer mode inside the Windows Sandbox.과(와) 유사한 지역화된 문자열을 찾습니다. - /// - public static string TableCloth_Switch_EnableIEMode_Help { - get { - return ResourceManager.GetString("TableCloth_Switch_EnableIEMode_Help", resourceCulture); - } - } - - /// - /// Grant permission to record audio inside the Windows Sandbox.과(와) 유사한 지역화된 문자열을 찾습니다. - /// - public static string TableCloth_Switch_EnableMicrophone_Help { - get { - return ResourceManager.GetString("TableCloth_Switch_EnableMicrophone_Help", resourceCulture); - } - } - - /// - /// Authorize the printer to request printing from within the Windows Sandbox.과(와) 유사한 지역화된 문자열을 찾습니다. - /// - public static string TableCloth_Switch_EnablePrinter_Help { - get { - return ResourceManager.GetString("TableCloth_Switch_EnablePrinter_Help", resourceCulture); - } - } - - /// - /// Displays the help you're viewing.과(와) 유사한 지역화된 문자열을 찾습니다. - /// - public static string TableCloth_Switch_Help_Help { - get { - return ResourceManager.GetString("TableCloth_Switch_Help_Help", resourceCulture); - } - } - - /// - /// Attempt to install Adobe Reader.과(와) 유사한 지역화된 문자열을 찾습니다. - /// - public static string TableCloth_Switch_InstallAdobeReader_Help { - get { - return ResourceManager.GetString("TableCloth_Switch_InstallAdobeReader_Help", resourceCulture); - } - } - - /// - /// Attempt to install Everyones' Printer.과(와) 유사한 지역화된 문자열을 찾습니다. - /// - public static string TableCloth_Switch_InstallEveryonesPrinter_Help { - get { - return ResourceManager.GetString("TableCloth_Switch_InstallEveryonesPrinter_Help", resourceCulture); - } - } - - /// - /// Attempt to install HancomOffice Viewer.과(와) 유사한 지역화된 문자열을 찾습니다. - /// - public static string TableCloth_Switch_InstallHancomOfficeViewer_Help { - get { - return ResourceManager.GetString("TableCloth_Switch_InstallHancomOfficeViewer_Help", resourceCulture); - } - } - - /// - /// Attempt to install RaiDrive.과(와) 유사한 지역화된 문자열을 찾습니다. - /// - public static string TableCloth_Switch_InstallRaiDrive_Help { - get { - return ResourceManager.GetString("TableCloth_Switch_InstallRaiDrive_Help", resourceCulture); - } - } - - /// - /// Simulates the occurrence of an error with random probability. This option is a developer feature.과(와) 유사한 지역화된 문자열을 찾습니다. - /// - public static string TableCloth_Switch_SimulateFailure_Help { - get { - return ResourceManager.GetString("TableCloth_Switch_SimulateFailure_Help", resourceCulture); - } - } - - /// - /// Displays version information for the program.과(와) 유사한 지역화된 문자열을 찾습니다. - /// - public static string TableCloth_Switch_Version_Help { - get { - return ResourceManager.GetString("TableCloth_Switch_Version_Help", resourceCulture); - } - } - - /// - /// TableCloth Error과(와) 유사한 지역화된 문자열을 찾습니다. - /// - public static string TitleText_Error { - get { - return ResourceManager.GetString("TitleText_Error", resourceCulture); - } - } - - /// - /// TableCloth Info과(와) 유사한 지역화된 문자열을 찾습니다. - /// - public static string TitleText_Info { - get { - return ResourceManager.GetString("TitleText_Info", resourceCulture); - } - } - - /// - /// TableCloth Question과(와) 유사한 지역화된 문자열을 찾습니다. - /// - public static string TitleText_Question { - get { - return ResourceManager.GetString("TitleText_Question", resourceCulture); - } - } - - /// - /// TableCloth Warning과(와) 유사한 지역화된 문자열을 찾습니다. - /// - public static string TitleText_Warning { - get { - return ResourceManager.GetString("TitleText_Warning", resourceCulture); - } - } - } -} +//------------------------------------------------------------------------------ +// +// 이 코드는 도구를 사용하여 생성되었습니다. +// 런타임 버전:4.0.30319.42000 +// +// 파일 내용을 변경하면 잘못된 동작이 발생할 수 있으며, 코드를 다시 생성하면 +// 이러한 변경 내용이 손실됩니다. +// +//------------------------------------------------------------------------------ + +namespace TableCloth.Resources { + using System; + + + /// + /// 지역화된 문자열 등을 찾기 위한 강력한 형식의 리소스 클래스입니다. + /// + // 이 클래스는 ResGen 또는 Visual Studio와 같은 도구를 통해 StronglyTypedResourceBuilder + // 클래스에서 자동으로 생성되었습니다. + // 멤버를 추가하거나 제거하려면 .ResX 파일을 편집한 다음 /str 옵션을 사용하여 ResGen을 + // 다시 실행하거나 VS 프로젝트를 다시 빌드하십시오. + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "17.0.0.0")] + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()] + public class UIStringResources { + + private static global::System.Resources.ResourceManager resourceMan; + + private static global::System.Globalization.CultureInfo resourceCulture; + + [global::System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")] + internal UIStringResources() { + } + + /// + /// 이 클래스에서 사용하는 캐시된 ResourceManager 인스턴스를 반환합니다. + /// + [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("TableCloth.Resources.UIStringResources", typeof(UIStringResources).Assembly); + resourceMan = temp; + } + return resourceMan; + } + } + + /// + /// 이 강력한 형식의 리소스 클래스를 사용하여 모든 리소스 조회에 대해 현재 스레드의 CurrentUICulture 속성을 + /// 재정의합니다. + /// + [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)] + public static global::System.Globalization.CultureInfo Culture { + get { + return resourceCulture; + } + set { + resourceCulture = value; + } + } + + /// + /// Program Version과(와) 유사한 지역화된 문자열을 찾습니다. + /// + public static string AboutWindow_AppVersionText { + get { + return ResourceManager.GetString("AboutWindow_AppVersionText", resourceCulture); + } + } + + /// + /// Catalog Version과(와) 유사한 지역화된 문자열을 찾습니다. + /// + public static string AboutWindow_CatalogDateText { + get { + return ResourceManager.GetString("AboutWindow_CatalogDateText", resourceCulture); + } + } + + /// + /// Retrieving license information.과(와) 유사한 지역화된 문자열을 찾습니다. + /// + public static string AboutWindow_LoadingLicensesMessage { + get { + return ResourceManager.GetString("AboutWindow_LoadingLicensesMessage", resourceCulture); + } + } + + /// + /// About This Program과(와) 유사한 지역화된 문자열을 찾습니다. + /// + public static string AboutWindow_Title { + get { + return ResourceManager.GetString("AboutWindow_Title", resourceCulture); + } + } + + /// + /// Once you've finalized your settings, hit the OK button.과(와) 유사한 지역화된 문자열을 찾습니다. + /// + public static string Await_ConfigASTx { + get { + return ResourceManager.GetString("Await_ConfigASTx", resourceCulture); + } + } + + /// + /// This build is for development purposes only.과(와) 유사한 지역화된 문자열을 찾습니다. + /// + public static string Build_Debug { + get { + return ResourceManager.GetString("Build_Debug", resourceCulture); + } + } + + /// + /// About과(와) 유사한 지역화된 문자열을 찾습니다. + /// + public static string Button_AboutButton { + get { + return ResourceManager.GetString("Button_AboutButton", resourceCulture); + } + } + + /// + /// Restart과(와) 유사한 지역화된 문자열을 찾습니다. + /// + public static string Button_AppRestartButton { + get { + return ResourceManager.GetString("Button_AppRestartButton", resourceCulture); + } + } + + /// + /// Browse...과(와) 유사한 지역화된 문자열을 찾습니다. + /// + public static string Button_BrowseButton { + get { + return ResourceManager.GetString("Button_BrowseButton", resourceCulture); + } + } + + /// + /// Cancel과(와) 유사한 지역화된 문자열을 찾습니다. + /// + public static string Button_CancelButton { + get { + return ResourceManager.GetString("Button_CancelButton", resourceCulture); + } + } + + /// + /// Check Update과(와) 유사한 지역화된 문자열을 찾습니다. + /// + public static string Button_CheckUpdateButton { + get { + return ResourceManager.GetString("Button_CheckUpdateButton", resourceCulture); + } + } + + /// + /// Close과(와) 유사한 지역화된 문자열을 찾습니다. + /// + public static string Button_CloseButton { + get { + return ResourceManager.GetString("Button_CloseButton", resourceCulture); + } + } + + /// + /// Convert to PFX과(와) 유사한 지역화된 문자열을 찾습니다. + /// + public static string Button_ConvertToPfxButton { + get { + return ResourceManager.GetString("Button_ConvertToPfxButton", resourceCulture); + } + } + + /// + /// Copy Commandline과(와) 유사한 지역화된 문자열을 찾습니다. + /// + public static string Button_CopyCommandLineButton { + get { + return ResourceManager.GetString("Button_CopyCommandLineButton", resourceCulture); + } + } + + /// + /// Create a Shortcut과(와) 유사한 지역화된 문자열을 찾습니다. + /// + public static string Button_CreateShortcutButton { + get { + return ResourceManager.GetString("Button_CreateShortcutButton", resourceCulture); + } + } + + /// + /// Debug과(와) 유사한 지역화된 문자열을 찾습니다. + /// + public static string Button_DebugButton { + get { + return ResourceManager.GetString("Button_DebugButton", resourceCulture); + } + } + + /// + /// Install과(와) 유사한 지역화된 문자열을 찾습니다. + /// + public static string Button_InstallButton { + get { + return ResourceManager.GetString("Button_InstallButton", resourceCulture); + } + } + + /// + /// Launch과(와) 유사한 지역화된 문자열을 찾습니다. + /// + public static string Button_LaunchButton { + get { + return ResourceManager.GetString("Button_LaunchButton", resourceCulture); + } + } + + /// + /// Import Certificates과(와) 유사한 지역화된 문자열을 찾습니다. + /// + public static string Button_MapNpkiCertButton { + get { + return ResourceManager.GetString("Button_MapNpkiCertButton", resourceCulture); + } + } + + /// + /// OK과(와) 유사한 지역화된 문자열을 찾습니다. + /// + public static string Button_OkayButton { + get { + return ResourceManager.GetString("Button_OkayButton", resourceCulture); + } + } + + /// + /// Website과(와) 유사한 지역화된 문자열을 찾습니다. + /// + public static string Button_OpenHomepageButton { + get { + return ResourceManager.GetString("Button_OpenHomepageButton", resourceCulture); + } + } + + /// + /// Privacy Policy과(와) 유사한 지역화된 문자열을 찾습니다. + /// + public static string Button_PrivacyLink { + get { + return ResourceManager.GetString("Button_PrivacyLink", resourceCulture); + } + } + + /// + /// Refresh과(와) 유사한 지역화된 문자열을 찾습니다. + /// + public static string Button_RefreshButton { + get { + return ResourceManager.GetString("Button_RefreshButton", resourceCulture); + } + } + + /// + /// System Information과(와) 유사한 지역화된 문자열을 찾습니다. + /// + public static string Button_ShowSysInfoButton { + get { + return ResourceManager.GetString("Button_ShowSysInfoButton", resourceCulture); + } + } + + /// + /// Select the website you want to access, or enter a search term in the search bar in the upper-right corner.과(와) 유사한 지역화된 문자열을 찾습니다. + /// + public static string CatalogPage_Instruction { + get { + return ResourceManager.GetString("CatalogPage_Instruction", resourceCulture); + } + } + + /// + /// {0}과(와) 유사한 지역화된 문자열을 찾습니다. + /// + public static string CatalogPage_ItemCountLabel { + get { + return ResourceManager.GetString("CatalogPage_ItemCountLabel", resourceCulture); + } + } + + /// + /// Select a service과(와) 유사한 지역화된 문자열을 찾습니다. + /// + public static string CatalogPage_Title { + get { + return ResourceManager.GetString("CatalogPage_Title", resourceCulture); + } + } + + /// + /// Available과(와) 유사한 지역화된 문자열을 찾습니다. + /// + public static string Cert_Availability_Available { + get { + return ResourceManager.GetString("Cert_Availability_Available", resourceCulture); + } + } + + /// + /// Expired과(와) 유사한 지역화된 문자열을 찾습니다. + /// + public static string Cert_Availability_Expired { + get { + return ResourceManager.GetString("Cert_Availability_Expired", resourceCulture); + } + } + + /// + /// Expires in {0} days과(와) 유사한 지역화된 문자열을 찾습니다. + /// + public static string Cert_Availability_ExpireSoon { + get { + return ResourceManager.GetString("Cert_Availability_ExpireSoon", resourceCulture); + } + } + + /// + /// Available in {0} days과(와) 유사한 지역화된 문자열을 찾습니다. + /// + public static string Cert_Availability_MayTooEarly { + get { + return ResourceManager.GetString("Cert_Availability_MayTooEarly", resourceCulture); + } + } + + /// + /// Availability과(와) 유사한 지역화된 문자열을 찾습니다. + /// + public static string CertSelectWindow_CertList_Available { + get { + return ResourceManager.GetString("CertSelectWindow_CertList_Available", resourceCulture); + } + } + + /// + /// Owner과(와) 유사한 지역화된 문자열을 찾습니다. + /// + public static string CertSelectWindow_CertList_CommonName { + get { + return ResourceManager.GetString("CertSelectWindow_CertList_CommonName", resourceCulture); + } + } + + /// + /// Country과(와) 유사한 지역화된 문자열을 찾습니다. + /// + public static string CertSelectWindow_CertList_CountryName { + get { + return ResourceManager.GetString("CertSelectWindow_CertList_CountryName", resourceCulture); + } + } + + /// + /// Organization과(와) 유사한 지역화된 문자열을 찾습니다. + /// + public static string CertSelectWindow_CertList_Organization { + get { + return ResourceManager.GetString("CertSelectWindow_CertList_Organization", resourceCulture); + } + } + + /// + /// Organizational Unit과(와) 유사한 지역화된 문자열을 찾습니다. + /// + public static string CertSelectWindow_CertList_OrganizationalUnits { + get { + return ResourceManager.GetString("CertSelectWindow_CertList_OrganizationalUnits", resourceCulture); + } + } + + /// + /// Public Certificate File (signCert.der;signPri.key)|signCert.der;signPri.key|Public Certificate File (*.pfx;*.p12)|*.pfx;*.p12과(와) 유사한 지역화된 문자열을 찾습니다. + /// + public static string CertSelectWindow_FileOpenDialog_FilterText { + get { + return ResourceManager.GetString("CertSelectWindow_FileOpenDialog_FilterText", resourceCulture); + } + } + + /// + /// Open the certificate files (signCert.der, signPri.key, *.pfx, *.p12)과(와) 유사한 지역화된 문자열을 찾습니다. + /// + public static string CertSelectWindow_FileOpenDialog_Text { + get { + return ResourceManager.GetString("CertSelectWindow_FileOpenDialog_Text", resourceCulture); + } + } + + /// + /// The following certificates were found, please select one of them.과(와) 유사한 지역화된 문자열을 찾습니다. + /// + public static string CertSelectWindow_InstructionLabel { + get { + return ResourceManager.GetString("CertSelectWindow_InstructionLabel", resourceCulture); + } + } + + /// + /// If you don't see the certificate you're looking for, click the Find Joint Certificate button to manually find the DER file and KEY file pair, or PFX file.과(와) 유사한 지역화된 문자열을 찾습니다. + /// + public static string CertSelectWindow_ManualInstructionLabelText { + get { + return ResourceManager.GetString("CertSelectWindow_ManualInstructionLabelText", resourceCulture); + } + } + + /// + /// Select a certificate...과(와) 유사한 지역화된 문자열을 찾습니다. + /// + public static string CertSelectWindow_OpenNpkiCertButton { + get { + return ResourceManager.GetString("CertSelectWindow_OpenNpkiCertButton", resourceCulture); + } + } + + /// + /// Select the certificate과(와) 유사한 지역화된 문자열을 찾습니다. + /// + public static string CertSelectWindow_Title { + get { + return ResourceManager.GetString("CertSelectWindow_Title", resourceCulture); + } + } + + /// + /// Failure Test과(와) 유사한 지역화된 문자열을 찾습니다. + /// + public static string Debug_SimulateFailure { + get { + return ResourceManager.GetString("Debug_SimulateFailure", resourceCulture); + } + } + + /// + /// Failure Test과(와) 유사한 지역화된 문자열을 찾습니다. + /// + public static string Debug_SimulateFailurePackageName { + get { + return ResourceManager.GetString("Debug_SimulateFailurePackageName", resourceCulture); + } + } + + /// + /// Number of software to be installed after sandbox run: {0}과(와) 유사한 지역화된 문자열을 찾습니다. + /// + public static string DetailPage_PackageCountDisplayLabel { + get { + return ResourceManager.GetString("DetailPage_PackageCountDisplayLabel", resourceCulture); + } + } + + /// + /// Homepage address: {0}과(와) 유사한 지역화된 문자열을 찾습니다. + /// + public static string DetailPage_UrlLabel { + get { + return ResourceManager.GetString("DetailPage_UrlLabel", resourceCulture); + } + } + + /// + /// I agree. I won't look at this screen for a week.과(와) 유사한 지역화된 문자열을 찾습니다. + /// + public static string DisclaimerWindow_AgreeButtonText { + get { + return ResourceManager.GetString("DisclaimerWindow_AgreeButtonText", resourceCulture); + } + } + + /// + /// You are responsible for any failure or damage to any person, business, or organization that occurs while using Tableau, including loss of money, missed tax returns, etc. + /// + ///We recommend that you do not use TableCloth for tasks that cannot be performed in a virtual environment and should be performed in a physical PC environment to prevent damage or harm.과(와) 유사한 지역화된 문자열을 찾습니다. + /// + public static string DisclaimerWindow_Content { + get { + return ResourceManager.GetString("DisclaimerWindow_Content", resourceCulture); + } + } + + /// + /// Be sure to read it.과(와) 유사한 지역화된 문자열을 찾습니다. + /// + public static string DisclaimerWindow_Readme { + get { + return ResourceManager.GetString("DisclaimerWindow_Readme", resourceCulture); + } + } + + /// + /// Precautions for using TableCloth과(와) 유사한 지역화된 문자열을 찾습니다. + /// + public static string DisclaimerWindow_Title { + get { + return ResourceManager.GetString("DisclaimerWindow_Title", resourceCulture); + } + } + + /// + /// The password you enter is only used inside the program and is discarded.과(와) 유사한 지역화된 문자열을 찾습니다. + /// + public static string InputPasswordWindow_Disclaimer { + get { + return ResourceManager.GetString("InputPasswordWindow_Disclaimer", resourceCulture); + } + } + + /// + /// A passphrase is required to convert the PFX certificate to a DER and KEY for delivery.과(와) 유사한 지역화된 문자열을 찾습니다. + /// + public static string InputPasswordWindow_Instruction { + get { + return ResourceManager.GetString("InputPasswordWindow_Instruction", resourceCulture); + } + } + + /// + /// PFX Certificate File Path: {0}과(와) 유사한 지역화된 문자열을 찾습니다. + /// + public static string InputPasswordWindow_PfxPathPrefix { + get { + return ResourceManager.GetString("InputPasswordWindow_PfxPathPrefix", resourceCulture); + } + } + + /// + /// Enter the password to convert the PFX certificate과(와) 유사한 지역화된 문자열을 찾습니다. + /// + public static string InputPasswordWindow_Title { + get { + return ResourceManager.GetString("InputPasswordWindow_Title", resourceCulture); + } + } + + /// + /// Config AhnLab Safe Transaction과(와) 유사한 지역화된 문자열을 찾습니다. + /// + public static string Install_ConfigASTx { + get { + return ResourceManager.GetString("Install_ConfigASTx", resourceCulture); + } + } + + /// + /// Enabling Internet Explorer Mode과(와) 유사한 지역화된 문자열을 찾습니다. + /// + public static string Install_EnableIEMode { + get { + return ResourceManager.GetString("Install_EnableIEMode", resourceCulture); + } + } + + /// + /// Enabling WinSxS과(와) 유사한 지역화된 문자열을 찾습니다. + /// + public static string Install_EnableWinSxSForSandbox { + get { + return ResourceManager.GetString("Install_EnableWinSxSForSandbox", resourceCulture); + } + } + + /// + /// Preparing Environment과(와) 유사한 지역화된 문자열을 찾습니다. + /// + public static string Install_PrepareEnvironment { + get { + return ResourceManager.GetString("Install_PrepareEnvironment", resourceCulture); + } + } + + /// + /// Reload Microsoft Edge Settings과(와) 유사한 지역화된 문자열을 찾습니다. + /// + public static string Install_ReloadMicrosoftEdge { + get { + return ResourceManager.GetString("Install_ReloadMicrosoftEdge", resourceCulture); + } + } + + /// + /// Setting Desktop Wallpaper과(와) 유사한 지역화된 문자열을 찾습니다. + /// + public static string Install_SetDesktopWallpaper { + get { + return ResourceManager.GetString("Install_SetDesktopWallpaper", resourceCulture); + } + } + + /// + /// Try Protecting Critical Services과(와) 유사한 지역화된 문자열을 찾습니다. + /// + public static string Install_TryProtectCriticalServices { + get { + return ResourceManager.GetString("Install_TryProtectCriticalServices", resourceCulture); + } + } + + /// + /// Verifying Environment과(와) 유사한 지역화된 문자열을 찾습니다. + /// + public static string Install_VerifyEnvironment { + get { + return ResourceManager.GetString("Install_VerifyEnvironment", resourceCulture); + } + } + + /// + /// AhnLab Safe Transaction needs to turn off the remote access blocking feature to continue running Windows Sandbox. Please uncheck the Block Remote Access checkbox on the screen and click the Close button.과(와) 유사한 지역화된 문자열을 찾습니다. + /// + public static string Instruction_ConfigASTx { + get { + return ResourceManager.GetString("Instruction_ConfigASTx", resourceCulture); + } + } + + /// + /// Category과(와) 유사한 지역화된 문자열을 찾습니다. + /// + public static string MainWindow_Column_Category { + get { + return ResourceManager.GetString("MainWindow_Column_Category", resourceCulture); + } + } + + /// + /// Number of software required과(와) 유사한 지역화된 문자열을 찾습니다. + /// + public static string MainWindow_Column_PackageCount { + get { + return ResourceManager.GetString("MainWindow_Column_PackageCount", resourceCulture); + } + } + + /// + /// Website Name과(와) 유사한 지역화된 문자열을 찾습니다. + /// + public static string MainWindow_Column_SiteName { + get { + return ResourceManager.GetString("MainWindow_Column_SiteName", resourceCulture); + } + } + + /// + /// Website Address과(와) 유사한 지역화된 문자열을 찾습니다. + /// + public static string MainWindow_Column_SiteUrl { + get { + return ResourceManager.GetString("MainWindow_Column_SiteUrl", resourceCulture); + } + } + + /// + /// Show Only Favorites과(와) 유사한 지역화된 문자열을 찾습니다. + /// + public static string MainWindow_Favorites { + get { + return ResourceManager.GetString("MainWindow_Favorites", resourceCulture); + } + } + + /// + /// Just run it.과(와) 유사한 지역화된 문자열을 찾습니다. + /// + public static string MainWindow_JustRunItemText { + get { + return ResourceManager.GetString("MainWindow_JustRunItemText", resourceCulture); + } + } + + /// + /// Select your preferred option.과(와) 유사한 지역화된 문자열을 찾습니다. + /// + public static string MainWindow_SelectOptionsLabelText { + get { + return ResourceManager.GetString("MainWindow_SelectOptionsLabelText", resourceCulture); + } + } + + /// + /// Select the sites you want to access on the tablecloth. The site will automatically install the necessary programs for you.과(와) 유사한 지역화된 문자열을 찾습니다. + /// + public static string MainWindow_SelectSiteLabelText { + get { + return ResourceManager.GetString("MainWindow_SelectSiteLabelText", resourceCulture); + } + } + + /// + /// The program didn't get the catalog file! But we'll run the sandbox for you.과(와) 유사한 지역화된 문자열을 찾습니다. + /// + public static string MainWindow_SelectSiteLabelText_Alt { + get { + return ResourceManager.GetString("MainWindow_SelectSiteLabelText_Alt", resourceCulture); + } + } + + /// + /// Failed to import the catalog file!과(와) 유사한 지역화된 문자열을 찾습니다. + /// + public static string MainWindow_SelectSiteLabelText_Alt2 { + get { + return ResourceManager.GetString("MainWindow_SelectSiteLabelText_Alt2", resourceCulture); + } + } + + /// + /// Keep Your Computer Sound & Safe!과(와) 유사한 지역화된 문자열을 찾습니다. + /// + public static string MainWindow_Title { + get { + return ResourceManager.GetString("MainWindow_Title", resourceCulture); + } + } + + /// + /// Add-in과(와) 유사한 지역화된 문자열을 찾습니다. + /// + public static string Option_Addin { + get { + return ResourceManager.GetString("Option_Addin", resourceCulture); + } + } + + /// + /// Add-ons과(와) 유사한 지역화된 문자열을 찾습니다. + /// + public static string Option_Addons { + get { + return ResourceManager.GetString("Option_Addons", resourceCulture); + } + } + + /// + /// Basic Preferences과(와) 유사한 지역화된 문자열을 찾습니다. + /// + public static string Option_BasicPreferences { + get { + return ResourceManager.GetString("Option_BasicPreferences", resourceCulture); + } + } + + /// + /// Post Config과(와) 유사한 지역화된 문자열을 찾습니다. + /// + public static string Option_Config { + get { + return ResourceManager.GetString("Option_Config", resourceCulture); + } + } + + /// + /// Install Adobe Reader과(와) 유사한 지역화된 문자열을 찾습니다. + /// + public static string Option_InstallAdobeReader { + get { + return ResourceManager.GetString("Option_InstallAdobeReader", resourceCulture); + } + } + + /// + /// Install Everyones Printer과(와) 유사한 지역화된 문자열을 찾습니다. + /// + public static string Option_InstallEveryonesPrinter { + get { + return ResourceManager.GetString("Option_InstallEveryonesPrinter", resourceCulture); + } + } + + /// + /// Install Hancom Office Viewer과(와) 유사한 지역화된 문자열을 찾습니다. + /// + public static string Option_InstallHancomOfficeViewer { + get { + return ResourceManager.GetString("Option_InstallHancomOfficeViewer", resourceCulture); + } + } + + /// + /// Install RaiDrive과(와) 유사한 지역화된 문자열을 찾습니다. + /// + public static string Option_InstallRaiDrive { + get { + return ResourceManager.GetString("Option_InstallRaiDrive", resourceCulture); + } + } + + /// + /// Prerequisites과(와) 유사한 지역화된 문자열을 찾습니다. + /// + public static string Option_Prerequisites { + get { + return ResourceManager.GetString("Option_Prerequisites", resourceCulture); + } + } + + /// + /// TableCloth uses the Sentry.io service to anonymously collect information about errors that occur during the execution of the Tablecloth program. If you do not want to send data, please uncheck the box below and run Tablecloth again.과(와) 유사한 지역화된 문자열을 찾습니다. + /// + public static string Option_TelemetryDescriptionText { + get { + return ResourceManager.GetString("Option_TelemetryDescriptionText", resourceCulture); + } + } + + /// + /// Collecting information to improve features과(와) 유사한 지역화된 문자열을 찾습니다. + /// + public static string Option_TelemetryPreferences { + get { + return ResourceManager.GetString("Option_TelemetryPreferences", resourceCulture); + } + } + + /// + /// Automatically collect TableCloth error logs과(와) 유사한 지역화된 문자열을 찾습니다. + /// + public static string Option_UseAutoLogCollecting { + get { + return ResourceManager.GetString("Option_UseAutoLogCollecting", resourceCulture); + } + } + + /// + /// Enable Internet Explorer compatibility mode과(와) 유사한 지역화된 문자열을 찾습니다. + /// + public static string Option_UseIEModeCompatList { + get { + return ResourceManager.GetString("Option_UseIEModeCompatList", resourceCulture); + } + } + + /// + /// Using audio input - be careful about revealing personal information!과(와) 유사한 지역화된 문자열을 찾습니다. + /// + public static string Option_UseMicrophoneCheckboxText { + get { + return ResourceManager.GetString("Option_UseMicrophoneCheckboxText", resourceCulture); + } + } + + /// + /// Using with printers과(와) 유사한 지역화된 문자열을 찾습니다. + /// + public static string Option_UsePrinterCheckboxText { + get { + return ResourceManager.GetString("Option_UsePrinterCheckboxText", resourceCulture); + } + } + + /// + /// Using video input - be careful about exposing personal information!과(와) 유사한 지역화된 문자열을 찾습니다. + /// + public static string Option_UseWebCameraCheckboxText { + get { + return ResourceManager.GetString("Option_UseWebCameraCheckboxText", resourceCulture); + } + } + + /// + /// Enter a search keyword (e.g., Shinhan)과(와) 유사한 지역화된 문자열을 찾습니다. + /// + public static string SearchFilter_Watermark { + get { + return ResourceManager.GetString("SearchFilter_Watermark", resourceCulture); + } + } + + /// + /// {0} files deleted successfully과(와) 유사한 지역화된 문자열을 찾습니다. + /// + public static string Sponge_DeletedFileCount { + get { + return ResourceManager.GetString("Sponge_DeletedFileCount", resourceCulture); + } + } + + /// + /// Failed to delete {0} files과(와) 유사한 지역화된 문자열을 찾습니다. + /// + public static string Sponge_DeleteFailedFileCount { + get { + return ResourceManager.GetString("Sponge_DeleteFailedFileCount", resourceCulture); + } + } + + /// + /// Files deleted successfully ({0} of {1})과(와) 유사한 지역화된 문자열을 찾습니다. + /// + public static string Sponge_DeleteProgressMessage { + get { + return ResourceManager.GetString("Sponge_DeleteProgressMessage", resourceCulture); + } + } + + /// + /// Exit과(와) 유사한 지역화된 문자열을 찾습니다. + /// + public static string Sponge_Exit { + get { + return ResourceManager.GetString("Sponge_Exit", resourceCulture); + } + } + + /// + /// This program helps you irretrievably delete the joint certificate file that was copied with the TableCloth run.과(와) 유사한 지역화된 문자열을 찾습니다. + /// + public static string Sponge_Introduction { + get { + return ResourceManager.GetString("Sponge_Introduction", resourceCulture); + } + } + + /// + /// The deletion of the retrieved certificate files results in the following:과(와) 유사한 지역화된 문자열을 찾습니다. + /// + public static string Sponge_OperationCompleted { + get { + return ResourceManager.GetString("Sponge_OperationCompleted", resourceCulture); + } + } + + /// + /// No certificate files were found.과(와) 유사한 지역화된 문자열을 찾습니다. + /// + public static string Sponge_OperationCompleted_WithNoResult { + get { + return ResourceManager.GetString("Sponge_OperationCompleted_WithNoResult", resourceCulture); + } + } + + /// + /// Deleting by overwriting multiple times과(와) 유사한 지역화된 문자열을 찾습니다. + /// + public static string Sponge_OverwriteMultipleTimes { + get { + return ResourceManager.GetString("Sponge_OverwriteMultipleTimes", resourceCulture); + } + } + + /// + /// Delete Files과(와) 유사한 지역화된 문자열을 찾습니다. + /// + public static string Sponge_PerformDelete { + get { + return ResourceManager.GetString("Sponge_PerformDelete", resourceCulture); + } + } + + /// + /// Searching for a joint certificate file...과(와) 유사한 지역화된 문자열을 찾습니다. + /// + public static string Sponge_WorkInProgress { + get { + return ResourceManager.GetString("Sponge_WorkInProgress", resourceCulture); + } + } + + /// + /// This program is a tool that installs the requested installers into the sandbox at once. Press the Install button to start the installation.과(와) 유사한 지역화된 문자열을 찾습니다. + /// + public static string Spork_AppInstructionMessage { + get { + return ResourceManager.GetString("Spork_AppInstructionMessage", resourceCulture); + } + } + + /// + /// Spork과(와) 유사한 지역화된 문자열을 찾습니다. + /// + public static string Spork_AppTitle { + get { + return ResourceManager.GetString("Spork_AppTitle", resourceCulture); + } + } + + /// + /// Separate installation script과(와) 유사한 지역화된 문자열을 찾습니다. + /// + public static string Spork_CustomScript_Title { + get { + return ResourceManager.GetString("Spork_CustomScript_Title", resourceCulture); + } + } + + /// + /// Downloading...과(와) 유사한 지역화된 문자열을 찾습니다. + /// + public static string Spork_Download_InProgress { + get { + return ResourceManager.GetString("Spork_Download_InProgress", resourceCulture); + } + } + + /// + /// Spork is running in dry run mode.과(와) 유사한 지역화된 문자열을 찾습니다. + /// + public static string Spork_DryRunInstructionMessage { + get { + return ResourceManager.GetString("Spork_DryRunInstructionMessage", resourceCulture); + } + } + + /// + /// Fail과(와) 유사한 지역화된 문자열을 찾습니다. + /// + public static string Spork_Install_Failed { + get { + return ResourceManager.GetString("Spork_Install_Failed", resourceCulture); + } + } + + /// + /// Installing...과(와) 유사한 지역화된 문자열을 찾습니다. + /// + public static string Spork_Install_InProgress { + get { + return ResourceManager.GetString("Spork_Install_InProgress", resourceCulture); + } + } + + /// + /// Skipped과(와) 유사한 지역화된 문자열을 찾습니다. + /// + public static string Spork_Install_Skipped { + get { + return ResourceManager.GetString("Spork_Install_Skipped", resourceCulture); + } + } + + /// + /// Done과(와) 유사한 지역화된 문자열을 찾습니다. + /// + public static string Spork_Install_Succeed { + get { + return ResourceManager.GetString("Spork_Install_Succeed", resourceCulture); + } + } + + /// + /// The website ID you want to use is not specified. The sandbox is now available for use.과(와) 유사한 지역화된 문자열을 찾습니다. + /// + public static string Spork_No_Targets { + get { + return ResourceManager.GetString("Spork_No_Targets", resourceCulture); + } + } + + /// + /// Caveats과(와) 유사한 지역화된 문자열을 찾습니다. + /// + public static string Spork_PrecautionWindowText { + get { + return ResourceManager.GetString("Spork_PrecautionWindowText", resourceCulture); + } + } + + /// + /// Read more과(와) 유사한 지역화된 문자열을 찾습니다. + /// + public static string Spork_ShowDetailError { + get { + return ResourceManager.GetString("Spork_ShowDetailError", resourceCulture); + } + } + + /// + /// Precautions for using the site과(와) 유사한 지역화된 문자열을 찾습니다. + /// + public static string Spork_Warning_Title { + get { + return ResourceManager.GetString("Spork_Warning_Title", resourceCulture); + } + } + + /// + /// Checking internet connection...과(와) 유사한 지역화된 문자열을 찾습니다. + /// + public static string Status_CheckInternetConnection { + get { + return ResourceManager.GetString("Status_CheckInternetConnection", resourceCulture); + } + } + + /// + /// You're ready to run.과(와) 유사한 지역화된 문자열을 찾습니다. + /// + public static string Status_Done { + get { + return ResourceManager.GetString("Status_Done", resourceCulture); + } + } + + /// + /// Checking system environment...과(와) 유사한 지역화된 문자열을 찾습니다. + /// + public static string Status_EvaluatingRequirementsMet { + get { + return ResourceManager.GetString("Status_EvaluatingRequirementsMet", resourceCulture); + } + } + + /// + /// Initializing the application...과(와) 유사한 지역화된 문자열을 찾습니다. + /// + public static string Status_InitializingApplication { + get { + return ResourceManager.GetString("Status_InitializingApplication", resourceCulture); + } + } + + /// + /// An error occurred.과(와) 유사한 지역화된 문자열을 찾습니다. + /// + public static string Status_InitializingFailed { + get { + return ResourceManager.GetString("Status_InitializingFailed", resourceCulture); + } + } + + /// + /// Loading catalog...과(와) 유사한 지역화된 문자열을 찾습니다. + /// + public static string Status_LoadingCatalog { + get { + return ResourceManager.GetString("Status_LoadingCatalog", resourceCulture); + } + } + + /// + /// Loading images...과(와) 유사한 지역화된 문자열을 찾습니다. + /// + public static string Status_LoadingImages { + get { + return ResourceManager.GetString("Status_LoadingImages", resourceCulture); + } + } + + /// + /// Loading preferences...과(와) 유사한 지역화된 문자열을 찾습니다. + /// + public static string Status_LoadingPreferences { + get { + return ResourceManager.GetString("Status_LoadingPreferences", resourceCulture); + } + } + + /// + /// Analyzing the command line...과(와) 유사한 지역화된 문자열을 찾습니다. + /// + public static string Status_ParsingCommandLine { + get { + return ResourceManager.GetString("Status_ParsingCommandLine", resourceCulture); + } + } + + /// + /// Please wait a second...과(와) 유사한 지역화된 문자열을 찾습니다. + /// + public static string Status_PleaseWait { + get { + return ResourceManager.GetString("Status_PleaseWait", resourceCulture); + } + } + + /// + /// Specifies a list of one or more site IDs from the catalog.과(와) 유사한 지역화된 문자열을 찾습니다. + /// + public static string TableCloth_Arguments_SiteIdList_Help { + get { + return ResourceManager.GetString("TableCloth_Arguments_SiteIdList_Help", resourceCulture); + } + } + + /// + /// Specify the private public certificate secret key file.과(와) 유사한 지역화된 문자열을 찾습니다. + /// + public static string TableCloth_Switch_CertPrivateKey_Help { + get { + return ResourceManager.GetString("TableCloth_Switch_CertPrivateKey_Help", resourceCulture); + } + } + + /// + /// Specify the private public certificate public key file.과(와) 유사한 지역화된 문자열을 찾습니다. + /// + public static string TableCloth_Switch_CertPublicKey_Help { + get { + return ResourceManager.GetString("TableCloth_Switch_CertPublicKey_Help", resourceCulture); + } + } + + /// + /// Change the behavior so that no system changes are attempted.과(와) 유사한 지역화된 문자열을 찾습니다. + /// + public static string TableCloth_Switch_DryRun_Help { + get { + return ResourceManager.GetString("TableCloth_Switch_DryRun_Help", resourceCulture); + } + } + + /// + /// Grant permission to take camera shots inside the Windows Sandbox.과(와) 유사한 지역화된 문자열을 찾습니다. + /// + public static string TableCloth_Switch_EnableCamera_Help { + get { + return ResourceManager.GetString("TableCloth_Switch_EnableCamera_Help", resourceCulture); + } + } + + /// + /// Copy the joint certificate file to be available inside the Windows Sandbox.과(와) 유사한 지역화된 문자열을 찾습니다. + /// + public static string TableCloth_Switch_EnableCert_Help { + get { + return ResourceManager.GetString("TableCloth_Switch_EnableCert_Help", resourceCulture); + } + } + + /// + /// Grant permission to record audio inside the Windows Sandbox.과(와) 유사한 지역화된 문자열을 찾습니다. + /// + public static string TableCloth_Switch_EnableMicrophone_Help { + get { + return ResourceManager.GetString("TableCloth_Switch_EnableMicrophone_Help", resourceCulture); + } + } + + /// + /// Authorize the printer to request printing from within the Windows Sandbox.과(와) 유사한 지역화된 문자열을 찾습니다. + /// + public static string TableCloth_Switch_EnablePrinter_Help { + get { + return ResourceManager.GetString("TableCloth_Switch_EnablePrinter_Help", resourceCulture); + } + } + + /// + /// Displays the help you're viewing.과(와) 유사한 지역화된 문자열을 찾습니다. + /// + public static string TableCloth_Switch_Help_Help { + get { + return ResourceManager.GetString("TableCloth_Switch_Help_Help", resourceCulture); + } + } + + /// + /// Attempt to install Adobe Reader.과(와) 유사한 지역화된 문자열을 찾습니다. + /// + public static string TableCloth_Switch_InstallAdobeReader_Help { + get { + return ResourceManager.GetString("TableCloth_Switch_InstallAdobeReader_Help", resourceCulture); + } + } + + /// + /// Attempt to install Everyones' Printer.과(와) 유사한 지역화된 문자열을 찾습니다. + /// + public static string TableCloth_Switch_InstallEveryonesPrinter_Help { + get { + return ResourceManager.GetString("TableCloth_Switch_InstallEveryonesPrinter_Help", resourceCulture); + } + } + + /// + /// Attempt to install HancomOffice Viewer.과(와) 유사한 지역화된 문자열을 찾습니다. + /// + public static string TableCloth_Switch_InstallHancomOfficeViewer_Help { + get { + return ResourceManager.GetString("TableCloth_Switch_InstallHancomOfficeViewer_Help", resourceCulture); + } + } + + /// + /// Attempt to install RaiDrive.과(와) 유사한 지역화된 문자열을 찾습니다. + /// + public static string TableCloth_Switch_InstallRaiDrive_Help { + get { + return ResourceManager.GetString("TableCloth_Switch_InstallRaiDrive_Help", resourceCulture); + } + } + + /// + /// Simulates the occurrence of an error with random probability. This option is a developer feature.과(와) 유사한 지역화된 문자열을 찾습니다. + /// + public static string TableCloth_Switch_SimulateFailure_Help { + get { + return ResourceManager.GetString("TableCloth_Switch_SimulateFailure_Help", resourceCulture); + } + } + + /// + /// Displays version information for the program.과(와) 유사한 지역화된 문자열을 찾습니다. + /// + public static string TableCloth_Switch_Version_Help { + get { + return ResourceManager.GetString("TableCloth_Switch_Version_Help", resourceCulture); + } + } + + /// + /// TableCloth Error과(와) 유사한 지역화된 문자열을 찾습니다. + /// + public static string TitleText_Error { + get { + return ResourceManager.GetString("TitleText_Error", resourceCulture); + } + } + + /// + /// TableCloth Info과(와) 유사한 지역화된 문자열을 찾습니다. + /// + public static string TitleText_Info { + get { + return ResourceManager.GetString("TitleText_Info", resourceCulture); + } + } + + /// + /// TableCloth Question과(와) 유사한 지역화된 문자열을 찾습니다. + /// + public static string TitleText_Question { + get { + return ResourceManager.GetString("TitleText_Question", resourceCulture); + } + } + + /// + /// TableCloth Warning과(와) 유사한 지역화된 문자열을 찾습니다. + /// + public static string TitleText_Warning { + get { + return ResourceManager.GetString("TitleText_Warning", resourceCulture); + } + } + } +} diff --git a/src/TableCloth.Resources/UIStringResources.ko.resx b/src/TableCloth.Resources/UIStringResources.ko.resx index 9e94c987..bf227572 100644 --- a/src/TableCloth.Resources/UIStringResources.ko.resx +++ b/src/TableCloth.Resources/UIStringResources.ko.resx @@ -1,554 +1,551 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - 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 - - - 프로그램 버전 - - - 카탈로그 버전 - - - 라이선스 정보를 확인 중입니다. - - - 프로그램 정보 - - - 설정을 마무리하셨다면 확인 버튼을 눌러주세요. - - - 개발 목적 전용 빌드입니다. - - - 프로그램 정보 - - - 프로그램 다시 실행 - - - 찾아보기... - - - 취소 - - - 업데이트 확인 - - - 닫기 - - - PFX 파일로 변환하기 - - - 명령줄 복사하기 - - - 바로 가기 만들기 - - - 디버그 - - - 설치하기 - - - 실행하기 - - - 기존 공동 인증서 파일 가져오기 - - - 확인 - - - 홈페이지 - - - 개인 정보 처리 방침 - - - 새로 고침 - - - 시스템 정보 - - - 접속하려는 웹 사이트를 선택하거나, 우측 상단의 검색창에서 검색어를 입력하세요. - - - {0}개 - - - 서비스 선택 - - - 사용 가능 여부 - - - 소유자 - - - 국가 - - - 발급기관 - - - 기관 - - - 공동 인증서 파일 (signCert.der;signPri.key)|signCert.der;signPri.key|공동 인증서 파일 (*.pfx;*.p12)|*.pfx;*.p12 - - - 공동 인증서 파일 (signCert.der, signPri.key, *.pfx, *.p12) 열기 - - - 검색된 공동 인증서가 다음과 같습니다. 다음 중 하나를 선택해주세요. - - - 원하는 공동 인증서가 없다면, 직접 공동 인증서 찾기 버튼을 눌러서 직접 DER 파일과 KEY 파일 한 쌍, 혹은 PFX 파일을 찾아주세요. - - - 직접 공동 인증서 찾기... - - - 검색된 공동 인증서 선택 - - - 사용 가능 - - - 만료됨 - - - {0}일 후 만료 - - - {0}일 후 사용 가능 - - - 실패 테스트 - - - 실패 테스트 - - - 샌드박스 실행 후 설치될 소프트웨어 개수: {0}개 - - - 홈페이지 주소: {0} - - - 동의합니다. 일주일 동안 이 화면을 보지 않겠습니다. - - - 식탁보를 사용 중 발생하는 개인, 기업, 기관의 금전 손실, 세금 신고 누락 등을 비롯한 어떠한 장애나 손해에 대해서는 사용자 본인에게 책임이 있습니다. - -가상 환경이 아닌 실제 컴퓨터 환경에서 실행되어야 손해나 피해가 발생하지 않는 작업은 식탁보를 이용하지 않고 실제 PC 환경에서 사용하는 것을 권장합니다. - - - 꼭 읽어주세요. - - - 식탁보 사용 시 주의 사항 - - - 입력하시는 암호는 프로그램 내부에서만 사용되고 폐기됩니다. - - - PFX 인증서를 DER과 KEY로 변환해서 전달하기 위해 비밀 번호 입력이 필요합니다. - - - PFX 인증서 파일 경로: {0} - - - PFX 인증서 변환을 위한 비밀 번호 입력 - - - AhnLab Safe Transaction 설정 - - - Internet Explorer 모드 지원 활성화 - - - WinSxS 활성화 - - - 환경 준비 중 - - - Microsoft Edge 설정 새로 고침 - - - 바탕 화면 변경 - - - 중요 서비스 보호 시도 - - - 환경 확인 - - - AhnLab Safe Transaction에서 원격 접속 차단 기능을 해제해야 Windows Sandbox를 계속 실행할 수 있습니다. 화면에서 원격 접속 차단 체크 박스를 해제한 후, 닫기 버튼을 눌러주세요. - - - 분류 - - - 필요 소프트웨어 개수 - - - 웹 사이트 이름 - - - 웹 사이트 주소 - - - 즐겨찾기만 표시 - - - 그냥 실행해주세요. - - - 원하는 옵션을 선택해주세요. - - - 식탁보 위에서 접속할 사이트들을 선택해주세요. 사이트에서 필요한 프로그램들을 자동으로 설치해드려요. - - - 카탈로그 파일을 가져오지 못했어요! 그래도 샌드박스는 대신 실행해드려요. - - - 카탈로그 파일을 가져오지 못했어요! - - - 식탁보 - 컴퓨터를 안전하게 사용하세요! - - - 부가 기능 - - - 부가 기능 - - - 기본 설정 - - - 사후 설정 - - - Adobe Reader 설치하기 - - - 모두의 프린터 설치하기 - - - 한컴오피스 뷰어 설치하기 - - - RaiDrive 설치하기 - - - 사전 작업 - - - 식탁보는 Sentry.io 서비스를 통하여 식탁보 프로그램 실행 도중 발생한 오류 정보를 익명으로 수집합니다. 만약 데이터 보내기를 원하지 않으시면 아래 체크 박스를 선택 해제하신 후 식탁보를 다시 실행해주세요. - - - 기능 개선을 위한 정보 수집 - - - 식탁보 오류 로그 자동 수집 - - - Internet Explorer 호환성 모드 사용 - - - 오디오 입력 사용하기 - 개인 정보 노출에 주의하세요! - - - 프린터 같이 사용하기 - - - 비디오 입력 사용하기 - 개인 정보 노출에 주의하세요! - - - 검색 키워드 입력 (예: 신한, 보험) - - - {0}개 파일 삭제 완료 - - - {0}개 파일 삭제 실패 - - - 파일 삭제 완료 ({0}개 중 {1}개) - - - 종료하기 - - - 이 프로그램은 식탁보 실행과 함께 복사된 공동 인증서 파일을 복구 불가능하게 삭제할 수 있도록 돕습니다. - - - 검색된 인증서 파일의 삭제 결과는 다음과 같습니다. - - - 검색된 인증서 파일이 없습니다. - - - 여러 번 덮어써서 삭제하기 - - - 파일 삭제하기 - - - 공동 인증서 파일을 검색 중입니다... - - - 이 프로그램은 요청받은 설치 프로그램들을 샌드 박스 안에 한번에 설치해주는 도구입니다. 설치하기 버튼을 누르면 설치가 시작됩니다. - - - 포카락 - - - 별도 설치 스크립트 - - - 다운로드 중... - - - 포카락이 모의 실행 상태로 실행 중입니다. - - - 설치 실패 - - - 설치하는 중... - - - 건너뜀 - - - 설치 완료 - - - 이용하려는 웹 사이트 아이디가 지정되지 않았습니다. 샌드박스는 지금부터 사용하실 수 있어요. - - - 주의 사항 - - - 자세히 보기 - - - 사이트 이용 시 주의 사항 - - - 인터넷 연결 상태 확인 중... - - - 실행 준비가 완료되었습니다. - - - 시스템 환경 확인 중... - - - 애플리케이션 초기화 중... - - - 오류가 발생했습니다. - - - 카탈로그 불러오는 중... - - - 이미지 불러오는 중... - - - 환경 설정 불러오는 중... - - - 명령줄 분석 중... - - - 잠시만 기다려 주세요. - - - 카탈로그의 사이트 아이디 목록을 하나 이상 지정합니다. - - - 개인 공동 인증서 비밀 키 파일을 지정합니다. - - - 개인 공동 인증서 공개 키 파일을 지정합니다. - - - 시스템 변경을 시도하지 않도록 동작을 변경합니다. - - - Windows Sandbox 안에서 카메라 촬영을 할 수 있도록 권한을 부여합니다. - - - Windows Sandbox 안에서 공동 인증서 파일을 이용할 수 있게 복사합니다. - - - Windows Sandbox 안에서 Internet Explorer 모드로 Microsoft Edge 브라우저를 실행할 수 있도록 설정을 변경합니다. - - - Windows Sandbox 안에서 오디오 녹음을 할 수 있도록 권한을 부여합니다. - - - Windows Sandbox 안에서 프린터 인쇄를 요청할 수 있도록 권한을 부여합니다. - - - 지금 보고 있는 도움말을 표시합니다. - - - Adobe Reader 설치를 시도합니다. - - - 모두의 프린터 설치를 시도합니다. - - - 한컴오피스 뷰어 설치를 시도합니다. - - - RaiDrive 설치를 시도합니다. - - - 임의의 확률로 오류 발생을 시뮬레이션합니다. 이 옵션은 개발자용 기능입니다. - - - 프로그램의 버전 정보를 표시합니다. - - - 식탁보 오류 - - - 식탁보 정보 - - - 식탁보 확인 - - - 식탁보 경고 - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 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 + + + 프로그램 버전 + + + 카탈로그 버전 + + + 라이선스 정보를 확인 중입니다. + + + 프로그램 정보 + + + 설정을 마무리하셨다면 확인 버튼을 눌러주세요. + + + 개발 목적 전용 빌드입니다. + + + 프로그램 정보 + + + 프로그램 다시 실행 + + + 찾아보기... + + + 취소 + + + 업데이트 확인 + + + 닫기 + + + PFX 파일로 변환하기 + + + 명령줄 복사하기 + + + 바로 가기 만들기 + + + 디버그 + + + 설치하기 + + + 실행하기 + + + 기존 공동 인증서 파일 가져오기 + + + 확인 + + + 홈페이지 + + + 개인 정보 처리 방침 + + + 새로 고침 + + + 시스템 정보 + + + 접속하려는 웹 사이트를 선택하거나, 우측 상단의 검색창에서 검색어를 입력하세요. + + + {0}개 + + + 서비스 선택 + + + 사용 가능 여부 + + + 소유자 + + + 국가 + + + 발급기관 + + + 기관 + + + 공동 인증서 파일 (signCert.der;signPri.key)|signCert.der;signPri.key|공동 인증서 파일 (*.pfx;*.p12)|*.pfx;*.p12 + + + 공동 인증서 파일 (signCert.der, signPri.key, *.pfx, *.p12) 열기 + + + 검색된 공동 인증서가 다음과 같습니다. 다음 중 하나를 선택해주세요. + + + 원하는 공동 인증서가 없다면, 직접 공동 인증서 찾기 버튼을 눌러서 직접 DER 파일과 KEY 파일 한 쌍, 혹은 PFX 파일을 찾아주세요. + + + 직접 공동 인증서 찾기... + + + 검색된 공동 인증서 선택 + + + 사용 가능 + + + 만료됨 + + + {0}일 후 만료 + + + {0}일 후 사용 가능 + + + 실패 테스트 + + + 실패 테스트 + + + 샌드박스 실행 후 설치될 소프트웨어 개수: {0}개 + + + 홈페이지 주소: {0} + + + 동의합니다. 일주일 동안 이 화면을 보지 않겠습니다. + + + 식탁보를 사용 중 발생하는 개인, 기업, 기관의 금전 손실, 세금 신고 누락 등을 비롯한 어떠한 장애나 손해에 대해서는 사용자 본인에게 책임이 있습니다. + +가상 환경이 아닌 실제 컴퓨터 환경에서 실행되어야 손해나 피해가 발생하지 않는 작업은 식탁보를 이용하지 않고 실제 PC 환경에서 사용하는 것을 권장합니다. + + + 꼭 읽어주세요. + + + 식탁보 사용 시 주의 사항 + + + 입력하시는 암호는 프로그램 내부에서만 사용되고 폐기됩니다. + + + PFX 인증서를 DER과 KEY로 변환해서 전달하기 위해 비밀 번호 입력이 필요합니다. + + + PFX 인증서 파일 경로: {0} + + + PFX 인증서 변환을 위한 비밀 번호 입력 + + + AhnLab Safe Transaction 설정 + + + Internet Explorer 모드 지원 활성화 + + + WinSxS 활성화 + + + 환경 준비 중 + + + Microsoft Edge 설정 새로 고침 + + + 바탕 화면 변경 + + + 중요 서비스 보호 시도 + + + 환경 확인 + + + AhnLab Safe Transaction에서 원격 접속 차단 기능을 해제해야 Windows Sandbox를 계속 실행할 수 있습니다. 화면에서 원격 접속 차단 체크 박스를 해제한 후, 닫기 버튼을 눌러주세요. + + + 분류 + + + 필요 소프트웨어 개수 + + + 웹 사이트 이름 + + + 웹 사이트 주소 + + + 즐겨찾기만 표시 + + + 그냥 실행해주세요. + + + 원하는 옵션을 선택해주세요. + + + 식탁보 위에서 접속할 사이트들을 선택해주세요. 사이트에서 필요한 프로그램들을 자동으로 설치해드려요. + + + 카탈로그 파일을 가져오지 못했어요! 그래도 샌드박스는 대신 실행해드려요. + + + 카탈로그 파일을 가져오지 못했어요! + + + 식탁보 - 컴퓨터를 안전하게 사용하세요! + + + 부가 기능 + + + 부가 기능 + + + 기본 설정 + + + 사후 설정 + + + Adobe Reader 설치하기 + + + 모두의 프린터 설치하기 + + + 한컴오피스 뷰어 설치하기 + + + RaiDrive 설치하기 + + + 사전 작업 + + + 식탁보는 Sentry.io 서비스를 통하여 식탁보 프로그램 실행 도중 발생한 오류 정보를 익명으로 수집합니다. 만약 데이터 보내기를 원하지 않으시면 아래 체크 박스를 선택 해제하신 후 식탁보를 다시 실행해주세요. + + + 기능 개선을 위한 정보 수집 + + + 식탁보 오류 로그 자동 수집 + + + Internet Explorer 호환성 모드 사용 + + + 오디오 입력 사용하기 - 개인 정보 노출에 주의하세요! + + + 프린터 같이 사용하기 + + + 비디오 입력 사용하기 - 개인 정보 노출에 주의하세요! + + + 검색 키워드 입력 (예: 신한, 보험) + + + {0}개 파일 삭제 완료 + + + {0}개 파일 삭제 실패 + + + 파일 삭제 완료 ({0}개 중 {1}개) + + + 종료하기 + + + 이 프로그램은 식탁보 실행과 함께 복사된 공동 인증서 파일을 복구 불가능하게 삭제할 수 있도록 돕습니다. + + + 검색된 인증서 파일의 삭제 결과는 다음과 같습니다. + + + 검색된 인증서 파일이 없습니다. + + + 여러 번 덮어써서 삭제하기 + + + 파일 삭제하기 + + + 공동 인증서 파일을 검색 중입니다... + + + 이 프로그램은 요청받은 설치 프로그램들을 샌드 박스 안에 한번에 설치해주는 도구입니다. 설치하기 버튼을 누르면 설치가 시작됩니다. + + + 포카락 + + + 별도 설치 스크립트 + + + 다운로드 중... + + + 포카락이 모의 실행 상태로 실행 중입니다. + + + 설치 실패 + + + 설치하는 중... + + + 건너뜀 + + + 설치 완료 + + + 이용하려는 웹 사이트 아이디가 지정되지 않았습니다. 샌드박스는 지금부터 사용하실 수 있어요. + + + 주의 사항 + + + 자세히 보기 + + + 사이트 이용 시 주의 사항 + + + 인터넷 연결 상태 확인 중... + + + 실행 준비가 완료되었습니다. + + + 시스템 환경 확인 중... + + + 애플리케이션 초기화 중... + + + 오류가 발생했습니다. + + + 카탈로그 불러오는 중... + + + 이미지 불러오는 중... + + + 환경 설정 불러오는 중... + + + 명령줄 분석 중... + + + 잠시만 기다려 주세요. + + + 카탈로그의 사이트 아이디 목록을 하나 이상 지정합니다. + + + 개인 공동 인증서 비밀 키 파일을 지정합니다. + + + 개인 공동 인증서 공개 키 파일을 지정합니다. + + + 시스템 변경을 시도하지 않도록 동작을 변경합니다. + + + Windows Sandbox 안에서 카메라 촬영을 할 수 있도록 권한을 부여합니다. + + + Windows Sandbox 안에서 공동 인증서 파일을 이용할 수 있게 복사합니다. + + + Windows Sandbox 안에서 오디오 녹음을 할 수 있도록 권한을 부여합니다. + + + Windows Sandbox 안에서 프린터 인쇄를 요청할 수 있도록 권한을 부여합니다. + + + 지금 보고 있는 도움말을 표시합니다. + + + Adobe Reader 설치를 시도합니다. + + + 모두의 프린터 설치를 시도합니다. + + + 한컴오피스 뷰어 설치를 시도합니다. + + + RaiDrive 설치를 시도합니다. + + + 임의의 확률로 오류 발생을 시뮬레이션합니다. 이 옵션은 개발자용 기능입니다. + + + 프로그램의 버전 정보를 표시합니다. + + + 식탁보 오류 + + + 식탁보 정보 + + + 식탁보 확인 + + + 식탁보 경고 + \ No newline at end of file diff --git a/src/TableCloth.Resources/UIStringResources.resx b/src/TableCloth.Resources/UIStringResources.resx index 20f37f69..660bf45d 100644 --- a/src/TableCloth.Resources/UIStringResources.resx +++ b/src/TableCloth.Resources/UIStringResources.resx @@ -1,555 +1,552 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - 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 - - - Program Version - - - Catalog Version - - - Retrieving license information. - - - About This Program - - - Once you've finalized your settings, hit the OK button. - - - This build is for development purposes only. - - - About - - - Restart - - - Browse... - - - Cancel - - - Check Update - - - Close - - - Convert to PFX - - - Copy Commandline - - - Create a Shortcut - - - Debug - - - Install - - - Launch - - - Import Certificates - - - OK - - - Website - - - Privacy Policy - - - Refresh - - - System Information - - - Select the website you want to access, or enter a search term in the search bar in the upper-right corner. - - - {0} - - - Select a service - - - Availability - - - Owner - - - Country - - - Organization - - - Organizational Unit - - - Public Certificate File (signCert.der;signPri.key)|signCert.der;signPri.key|Public Certificate File (*.pfx;*.p12)|*.pfx;*.p12 - - - Open the certificate files (signCert.der, signPri.key, *.pfx, *.p12) - - - The following certificates were found, please select one of them. - - - If you don't see the certificate you're looking for, click the Find Joint Certificate button to manually find the DER file and KEY file pair, or PFX file. - - - Select a certificate... - - - Select the certificate - - - Available - - - Expired - - - Expires in {0} days - - - Available in {0} days - - - Failure Test - - - Failure Test - - - Number of software to be installed after sandbox run: {0} - - - Homepage address: {0} - - - I agree. I won't look at this screen for a week. - - - You are responsible for any failure or damage to any person, business, or organization that occurs while using Tableau, including loss of money, missed tax returns, etc. - -We recommend that you do not use TableCloth for tasks that cannot be performed in a virtual environment and should be performed in a physical PC environment to prevent damage or harm. - - - Be sure to read it. - - - Precautions for using TableCloth - - - The password you enter is only used inside the program and is discarded. - - - A passphrase is required to convert the PFX certificate to a DER and KEY for delivery. - - - PFX Certificate File Path: {0} - - - Enter the password to convert the PFX certificate - - - Config AhnLab Safe Transaction - - - Enabling Internet Explorer Mode - - - Enabling WinSxS - - - Preparing Environment - - - Reload Microsoft Edge Settings - - - Setting Desktop Wallpaper - - - Try Protecting Critical Services - - - Verifying Environment - - - AhnLab Safe Transaction needs to turn off the remote access blocking feature to continue running Windows Sandbox. Please uncheck the Block Remote Access checkbox on the screen and click the Close button. - - - Category - - - Number of software required - - - Website Name - - - Website Address - - - Show Only Favorites - - - Just run it. - - - Select your preferred option. - - - Select the sites you want to access on the tablecloth. The site will automatically install the necessary programs for you. - - - The program didn't get the catalog file! But we'll run the sandbox for you. - - - Failed to import the catalog file! - - - Keep Your Computer Sound & Safe! - - - Add-in - - - Add-ons - - - Basic Preferences - - - Post Config - - - Install Adobe Reader - - - Install Everyones Printer - - - Install Hancom Office Viewer - - - Install RaiDrive - - - Prerequisites - - - TableCloth uses the Sentry.io service to anonymously collect information about errors that occur during the execution of the Tablecloth program. If you do not want to send data, please uncheck the box below and run Tablecloth again. - - - Collecting information to improve features - - - Automatically collect TableCloth error logs - - - Enable Internet Explorer compatibility mode - - - Using audio input - be careful about revealing personal information! - - - Using with printers - - - Using video input - be careful about exposing personal information! - - - Enter a search keyword (e.g., Shinhan) - - - {0} files deleted successfully - - - Failed to delete {0} files - - - Files deleted successfully ({0} of {1}) - - - Exit - - - This program helps you irretrievably delete the joint certificate file that was copied with the TableCloth run. - - - The deletion of the retrieved certificate files results in the following: - - - No certificate files were found. - - - Deleting by overwriting multiple times - - - Delete Files - - - Searching for a joint certificate file... - - - This program is a tool that installs the requested installers into the sandbox at once. Press the Install button to start the installation. - - - Spork - - - Separate installation script - - - Downloading... - - - Spork is running in dry run mode. - - - Fail - - - Installing... - - - Skipped - - - Done - - - The website ID you want to use is not specified. The sandbox is now available for use. - - - Caveats - - - Read more - - - Precautions for using the site - - - Checking internet connection... - - - You're ready to run. - - - Checking system environment... - - - Initializing the application... - - - An error occurred. - - - Loading catalog... - - - Loading images... - - - Loading preferences... - - - Analyzing the command line... - - - Please wait a second... - - - Specifies a list of one or more site IDs from the catalog. - - - Specify the private public certificate secret key file. - (Important) Please do not translate this item without intend. - - - Specify the private public certificate public key file. - - - Change the behavior so that no system changes are attempted. - - - Grant permission to take camera shots inside the Windows Sandbox. - - - Copy the joint certificate file to be available inside the Windows Sandbox. - - - Change the settings to allow the Microsoft Edge browser to run in Internet Explorer mode inside the Windows Sandbox. - - - Grant permission to record audio inside the Windows Sandbox. - - - Authorize the printer to request printing from within the Windows Sandbox. - - - Displays the help you're viewing. - - - Attempt to install Adobe Reader. - - - Attempt to install Everyones' Printer. - - - Attempt to install HancomOffice Viewer. - - - Attempt to install RaiDrive. - - - Simulates the occurrence of an error with random probability. This option is a developer feature. - - - Displays version information for the program. - - - TableCloth Error - - - TableCloth Info - - - TableCloth Question - - - TableCloth Warning - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 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 + + + Program Version + + + Catalog Version + + + Retrieving license information. + + + About This Program + + + Once you've finalized your settings, hit the OK button. + + + This build is for development purposes only. + + + About + + + Restart + + + Browse... + + + Cancel + + + Check Update + + + Close + + + Convert to PFX + + + Copy Commandline + + + Create a Shortcut + + + Debug + + + Install + + + Launch + + + Import Certificates + + + OK + + + Website + + + Privacy Policy + + + Refresh + + + System Information + + + Select the website you want to access, or enter a search term in the search bar in the upper-right corner. + + + {0} + + + Select a service + + + Availability + + + Owner + + + Country + + + Organization + + + Organizational Unit + + + Public Certificate File (signCert.der;signPri.key)|signCert.der;signPri.key|Public Certificate File (*.pfx;*.p12)|*.pfx;*.p12 + + + Open the certificate files (signCert.der, signPri.key, *.pfx, *.p12) + + + The following certificates were found, please select one of them. + + + If you don't see the certificate you're looking for, click the Find Joint Certificate button to manually find the DER file and KEY file pair, or PFX file. + + + Select a certificate... + + + Select the certificate + + + Available + + + Expired + + + Expires in {0} days + + + Available in {0} days + + + Failure Test + + + Failure Test + + + Number of software to be installed after sandbox run: {0} + + + Homepage address: {0} + + + I agree. I won't look at this screen for a week. + + + You are responsible for any failure or damage to any person, business, or organization that occurs while using Tableau, including loss of money, missed tax returns, etc. + +We recommend that you do not use TableCloth for tasks that cannot be performed in a virtual environment and should be performed in a physical PC environment to prevent damage or harm. + + + Be sure to read it. + + + Precautions for using TableCloth + + + The password you enter is only used inside the program and is discarded. + + + A passphrase is required to convert the PFX certificate to a DER and KEY for delivery. + + + PFX Certificate File Path: {0} + + + Enter the password to convert the PFX certificate + + + Config AhnLab Safe Transaction + + + Enabling Internet Explorer Mode + + + Enabling WinSxS + + + Preparing Environment + + + Reload Microsoft Edge Settings + + + Setting Desktop Wallpaper + + + Try Protecting Critical Services + + + Verifying Environment + + + AhnLab Safe Transaction needs to turn off the remote access blocking feature to continue running Windows Sandbox. Please uncheck the Block Remote Access checkbox on the screen and click the Close button. + + + Category + + + Number of software required + + + Website Name + + + Website Address + + + Show Only Favorites + + + Just run it. + + + Select your preferred option. + + + Select the sites you want to access on the tablecloth. The site will automatically install the necessary programs for you. + + + The program didn't get the catalog file! But we'll run the sandbox for you. + + + Failed to import the catalog file! + + + Keep Your Computer Sound & Safe! + + + Add-in + + + Add-ons + + + Basic Preferences + + + Post Config + + + Install Adobe Reader + + + Install Everyones Printer + + + Install Hancom Office Viewer + + + Install RaiDrive + + + Prerequisites + + + TableCloth uses the Sentry.io service to anonymously collect information about errors that occur during the execution of the Tablecloth program. If you do not want to send data, please uncheck the box below and run Tablecloth again. + + + Collecting information to improve features + + + Automatically collect TableCloth error logs + + + Enable Internet Explorer compatibility mode + + + Using audio input - be careful about revealing personal information! + + + Using with printers + + + Using video input - be careful about exposing personal information! + + + Enter a search keyword (e.g., Shinhan) + + + {0} files deleted successfully + + + Failed to delete {0} files + + + Files deleted successfully ({0} of {1}) + + + Exit + + + This program helps you irretrievably delete the joint certificate file that was copied with the TableCloth run. + + + The deletion of the retrieved certificate files results in the following: + + + No certificate files were found. + + + Deleting by overwriting multiple times + + + Delete Files + + + Searching for a joint certificate file... + + + This program is a tool that installs the requested installers into the sandbox at once. Press the Install button to start the installation. + + + Spork + + + Separate installation script + + + Downloading... + + + Spork is running in dry run mode. + + + Fail + + + Installing... + + + Skipped + + + Done + + + The website ID you want to use is not specified. The sandbox is now available for use. + + + Caveats + + + Read more + + + Precautions for using the site + + + Checking internet connection... + + + You're ready to run. + + + Checking system environment... + + + Initializing the application... + + + An error occurred. + + + Loading catalog... + + + Loading images... + + + Loading preferences... + + + Analyzing the command line... + + + Please wait a second... + + + Specifies a list of one or more site IDs from the catalog. + + + Specify the private public certificate secret key file. + (Important) Please do not translate this item without intend. + + + Specify the private public certificate public key file. + + + Change the behavior so that no system changes are attempted. + + + Grant permission to take camera shots inside the Windows Sandbox. + + + Copy the joint certificate file to be available inside the Windows Sandbox. + + + Grant permission to record audio inside the Windows Sandbox. + + + Authorize the printer to request printing from within the Windows Sandbox. + + + Displays the help you're viewing. + + + Attempt to install Adobe Reader. + + + Attempt to install Everyones' Printer. + + + Attempt to install HancomOffice Viewer. + + + Attempt to install RaiDrive. + + + Simulates the occurrence of an error with random probability. This option is a developer feature. + + + Displays version information for the program. + + + TableCloth Error + + + TableCloth Info + + + TableCloth Question + + + TableCloth Warning + \ No newline at end of file diff --git a/src/TableCloth.Shared/Models/CommandLineArgumentModel.cs b/src/TableCloth.Shared/Models/CommandLineArgumentModel.cs index e5a4df80..fc415287 100644 --- a/src/TableCloth.Shared/Models/CommandLineArgumentModel.cs +++ b/src/TableCloth.Shared/Models/CommandLineArgumentModel.cs @@ -20,7 +20,6 @@ public CommandLineArgumentModel( bool? installAdobeReader = default, bool? installHancomOfficeViewer = default, bool? installRaiDrive = default, - bool? enableInternetExplorerMode = default, bool showCommandLineHelp = default, bool showVersionHelp = default, bool dryRun = default, @@ -37,7 +36,6 @@ public CommandLineArgumentModel( InstallAdobeReader = installAdobeReader; InstallHancomOfficeViewer = installHancomOfficeViewer; InstallRaiDrive = installRaiDrive; - EnableInternetExplorerMode = enableInternetExplorerMode; ShowCommandLineHelp = showCommandLineHelp; ShowVersionHelp = showVersionHelp; DryRun = dryRun; @@ -64,8 +62,6 @@ public CommandLineArgumentModel( public bool? InstallRaiDrive { get; private set; } - public bool? EnableInternetExplorerMode { get; private set; } - public bool ShowCommandLineHelp { get; private set; } public bool ShowVersionHelp { get; private set; } @@ -113,8 +109,6 @@ public override string ToString() options.Add(ConstantStrings.TableCloth_Switch_InstallHancomOfficeViewer); if (InstallRaiDrive.HasValue && InstallRaiDrive.Value) options.Add(ConstantStrings.TableCloth_Switch_InstallRaiDrive); - if (EnableInternetExplorerMode.HasValue && EnableInternetExplorerMode.Value) - options.Add(ConstantStrings.TableCloth_Switch_EnableIEMode); if (DryRun) options.Add(ConstantStrings.TableCloth_Switch_DryRun); diff --git a/src/TableCloth.Shared/Models/Configuration/PreferenceSettings.cs b/src/TableCloth.Shared/Models/Configuration/PreferenceSettings.cs index f414869c..2dc4cc4d 100644 --- a/src/TableCloth.Shared/Models/Configuration/PreferenceSettings.cs +++ b/src/TableCloth.Shared/Models/Configuration/PreferenceSettings.cs @@ -45,11 +45,6 @@ public class PreferenceSettings /// public bool InstallRaiDrive { get; set; } = true; - /// - /// Internet Explorer 호환성 모드를 사용할지 여부를 나타냅니다. - /// - public bool EnableInternetExplorerMode { get; set; } = true; - /// /// 로그 수집 기능을 사용할지 여부를 나타냅니다. /// diff --git a/src/TableCloth.Shared/Models/Configuration/TableClothConfiguration.cs b/src/TableCloth.Shared/Models/Configuration/TableClothConfiguration.cs index ba7155a1..4942a252 100644 --- a/src/TableCloth.Shared/Models/Configuration/TableClothConfiguration.cs +++ b/src/TableCloth.Shared/Models/Configuration/TableClothConfiguration.cs @@ -52,11 +52,6 @@ public sealed class TableClothConfiguration /// public bool InstallRaiDrive { get; set; } - /// - /// Internet Explorer 호환성 모드를 사용할 것인지 여부입니다. - /// - public bool EnableInternetExplorerMode { get; set; } - /// /// 같이 설치하는 공통 소프트웨어에 관한 정보입니다. /// diff --git a/src/TableCloth/Commands/DetailPage/DetailPageLoadedCommand.cs b/src/TableCloth/Commands/DetailPage/DetailPageLoadedCommand.cs index e5781270..99e94edc 100644 --- a/src/TableCloth/Commands/DetailPage/DetailPageLoadedCommand.cs +++ b/src/TableCloth/Commands/DetailPage/DetailPageLoadedCommand.cs @@ -47,7 +47,6 @@ public async Task ExecuteAsync(DetailPageViewModel viewModel) viewModel.InstallAdobeReader = currentConfig.InstallAdobeReader; viewModel.InstallHancomOfficeViewer = currentConfig.InstallHancomOfficeViewer; viewModel.InstallRaiDrive = currentConfig.InstallRaiDrive; - viewModel.EnableInternetExplorerMode = currentConfig.EnableInternetExplorerMode; viewModel.LastDisclaimerAgreedTime = currentConfig.LastDisclaimerAgreedTime; var targetFilePath = sharedLocations.GetImageFilePath(selectedServiceId); @@ -141,10 +140,6 @@ private async Task OnViewModelPropertyChangedAsync(object? sender, PropertyChang currentConfig.InstallRaiDrive = viewModel.InstallRaiDrive; break; - case nameof(DetailPageViewModel.EnableInternetExplorerMode): - currentConfig.EnableInternetExplorerMode = viewModel.EnableInternetExplorerMode; - break; - case nameof(DetailPageViewModel.LastDisclaimerAgreedTime): currentConfig.LastDisclaimerAgreedTime = viewModel.LastDisclaimerAgreedTime; break; diff --git a/src/TableCloth/Components/Implementations/CommandLineArguments.cs b/src/TableCloth/Components/Implementations/CommandLineArguments.cs index 7b6fb20a..e73c6bbd 100644 --- a/src/TableCloth/Components/Implementations/CommandLineArguments.cs +++ b/src/TableCloth/Components/Implementations/CommandLineArguments.cs @@ -41,9 +41,6 @@ public CommandLineArguments() _installRaiDriveOption = new Option(ConstantStrings.TableCloth_Switch_InstallRaiDrive) { IsRequired = false, Arity = ArgumentArity.Zero, Description = UIStringResources.TableCloth_Switch_InstallRaiDrive_Help, }; - _enableIEModeOption = new Option(ConstantStrings.TableCloth_Switch_EnableIEMode) - { IsRequired = false, Arity = ArgumentArity.Zero, Description = UIStringResources.TableCloth_Switch_EnableIEMode_Help, }; - _dryRunOption = new Option(ConstantStrings.TableCloth_Switch_DryRun) { IsRequired = false, Arity = ArgumentArity.Zero, Description = UIStringResources.TableCloth_Switch_DryRun_Help, }; @@ -64,7 +61,6 @@ public CommandLineArguments() _installAdobeReaderOption, _installHancomOfficeViewerOption, _installRaiDriveOption, - _enableIEModeOption, _dryRunOption, _simulateFailureOption, _siteIdListArgument, @@ -94,7 +90,6 @@ public CommandLineArguments() private readonly Option _installAdobeReaderOption; private readonly Option _installHancomOfficeViewerOption; private readonly Option _installRaiDriveOption; - private readonly Option _enableIEModeOption; private readonly Option _dryRunOption; private readonly Option _simulateFailureOption; private readonly Argument _siteIdListArgument; @@ -136,7 +131,6 @@ public CommandLineArgumentModel GetCurrent() installAdobeReader: parseResult.GetValueForOption(_installAdobeReaderOption), installHancomOfficeViewer: parseResult.GetValueForOption(_installHancomOfficeViewerOption), installRaiDrive: parseResult.GetValueForOption(_installRaiDriveOption), - enableInternetExplorerMode: parseResult.GetValueForOption(_enableIEModeOption), showCommandLineHelp: parseResult.HasOption(_helpOption), showVersionHelp: parseResult.HasOption(_versionOption), dryRun: parseResult.GetValueForOption(_dryRunOption), diff --git a/src/TableCloth/Components/Implementations/CommandLineComposer.cs b/src/TableCloth/Components/Implementations/CommandLineComposer.cs index 77dcb7db..ac172d99 100644 --- a/src/TableCloth/Components/Implementations/CommandLineComposer.cs +++ b/src/TableCloth/Components/Implementations/CommandLineComposer.cs @@ -1,48 +1,46 @@ -using System.Collections.Generic; -using System.Linq; -using TableCloth.Resources; -using TableCloth.ViewModels; - -namespace TableCloth.Components.Implementations; - -public sealed class CommandLineComposer( - ISharedLocations sharedLocations) : ICommandLineComposer -{ - public string ComposeCommandLineExpression(ITableClothViewModel viewModel, bool allowMultipleItems) - { - var targetFilePath = sharedLocations.ExecutableFilePath; - var args = ComposeCommandLineArguments(viewModel, allowMultipleItems); - return $"\"{targetFilePath}\" {args}"; - } - - public string ComposeCommandLineArguments(ITableClothViewModel viewModel, bool allowMultipleItems) - => string.Join(' ', GetCommandLineExpressionList(viewModel, allowMultipleItems)); - +using System.Collections.Generic; +using System.Linq; +using TableCloth.Resources; +using TableCloth.ViewModels; + +namespace TableCloth.Components.Implementations; + +public sealed class CommandLineComposer( + ISharedLocations sharedLocations) : ICommandLineComposer +{ + public string ComposeCommandLineExpression(ITableClothViewModel viewModel, bool allowMultipleItems) + { + var targetFilePath = sharedLocations.ExecutableFilePath; + var args = ComposeCommandLineArguments(viewModel, allowMultipleItems); + return $"\"{targetFilePath}\" {args}"; + } + + public string ComposeCommandLineArguments(ITableClothViewModel viewModel, bool allowMultipleItems) + => string.Join(' ', GetCommandLineExpressionList(viewModel, allowMultipleItems)); + public IReadOnlyList GetCommandLineExpressionList(ITableClothViewModel viewModel, bool allowMultipleItems) { - var options = new List(); - - if (viewModel.EnableMicrophone) - options.Add(ConstantStrings.TableCloth_Switch_EnableMicrophone); - if (viewModel.EnableWebCam) - options.Add(ConstantStrings.TableCloth_Switch_EnableCamera); - if (viewModel.EnablePrinters) - options.Add(ConstantStrings.TableCloth_Switch_EnablePrinter); - if (viewModel.InstallEveryonesPrinter) - options.Add(ConstantStrings.TableCloth_Switch_InstallEveryonesPrinter); - if (viewModel.InstallAdobeReader) - options.Add(ConstantStrings.TableCloth_Switch_InstallAdobeReader); - if (viewModel.InstallHancomOfficeViewer) - options.Add(ConstantStrings.TableCloth_Switch_InstallHancomOfficeViewer); - if (viewModel.InstallRaiDrive) - options.Add(ConstantStrings.TableCloth_Switch_InstallRaiDrive); - if (viewModel.EnableInternetExplorerMode) - options.Add(ConstantStrings.TableCloth_Switch_EnableIEMode); - if (viewModel.MapNpkiCert) - options.Add(ConstantStrings.TableCloth_Switch_EnableCert); - + var options = new List(); + + if (viewModel.EnableMicrophone) + options.Add(ConstantStrings.TableCloth_Switch_EnableMicrophone); + if (viewModel.EnableWebCam) + options.Add(ConstantStrings.TableCloth_Switch_EnableCamera); + if (viewModel.EnablePrinters) + options.Add(ConstantStrings.TableCloth_Switch_EnablePrinter); + if (viewModel.InstallEveryonesPrinter) + options.Add(ConstantStrings.TableCloth_Switch_InstallEveryonesPrinter); + if (viewModel.InstallAdobeReader) + options.Add(ConstantStrings.TableCloth_Switch_InstallAdobeReader); + if (viewModel.InstallHancomOfficeViewer) + options.Add(ConstantStrings.TableCloth_Switch_InstallHancomOfficeViewer); + if (viewModel.InstallRaiDrive) + options.Add(ConstantStrings.TableCloth_Switch_InstallRaiDrive); + if (viewModel.MapNpkiCert) + options.Add(ConstantStrings.TableCloth_Switch_EnableCert); + if (allowMultipleItems) - options.AddRange(viewModel.SelectedServices.Select(x => x.Id)); + options.AddRange(viewModel.SelectedServices.Select(x => x.Id)); else { var firstSite = viewModel.SelectedServices.FirstOrDefault(); @@ -52,5 +50,5 @@ public IReadOnlyList GetCommandLineExpressionList(ITableClothViewModel v } return options.AsReadOnly(); - } -} + } +} diff --git a/src/TableCloth/Components/Implementations/ConfigurationComposer.cs b/src/TableCloth/Components/Implementations/ConfigurationComposer.cs index 13783bf5..de31e14c 100644 --- a/src/TableCloth/Components/Implementations/ConfigurationComposer.cs +++ b/src/TableCloth/Components/Implementations/ConfigurationComposer.cs @@ -28,8 +28,7 @@ public TableClothConfiguration GetConfigurationFromViewModel(ITableClothViewMode InstallAdobeReader = viewModel.InstallAdobeReader, InstallHancomOfficeViewer = viewModel.InstallHancomOfficeViewer, InstallRaiDrive = viewModel.InstallRaiDrive, - EnableInternetExplorerMode = viewModel.EnableInternetExplorerMode, - Companions = Array.Empty(), /*ViewModel.CatalogDocument.Companions*/ + Companions = Array.Empty(), Services = viewModel.SelectedServices.ToList(), }; } @@ -67,7 +66,6 @@ public TableClothConfiguration GetConfigurationFromArgumentModel(CommandLineArgu InstallAdobeReader = argumentModel.InstallAdobeReader ?? default, InstallHancomOfficeViewer = argumentModel.InstallHancomOfficeViewer ?? default, InstallRaiDrive = argumentModel.InstallRaiDrive ?? default, - EnableInternetExplorerMode = argumentModel.EnableInternetExplorerMode ?? default, }; } } diff --git a/src/TableCloth/Components/Implementations/SandboxBuilder.cs b/src/TableCloth/Components/Implementations/SandboxBuilder.cs index dada48fc..68c51b63 100644 --- a/src/TableCloth/Components/Implementations/SandboxBuilder.cs +++ b/src/TableCloth/Components/Implementations/SandboxBuilder.cs @@ -164,9 +164,6 @@ private string GenerateSandboxStartupScript(TableClothConfiguration tableClothCo if (tableClothConfiguration.InstallRaiDrive) switches.Add(ConstantStrings.TableCloth_Switch_InstallRaiDrive); - if (tableClothConfiguration.EnableInternetExplorerMode) - switches.Add(ConstantStrings.TableCloth_Switch_EnableIEMode); - var serviceIdList = (tableClothConfiguration.Services ?? Enumerable.Empty()) .Select(x => x.Id).Distinct(); var sporkFilePath = Path.Combine(GetAssetsPathForSandbox(), "Spork.exe"); diff --git a/src/TableCloth/Pages/DetailPage.xaml b/src/TableCloth/Pages/DetailPage.xaml index afcc2599..fd04b07d 100644 --- a/src/TableCloth/Pages/DetailPage.xaml +++ b/src/TableCloth/Pages/DetailPage.xaml @@ -205,13 +205,11 @@ - - diff --git a/src/TableCloth/ViewModels/DetailPageViewModel.cs b/src/TableCloth/ViewModels/DetailPageViewModel.cs index bdfcb969..1a19929c 100644 --- a/src/TableCloth/ViewModels/DetailPageViewModel.cs +++ b/src/TableCloth/ViewModels/DetailPageViewModel.cs @@ -142,7 +142,6 @@ public bool ShowCompatibilityNotesRow private bool _installAdobeReader; private bool _installHancomOfficeViewer; private bool _installRaiDrive; - private bool _enableInternetExplorerMode; private DateTime? _lastDisclaimerAgreedTime; private X509CertPair? _selectedCertFile; private string _searchKeyword = string.Empty; @@ -219,12 +218,6 @@ public bool InstallRaiDrive set => SetProperty(ref _installRaiDrive, value); } - public bool EnableInternetExplorerMode - { - get => _enableInternetExplorerMode; - set => SetProperty(ref _enableInternetExplorerMode, value); - } - public DateTime? LastDisclaimerAgreedTime { get => _lastDisclaimerAgreedTime; diff --git a/src/TableCloth/ViewModels/ITableClothViewModel.cs b/src/TableCloth/ViewModels/ITableClothViewModel.cs index 1c6b91e9..0cf2d506 100644 --- a/src/TableCloth/ViewModels/ITableClothViewModel.cs +++ b/src/TableCloth/ViewModels/ITableClothViewModel.cs @@ -13,7 +13,6 @@ public interface ITableClothViewModel bool InstallAdobeReader { get; } bool InstallHancomOfficeViewer { get; } bool InstallRaiDrive { get; } - bool EnableInternetExplorerMode { get; } bool MapNpkiCert { get; } IEnumerable SelectedServices { get; } X509CertPair? SelectedCertFile { get; set; }