diff --git a/src/Aspire.Cli/Commands/DeployCommand.cs b/src/Aspire.Cli/Commands/DeployCommand.cs index e342a25c583..6b5a47543b6 100644 --- a/src/Aspire.Cli/Commands/DeployCommand.cs +++ b/src/Aspire.Cli/Commands/DeployCommand.cs @@ -26,7 +26,7 @@ public DeployCommand(IDotNetCliRunner runner, IInteractionService interactionSer { _clearCacheOption = new Option("--clear-cache") { - Description = "Clear the deployment cache associated with the current environment and do not save deployment state" + Description = DeployCommandStrings.ClearCacheOptionDescription }; Options.Add(_clearCacheOption); } diff --git a/src/Aspire.Cli/Commands/InitCommand.cs b/src/Aspire.Cli/Commands/InitCommand.cs index ffd14141c13..49a8af6276f 100644 --- a/src/Aspire.Cli/Commands/InitCommand.cs +++ b/src/Aspire.Cli/Commands/InitCommand.cs @@ -119,7 +119,7 @@ public InitCommand( _languageOption = new Option("--language") { - Description = "The programming language for the AppHost (csharp, typescript)" + Description = InitCommandStrings.LanguageOptionDescription }; Options.Add(_languageOption); } diff --git a/src/Aspire.Cli/Commands/McpCallCommand.cs b/src/Aspire.Cli/Commands/McpCallCommand.cs index 5fc296c8d5e..2c472b97fee 100644 --- a/src/Aspire.Cli/Commands/McpCallCommand.cs +++ b/src/Aspire.Cli/Commands/McpCallCommand.cs @@ -27,17 +27,17 @@ internal sealed class McpCallCommand : BaseCommand private static readonly Argument s_resourceArgument = new("resource") { - Description = "The name of the resource that exposes the MCP tool." + Description = McpCommandStrings.CallCommand_ResourceArgumentDescription }; private static readonly Argument s_toolArgument = new("tool") { - Description = "The name of the MCP tool to call." + Description = McpCommandStrings.CallCommand_ToolArgumentDescription }; private static readonly Option s_inputOption = new("--input", "-i") { - Description = "JSON input to pass to the tool." + Description = McpCommandStrings.CallCommand_InputOptionDescription }; private static readonly OptionWithLegacy s_appHostOption = new("--apphost", "--project", SharedCommandStrings.AppHostOptionDescription); @@ -50,7 +50,7 @@ public McpCallCommand( CliExecutionContext executionContext, AspireCliTelemetry telemetry, ILogger logger) - : base("call", "Call an MCP tool on a running resource.", features, updateNotifier, executionContext, interactionService, telemetry) + : base("call", McpCommandStrings.CallCommand_Description, features, updateNotifier, executionContext, interactionService, telemetry) { _interactionService = interactionService; _connectionResolver = new AppHostConnectionResolver(backchannelMonitor, interactionService, executionContext, logger); diff --git a/src/Aspire.Cli/Commands/McpToolsCommand.cs b/src/Aspire.Cli/Commands/McpToolsCommand.cs index b9de96297bb..155fc2737cf 100644 --- a/src/Aspire.Cli/Commands/McpToolsCommand.cs +++ b/src/Aspire.Cli/Commands/McpToolsCommand.cs @@ -28,7 +28,7 @@ internal sealed class McpToolsCommand : BaseCommand private static readonly OptionWithLegacy s_appHostOption = new("--apphost", "--project", SharedCommandStrings.AppHostOptionDescription); private static readonly Option s_formatOption = new("--format") { - Description = "Output format (Table or Json)." + Description = McpCommandStrings.ToolsCommand_FormatOptionDescription }; public McpToolsCommand( @@ -39,7 +39,7 @@ public McpToolsCommand( CliExecutionContext executionContext, AspireCliTelemetry telemetry, ILogger logger) - : base("tools", "List MCP tools exposed by running resources.", features, updateNotifier, executionContext, interactionService, telemetry) + : base("tools", McpCommandStrings.ToolsCommand_Description, features, updateNotifier, executionContext, interactionService, telemetry) { _interactionService = interactionService; _connectionResolver = new AppHostConnectionResolver(backchannelMonitor, interactionService, executionContext, logger); diff --git a/src/Aspire.Cli/Commands/PipelineCommandBase.cs b/src/Aspire.Cli/Commands/PipelineCommandBase.cs index 169637ef6c6..038f6d4d19d 100644 --- a/src/Aspire.Cli/Commands/PipelineCommandBase.cs +++ b/src/Aspire.Cli/Commands/PipelineCommandBase.cs @@ -42,17 +42,17 @@ internal abstract class PipelineCommandBase : BaseCommand protected static readonly Option s_logLevelOption = new("--log-level") { - Description = "Set the minimum log level for pipeline logging (trace, debug, information, warning, error, critical). The default is 'information'." + Description = SharedCommandStrings.PipelineLogLevelOptionDescription }; protected static readonly Option s_includeExceptionDetailsOption = new("--include-exception-details") { - Description = "Include exception details (stack traces) in pipeline logs." + Description = SharedCommandStrings.PipelineIncludeExceptionDetailsOptionDescription }; protected static readonly Option s_environmentOption = new("--environment", "-e") { - Description = "The environment to use for the operation. The default is 'Production'." + Description = SharedCommandStrings.PipelineEnvironmentOptionDescription }; protected static readonly Option s_noBuildOption = new("--no-build") diff --git a/src/Aspire.Cli/Commands/RenderCommand.cs b/src/Aspire.Cli/Commands/RenderCommand.cs index cc8d8f3a1cb..129ffaf1705 100644 --- a/src/Aspire.Cli/Commands/RenderCommand.cs +++ b/src/Aspire.Cli/Commands/RenderCommand.cs @@ -42,7 +42,7 @@ public RenderCommand( CliExecutionContext executionContext, IInteractionService interactionService, AspireCliTelemetry telemetry) - : base("render", "Smoke test CLI rendering.", features, updateNotifier, executionContext, interactionService, telemetry) + : base("render", "Smoke test CLI rendering", features, updateNotifier, executionContext, interactionService, telemetry) { Hidden = true; } diff --git a/src/Aspire.Cli/Commands/SetupCommand.cs b/src/Aspire.Cli/Commands/SetupCommand.cs index 5ce0c36435e..29a78288cc8 100644 --- a/src/Aspire.Cli/Commands/SetupCommand.cs +++ b/src/Aspire.Cli/Commands/SetupCommand.cs @@ -24,7 +24,7 @@ internal sealed class SetupCommand : BaseCommand private static readonly Option s_forceOption = new("--force") { - Description = "Force extraction even if the layout already exists." + Description = "Force extraction even if the layout already exists" }; public SetupCommand( @@ -34,7 +34,7 @@ public SetupCommand( CliExecutionContext executionContext, IInteractionService interactionService, AspireCliTelemetry telemetry) - : base("setup", "Extract the embedded bundle to set up the Aspire CLI runtime.", features, updateNotifier, executionContext, interactionService, telemetry) + : base("setup", "Extract the embedded bundle to set up the Aspire CLI runtime", features, updateNotifier, executionContext, interactionService, telemetry) { // Hidden: the setup command is an implementation detail used by install scripts. Hidden = true; diff --git a/src/Aspire.Cli/Commands/UpdateCommand.cs b/src/Aspire.Cli/Commands/UpdateCommand.cs index ba135960dff..ca91c32b188 100644 --- a/src/Aspire.Cli/Commands/UpdateCommand.cs +++ b/src/Aspire.Cli/Commands/UpdateCommand.cs @@ -34,7 +34,7 @@ internal sealed class UpdateCommand : BaseCommand private static readonly OptionWithLegacy s_appHostOption = new("--apphost", "--project", UpdateCommandStrings.ProjectArgumentDescription); private static readonly Option s_selfOption = new("--self") { - Description = "Update the Aspire CLI itself to the latest version" + Description = UpdateCommandStrings.SelfOptionDescription }; private readonly Option _channelOption; private readonly Option _qualityOption; diff --git a/src/Aspire.Cli/Resources/AddCommandStrings.resx b/src/Aspire.Cli/Resources/AddCommandStrings.resx index 84623e973d3..fc87e47b1a2 100644 --- a/src/Aspire.Cli/Resources/AddCommandStrings.resx +++ b/src/Aspire.Cli/Resources/AddCommandStrings.resx @@ -118,19 +118,19 @@ System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - Add a hosting integration to the apphost. + Add a hosting integration to the apphost - The name of the integration to add (e.g. redis, postgres). + The name of the integration to add (e.g. redis, postgres) - The path to the Aspire AppHost project file to add the integration to. + The path to the Aspire apphost project file to add the integration to - The version of the integration to add. + The version of the integration to add - The NuGet source to use for the integration. + The NuGet source to use for the integration Searching for Aspire integrations... @@ -173,9 +173,9 @@ Use pre-release packages - Stopped a running Aspire AppHost instance to allow package modification. + Stopped a running Aspire apphost instance to allow package modification. - Unable to stop one or more running Aspire AppHost instances. Please stop the application and try again. + Unable to stop one or more running Aspire apphost instances. Please stop the application and try again. diff --git a/src/Aspire.Cli/Resources/AgentCommandStrings.Designer.cs b/src/Aspire.Cli/Resources/AgentCommandStrings.Designer.cs index db15a7e79b5..adb3e30b728 100644 --- a/src/Aspire.Cli/Resources/AgentCommandStrings.Designer.cs +++ b/src/Aspire.Cli/Resources/AgentCommandStrings.Designer.cs @@ -61,7 +61,7 @@ internal AgentCommandStrings() { } /// - /// Looks up a localized string similar to Manage AI agent integrations.. + /// Looks up a localized string similar to Manage AI agent environment configuration.. /// internal static string Description { get { diff --git a/src/Aspire.Cli/Resources/AgentCommandStrings.resx b/src/Aspire.Cli/Resources/AgentCommandStrings.resx index 469b6daecd7..35fd7587db6 100644 --- a/src/Aspire.Cli/Resources/AgentCommandStrings.resx +++ b/src/Aspire.Cli/Resources/AgentCommandStrings.resx @@ -61,13 +61,13 @@ System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - Manage AI agent specific setup. + Manage AI agent environment configuration - Start the MCP (Model Context Protocol) server. + Start the MCP (Model Context Protocol) server - Initialize agent environment configuration for detected agents. + Initialize agent environment configuration for detected agents Update {0} config to use new 'agent mcp' command diff --git a/src/Aspire.Cli/Resources/CacheCommandStrings.resx b/src/Aspire.Cli/Resources/CacheCommandStrings.resx index 20e827bd243..767786dd1bd 100644 --- a/src/Aspire.Cli/Resources/CacheCommandStrings.resx +++ b/src/Aspire.Cli/Resources/CacheCommandStrings.resx @@ -61,10 +61,10 @@ System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - Manage disk cache for CLI operations. + Manage disk cache for CLI operations - Clear all cache entries. + Clear all cache entries Cache cleared successfully. diff --git a/src/Aspire.Cli/Resources/CertificatesCommandStrings.resx b/src/Aspire.Cli/Resources/CertificatesCommandStrings.resx index 7242ee0d2d2..4f1b74c611a 100644 --- a/src/Aspire.Cli/Resources/CertificatesCommandStrings.resx +++ b/src/Aspire.Cli/Resources/CertificatesCommandStrings.resx @@ -61,16 +61,16 @@ System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - Manage HTTPS development certificates. + Manage HTTPS development certificates - Remove all HTTPS development certificates. + Remove all HTTPS development certificates Certificate clean operation was cancelled by the user. - Trust the HTTPS development certificate, creating one if necessary. + Trust the HTTPS development certificate, creating one if necessary Cleaning development certificates (may require elevated permissions)... diff --git a/src/Aspire.Cli/Resources/ConfigCommandStrings.resx b/src/Aspire.Cli/Resources/ConfigCommandStrings.resx index 21a8f5f286c..b615ecc6cbd 100644 --- a/src/Aspire.Cli/Resources/ConfigCommandStrings.resx +++ b/src/Aspire.Cli/Resources/ConfigCommandStrings.resx @@ -107,25 +107,25 @@ System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - Manage CLI configuration including feature flags. + Manage CLI configuration including feature flags - Get a configuration value. + Get a configuration value - The configuration key to retrieve. + The configuration key to retrieve - Set a configuration value. + Set a configuration value - The configuration key to set. + The configuration key to set - The configuration value to set. + The configuration value to set - Set the configuration value globally in $HOME/.aspire/settings.json instead of the local settings file. + Set the configuration value globally in $HOME/.aspire/settings.json instead of the local settings file Configuration '{0}' set to '{1}' locally. @@ -136,10 +136,10 @@ {0} is the key, {1} is the value - List all configuration values. + List all configuration values - Show all available features that can be configured. + Show all available features that can be configured Run 'aspire config list --all' to see all available feature flags. @@ -148,13 +148,13 @@ No configuration values found. - Delete a configuration value. + Delete a configuration value - The configuration key to delete. + The configuration key to delete - Delete the configuration value from the global $HOME/.aspire/settings.json instead of the local settings file. + Delete the configuration value from the global $HOME/.aspire/settings.json instead of the local settings file Configuration '{0}' deleted locally. @@ -205,10 +205,10 @@ No global configuration found. - Display configuration file paths and available features. + Display configuration file paths and available features - Output information in JSON format. + Output information in JSON format Local settings path diff --git a/src/Aspire.Cli/Resources/DeployCommandStrings.Designer.cs b/src/Aspire.Cli/Resources/DeployCommandStrings.Designer.cs index 0ad9b9a9897..b0bcdbd7251 100644 --- a/src/Aspire.Cli/Resources/DeployCommandStrings.Designer.cs +++ b/src/Aspire.Cli/Resources/DeployCommandStrings.Designer.cs @@ -1,4 +1,4 @@ -//------------------------------------------------------------------------------ +//------------------------------------------------------------------------------ // // This code was generated by a tool. // Runtime Version:4.0.30319.42000 @@ -70,7 +70,7 @@ public static string DeploymentCanceled { } /// - /// Looks up a localized string similar to Deploy an Aspire app host project to its supported deployment targets. (Preview). + /// Looks up a localized string similar to Deploy an Aspire apphost project to its supported deployment targets. (Preview). /// public static string Description { get { @@ -104,5 +104,11 @@ public static string OperationFailedPrefix { return ResourceManager.GetString("OperationFailedPrefix", resourceCulture); } } + + public static string ClearCacheOptionDescription { + get { + return ResourceManager.GetString("ClearCacheOptionDescription", resourceCulture); + } + } } } diff --git a/src/Aspire.Cli/Resources/DeployCommandStrings.resx b/src/Aspire.Cli/Resources/DeployCommandStrings.resx index 21d4efcc93c..e0aeab0e501 100644 --- a/src/Aspire.Cli/Resources/DeployCommandStrings.resx +++ b/src/Aspire.Cli/Resources/DeployCommandStrings.resx @@ -118,10 +118,10 @@ System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - Deploy an apphost to its deployment targets. (Preview) + Deploy an apphost to its deployment targets (Preview) - The optional output path for deployment artifacts. + The optional output path for deployment artifacts The deployment was canceled. @@ -132,4 +132,7 @@ DEPLOYMENT FAILED + + Clear the deployment cache associated with the current environment and do not save deployment state + diff --git a/src/Aspire.Cli/Resources/DescribeCommandStrings.resx b/src/Aspire.Cli/Resources/DescribeCommandStrings.resx index 2734427e101..adcd534d6bf 100644 --- a/src/Aspire.Cli/Resources/DescribeCommandStrings.resx +++ b/src/Aspire.Cli/Resources/DescribeCommandStrings.resx @@ -118,16 +118,16 @@ System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - Describe resources in a running apphost. + Describe resources in a running apphost - Continuously stream resource state changes. + Continuously stream resource state changes - Output format (Table or Json). + Output format (Table or Json) - No AppHost project found. + No apphost project found. The name of the resource to display. If not specified, all resources are shown. diff --git a/src/Aspire.Cli/Resources/DoCommandStrings.resx b/src/Aspire.Cli/Resources/DoCommandStrings.resx index f9dd8e43c82..f4cc5dd1336 100644 --- a/src/Aspire.Cli/Resources/DoCommandStrings.resx +++ b/src/Aspire.Cli/Resources/DoCommandStrings.resx @@ -118,10 +118,10 @@ System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - Execute a specific pipeline step and its dependencies. (Preview) + Execute a specific pipeline step and its dependencies (Preview) - The optional output path for artifacts. + The optional output path for artifacts The operation was canceled. @@ -136,6 +136,6 @@ Executing pipeline... - The name of the step to execute. + The name of the step to execute diff --git a/src/Aspire.Cli/Resources/DocsCommandStrings.resx b/src/Aspire.Cli/Resources/DocsCommandStrings.resx index 1c843e5d5e6..4ac802afe3c 100644 --- a/src/Aspire.Cli/Resources/DocsCommandStrings.resx +++ b/src/Aspire.Cli/Resources/DocsCommandStrings.resx @@ -118,31 +118,31 @@ System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - Browse and search Aspire documentation from aspire.dev. + Browse and search Aspire documentation from aspire.dev - List all available Aspire documentation pages. + List all available Aspire documentation pages - Search Aspire documentation by keywords. + Search Aspire documentation by keywords - Get the full content of a documentation page by its slug. + Get the full content of a documentation page by its slug - The search query. + The search query - The slug of the documentation page (e.g., 'redis-integration'). + The slug of the documentation page (e.g., 'redis-integration') - Output format (Table or Json). + Output format (Table or Json) - Maximum number of search results to return (default: 5, max: 10). + Maximum number of search results to return (default: 5, max: 10) - Return only the specified section of the page. + Return only the specified section of the page Loading documentation... diff --git a/src/Aspire.Cli/Resources/DoctorCommandStrings.resx b/src/Aspire.Cli/Resources/DoctorCommandStrings.resx index dc5431488a7..51b4be27a43 100644 --- a/src/Aspire.Cli/Resources/DoctorCommandStrings.resx +++ b/src/Aspire.Cli/Resources/DoctorCommandStrings.resx @@ -59,10 +59,10 @@ System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - Diagnose Aspire environment issues and verify setup. + Diagnose Aspire environment issues and verify setup - Output format (Table or Json). + Output format (Table or Json) Aspire Environment Check diff --git a/src/Aspire.Cli/Resources/ErrorStrings.resx b/src/Aspire.Cli/Resources/ErrorStrings.resx index a6352251575..5ae0e332b1c 100644 --- a/src/Aspire.Cli/Resources/ErrorStrings.resx +++ b/src/Aspire.Cli/Resources/ErrorStrings.resx @@ -128,10 +128,10 @@ {1} is a comma-separated list of locales. - Already connected to AppHost backchannel. + Already connected to apphost backchannel. - AppHost is incompatible with the CLI. The AppHost must be updated to a version that supports the {0} capability. + Apphost is incompatible with the CLI. The apphost must be updated to a version that supports the {0} capability. Aspire Extension is incompatible with the CLI. The Extension must be updated to a version that supports the {0} capability. @@ -150,7 +150,7 @@ {0} is a number - AppHost file was specified in '{0}' but it does not exist at '{1}'. + Apphost file was specified in '{0}' but it does not exist at '{1}'. {0} is a path @@ -184,7 +184,7 @@ No project file found. - Project file is not an Aspire AppHost project. + Project file is not an Aspire apphost project. AspireHostingVersion is null @@ -221,10 +221,10 @@ No buildable app hosts were found, but there may have been unbuildable app hosts. - Single file AppHost feature is not enabled. To use .cs AppHost files, enable the feature using configuration. + Single file apphost feature is not enabled. To use .cs apphost files, enable the feature using configuration. - This command is not yet supported with single file AppHosts. + This command is not yet supported with single file apphosts. Project is not supported in the current environment: {0} diff --git a/src/Aspire.Cli/Resources/ExecCommandStrings.Designer.cs b/src/Aspire.Cli/Resources/ExecCommandStrings.Designer.cs index 4f4278935b0..d772e9e0a6f 100644 --- a/src/Aspire.Cli/Resources/ExecCommandStrings.Designer.cs +++ b/src/Aspire.Cli/Resources/ExecCommandStrings.Designer.cs @@ -70,7 +70,7 @@ internal static string CommandArgumentDescription { } /// - /// Looks up a localized string similar to Execute commands in the context of an Aspire application resource. Starts the AppHost, waits for resources to initialize, then runs the specified command in the target resource's environment. (Preview) + /// Looks up a localized string similar to Execute commands in the context of an Aspire application resource. Starts the apphost, waits for resources to initialize, then runs the specified command in the target resource's environment. (Preview) /// ///Examples: /// aspire exec --resource api dotnet build @@ -103,7 +103,7 @@ internal static string NoCommandSpecified { } /// - /// Looks up a localized string similar to The path to the Aspire AppHost project file. If not specified, searches for a project file in the current directory.. + /// Looks up a localized string similar to The path to the Aspire apphost project file. If not specified, searches for a project file in the current directory.. /// internal static string ProjectArgumentDescription { get { @@ -130,7 +130,7 @@ internal static string StartTargetResourceArgumentDescription { } /// - /// Looks up a localized string similar to Stopping app host.... + /// Looks up a localized string similar to Stopping apphost.... /// internal static string StoppingAppHost { get { @@ -139,7 +139,7 @@ internal static string StoppingAppHost { } /// - /// Looks up a localized string similar to The name of the target resource to execute the command against. The command will be executed as soon as the AppHost starts, without waiting for the resource to be ready.. + /// Looks up a localized string similar to The name of the target resource to execute the command against. The command will be executed as soon as the apphost starts, without waiting for the resource to be ready.. /// internal static string TargetResourceArgumentDescription { get { diff --git a/src/Aspire.Cli/Resources/ExecCommandStrings.resx b/src/Aspire.Cli/Resources/ExecCommandStrings.resx index b9cc55ee6da..12453bc1cb8 100644 --- a/src/Aspire.Cli/Resources/ExecCommandStrings.resx +++ b/src/Aspire.Cli/Resources/ExecCommandStrings.resx @@ -118,7 +118,7 @@ System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - Execute commands in the context of an Aspire application resource. Starts the AppHost, waits for resources to initialize, then runs the specified command in the target resource's environment. (Preview) + Execute commands in the context of an Aspire application resource. Starts the apphost, waits for resources to initialize, then runs the specified command in the target resource's environment (Preview) Examples: aspire exec --resource api dotnet build @@ -127,13 +127,13 @@ Examples: - The path to the Aspire AppHost project file. If not specified, searches for a project file in the current directory. + The path to the Aspire apphost project file. If not specified, searches for a project file in the current directory. The name of the target resource to execute the command against. The command will only be executed after the target resource has successfully started and is running. - The name of the target resource to execute the command against. The command will be executed as soon as the AppHost starts, without waiting for the resource to be ready. + The name of the target resource to execute the command against. The command will be executed as soon as the apphost starts, without waiting for the resource to be ready. Target resource is not specified. Use --resource or --start-resource to specify the target. @@ -154,6 +154,6 @@ Examples: Stopping app host... - The working directory to execute the command in. + The working directory to execute the command in \ No newline at end of file diff --git a/src/Aspire.Cli/Resources/ExportCommandStrings.Designer.cs b/src/Aspire.Cli/Resources/ExportCommandStrings.Designer.cs index 8397a6155f3..edc8789627f 100644 --- a/src/Aspire.Cli/Resources/ExportCommandStrings.Designer.cs +++ b/src/Aspire.Cli/Resources/ExportCommandStrings.Designer.cs @@ -1,4 +1,4 @@ -//------------------------------------------------------------------------------ +//------------------------------------------------------------------------------ // // This code was generated by a tool. // Runtime Version:4.0.30319.42000 @@ -70,7 +70,7 @@ internal static string DashboardNotAvailable { } /// - /// Looks up a localized string similar to Export telemetry and resource data to a zip file. + /// Looks up a localized string similar to Export telemetry and resource data to a zip file.. /// internal static string Description { get { diff --git a/src/Aspire.Cli/Resources/InitCommandStrings.Designer.cs b/src/Aspire.Cli/Resources/InitCommandStrings.Designer.cs index 676950e46d9..b6b7f4f4762 100644 --- a/src/Aspire.Cli/Resources/InitCommandStrings.Designer.cs +++ b/src/Aspire.Cli/Resources/InitCommandStrings.Designer.cs @@ -122,5 +122,11 @@ internal static string SolutionAndProjectInSameDirectory { return ResourceManager.GetString("SolutionAndProjectInSameDirectory", resourceCulture); } } + + internal static string LanguageOptionDescription { + get { + return ResourceManager.GetString("LanguageOptionDescription", resourceCulture); + } + } } } \ No newline at end of file diff --git a/src/Aspire.Cli/Resources/InitCommandStrings.resx b/src/Aspire.Cli/Resources/InitCommandStrings.resx index 7d56a851605..80f9322e686 100644 --- a/src/Aspire.Cli/Resources/InitCommandStrings.resx +++ b/src/Aspire.Cli/Resources/InitCommandStrings.resx @@ -61,13 +61,13 @@ System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - Initialize Aspire in an existing codebase. + Initialize Aspire in an existing codebase Solution detected: {0} - Creating AppHost project... + Creating apphost project... Creating ServiceDefaults project... @@ -76,7 +76,7 @@ Adding projects to solution... - No solution file found. Creating single-file AppHost... + No solution file found. Creating single-file apphost... Aspire initialization complete! @@ -88,7 +88,7 @@ Solution has already been initialized with Aspire. - Adding AppHost project to solution... + Adding apphost project to solution... Adding ServiceDefaults project to solution... @@ -97,6 +97,9 @@ Resolving template version... - The solution file '{0}' and project file '{1}' are in the same directory. The AppHost and ServiceDefaults projects cannot be created inside an existing project directory. Move the solution file to a parent directory or the project file to a subdirectory. + The solution file '{0}' and project file '{1}' are in the same directory. The apphost and ServiceDefaults projects cannot be created inside an existing project directory. Move the solution file to a parent directory or the project file to a subdirectory. + + + The programming language for the apphost (csharp, typescript) \ No newline at end of file diff --git a/src/Aspire.Cli/Resources/InteractionServiceStrings.Designer.cs b/src/Aspire.Cli/Resources/InteractionServiceStrings.Designer.cs index b7a70259085..ba32d8903a0 100644 --- a/src/Aspire.Cli/Resources/InteractionServiceStrings.Designer.cs +++ b/src/Aspire.Cli/Resources/InteractionServiceStrings.Designer.cs @@ -1,4 +1,4 @@ -//------------------------------------------------------------------------------ +//------------------------------------------------------------------------------ // // This code was generated by a tool. // Runtime Version:4.0.30319.42000 @@ -61,7 +61,7 @@ internal InteractionServiceStrings() { } /// - /// Looks up a localized string similar to The AppHost version is not compatible. Please upgrade the apphost or Aspire CLI.. + /// Looks up a localized string similar to The apphost version is not compatible. Please upgrade the apphost or Aspire CLI.. /// public static string AppHostNotCompatibleConsiderUpgrading { get { @@ -169,7 +169,7 @@ public static string DirectLink { } /// - /// Looks up a localized string similar to An error occurred while connecting to the app host. The app host possibly crashed before it was available: {0}.. + /// Looks up a localized string similar to An error occurred while connecting to the apphost. The apphost possibly crashed before it was available: {0}.. /// public static string ErrorConnectingToAppHost { get { @@ -178,7 +178,7 @@ public static string ErrorConnectingToAppHost { } /// - /// Looks up a localized string similar to An error occurred while connecting to the app host. The app host possibly crashed before it was available: {0}.. + /// Looks up a localized string similar to An error occurred while connecting to the apphost. The apphost possibly crashed before it was available: {0}.. /// public static string AppHostConnectionLost { get { @@ -259,7 +259,7 @@ public static string ProjectOptionDoesntExist { } /// - /// Looks up a localized string similar to The --apphost option was not specified and multiple app host project files were detected.. + /// Looks up a localized string similar to The --apphost option was not specified and multiple apphost project files were detected.. /// public static string ProjectOptionNotSpecifiedMultipleAppHostsFound { get { @@ -304,7 +304,7 @@ public static string SelectAppHostToUse { } /// - /// Looks up a localized string similar to The specified project file is not an Aspire AppHost project.. + /// Looks up a localized string similar to The specified project file is not an Aspire apphost project.. /// public static string SpecifiedProjectFileNotAppHostProject { get { @@ -331,7 +331,7 @@ public static string TrustingCertificates { } /// - /// Looks up a localized string similar to No app hosts were found (there may be app hosts project files with syntax errors/invalid SDK versions).. + /// Looks up a localized string similar to No apphosts were found (there may be apphosts project files with syntax errors/invalid SDK versions).. /// public static string UnbuildableAppHostsDetected { get { @@ -358,7 +358,7 @@ public static string SeeLogsAt { } /// - /// Looks up a localized string similar to Waiting for debugger to attach to app host process. + /// Looks up a localized string similar to Waiting for debugger to attach to apphost process. /// public static string WaitingForDebuggerToAttachToAppHost { get { diff --git a/src/Aspire.Cli/Resources/InteractionServiceStrings.resx b/src/Aspire.Cli/Resources/InteractionServiceStrings.resx index eaad84e1a9d..d3e5a106d08 100644 --- a/src/Aspire.Cli/Resources/InteractionServiceStrings.resx +++ b/src/Aspire.Cli/Resources/InteractionServiceStrings.resx @@ -122,7 +122,7 @@ {0} is the original selection prompt text. - The AppHost version is not compatible. Please upgrade the apphost or Aspire CLI. + The apphost version is not compatible. Please upgrade the apphost or Aspire CLI. Aspire.Hosting Version @@ -192,7 +192,7 @@ The operation was canceled. - The specified project file is not an Aspire AppHost project. + The specified project file is not an Aspire apphost project. An error occurred while connecting to the app host. The app host possibly crashed before it was available: {0}. diff --git a/src/Aspire.Cli/Resources/LogsCommandStrings.resx b/src/Aspire.Cli/Resources/LogsCommandStrings.resx index a3a550db962..0bee121290a 100644 --- a/src/Aspire.Cli/Resources/LogsCommandStrings.resx +++ b/src/Aspire.Cli/Resources/LogsCommandStrings.resx @@ -118,16 +118,16 @@ System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - Display logs from resources in a running apphost. + Display logs from resources in a running apphost The name of the resource to get logs for. If not specified, logs from all resources are shown. - Stream logs in real-time as they are written. + Stream logs in real-time as they are written - Output format (Table or Json). + Output format (Table or Json) A resource name is required when not using --follow. Use --follow to stream logs from all resources. @@ -136,7 +136,7 @@ No resources found. - Number of lines to show from the end of logs (default: all). + Number of lines to show from the end of logs (default: all) The --tail option requires a resource name to be specified. @@ -148,7 +148,7 @@ Resource '{0}' was not found. - Show timestamps for each log line. + Show timestamps for each log line stream logs from diff --git a/src/Aspire.Cli/Resources/McpCommandStrings.Designer.cs b/src/Aspire.Cli/Resources/McpCommandStrings.Designer.cs index d1f13eae13a..1ab47f7cb95 100644 --- a/src/Aspire.Cli/Resources/McpCommandStrings.Designer.cs +++ b/src/Aspire.Cli/Resources/McpCommandStrings.Designer.cs @@ -185,5 +185,41 @@ internal static string StartCommand_Description { return ResourceManager.GetString("StartCommand_Description", resourceCulture); } } + + internal static string CallCommand_Description { + get { + return ResourceManager.GetString("CallCommand_Description", resourceCulture); + } + } + + internal static string CallCommand_ResourceArgumentDescription { + get { + return ResourceManager.GetString("CallCommand_ResourceArgumentDescription", resourceCulture); + } + } + + internal static string CallCommand_ToolArgumentDescription { + get { + return ResourceManager.GetString("CallCommand_ToolArgumentDescription", resourceCulture); + } + } + + internal static string CallCommand_InputOptionDescription { + get { + return ResourceManager.GetString("CallCommand_InputOptionDescription", resourceCulture); + } + } + + internal static string ToolsCommand_Description { + get { + return ResourceManager.GetString("ToolsCommand_Description", resourceCulture); + } + } + + internal static string ToolsCommand_FormatOptionDescription { + get { + return ResourceManager.GetString("ToolsCommand_FormatOptionDescription", resourceCulture); + } + } } } diff --git a/src/Aspire.Cli/Resources/McpCommandStrings.resx b/src/Aspire.Cli/Resources/McpCommandStrings.resx index da422bbadac..35569d77467 100644 --- a/src/Aspire.Cli/Resources/McpCommandStrings.resx +++ b/src/Aspire.Cli/Resources/McpCommandStrings.resx @@ -61,13 +61,13 @@ System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - Interact with MCP (Model Context Protocol) tools exposed by Aspire resources. + Interact with MCP (Model Context Protocol) tools exposed by Aspire resources - Start the MCP (Model Context Protocol) server. (deprecated, use 'agent mcp') + Start the MCP (Model Context Protocol) server (deprecated, use 'agent mcp') - Initialize MCP server configuration for detected agent environments. (deprecated, use 'agent init') + Initialize MCP server configuration for detected agent environments (deprecated, use 'agent init') Warning: 'aspire mcp' commands are deprecated and will be removed in a future release. Please use 'aspire agent' instead. @@ -102,4 +102,22 @@ Install Playwright CLI for browser automation? + + Call an MCP tool on a running resource + + + The name of the resource that exposes the MCP tool + + + The name of the MCP tool to call + + + JSON input to pass to the tool + + + List MCP tools exposed by running resources + + + Output format (Table or Json) + diff --git a/src/Aspire.Cli/Resources/NewCommandStrings.resx b/src/Aspire.Cli/Resources/NewCommandStrings.resx index fede50fbc6e..e7cf4cea57b 100644 --- a/src/Aspire.Cli/Resources/NewCommandStrings.resx +++ b/src/Aspire.Cli/Resources/NewCommandStrings.resx @@ -107,19 +107,19 @@ System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - Create a new app from an Aspire starter template. + Create a new app from an Aspire starter template - The name of the project to create. + The name of the project to create - The output path for the project. + The output path for the project - The NuGet source to use for the project templates. + The NuGet source to use for the project templates - The version of the project templates to use. + The version of the project templates to use Select a template version: @@ -146,7 +146,7 @@ Channel to use for templates (stable, staging, daily) - The programming language for the AppHost. + The programming language for the apphost Resolving template version... diff --git a/src/Aspire.Cli/Resources/PsCommandStrings.resx b/src/Aspire.Cli/Resources/PsCommandStrings.resx index 3a5912e126f..65de554a0da 100644 --- a/src/Aspire.Cli/Resources/PsCommandStrings.resx +++ b/src/Aspire.Cli/Resources/PsCommandStrings.resx @@ -118,10 +118,10 @@ System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - List running apphosts. + List running apphosts - Output format (Table or Json). + Output format (Table or Json) Path @@ -139,6 +139,6 @@ Unknown - Include resource details for each running app host. Only applies to JSON output. + Include resource details for each running apphost. Only applies to JSON output. diff --git a/src/Aspire.Cli/Resources/PublishCommandStrings.Designer.cs b/src/Aspire.Cli/Resources/PublishCommandStrings.Designer.cs index 20a423db950..530e9a2fc35 100644 --- a/src/Aspire.Cli/Resources/PublishCommandStrings.Designer.cs +++ b/src/Aspire.Cli/Resources/PublishCommandStrings.Designer.cs @@ -1,4 +1,4 @@ -//------------------------------------------------------------------------------ +//------------------------------------------------------------------------------ // // This code was generated by a tool. // Runtime Version:4.0.30319.42000 @@ -124,7 +124,7 @@ public static string OutputPathArgumentDescription { } /// - /// Looks up a localized string similar to The path to the Aspire AppHost project file.. + /// Looks up a localized string similar to The path to the Aspire apphost project file.. /// public static string ProjectArgumentDescription { get { diff --git a/src/Aspire.Cli/Resources/PublishCommandStrings.resx b/src/Aspire.Cli/Resources/PublishCommandStrings.resx index 2c9fd7d80aa..cfb5d1734fd 100644 --- a/src/Aspire.Cli/Resources/PublishCommandStrings.resx +++ b/src/Aspire.Cli/Resources/PublishCommandStrings.resx @@ -118,13 +118,13 @@ System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - Generate deployment artifacts for an apphost. (Preview) + Generate deployment artifacts for an apphost (Preview) Select a publisher: - The path to the Aspire AppHost project file. + The path to the Aspire apphost project file The output path for the generated artifacts. Defaults to './aspire-output' if not specified. @@ -142,6 +142,6 @@ Loading... - Do not build or restore the project before running. + Do not build or restore the project before running \ No newline at end of file diff --git a/src/Aspire.Cli/Resources/ResourceCommandStrings.resx b/src/Aspire.Cli/Resources/ResourceCommandStrings.resx index cc889718167..33f6f642936 100644 --- a/src/Aspire.Cli/Resources/ResourceCommandStrings.resx +++ b/src/Aspire.Cli/Resources/ResourceCommandStrings.resx @@ -62,12 +62,12 @@ connect to - Execute a command on a resource (e.g. start, stop, restart). + Execute a command on a resource (e.g. start, stop, restart) - The name of the resource to execute the command on. + The name of the resource to execute the command on - The name of the command to execute (e.g. start, stop, restart). + The name of the command to execute (e.g. start, stop, restart) diff --git a/src/Aspire.Cli/Resources/RestoreCommandStrings.Designer.cs b/src/Aspire.Cli/Resources/RestoreCommandStrings.Designer.cs index 6b48f09cc91..c8ea4ad07a6 100644 --- a/src/Aspire.Cli/Resources/RestoreCommandStrings.Designer.cs +++ b/src/Aspire.Cli/Resources/RestoreCommandStrings.Designer.cs @@ -1,4 +1,4 @@ -//------------------------------------------------------------------------------ +//------------------------------------------------------------------------------ // // This code was generated by a tool. // Runtime Version:4.0.30319.42000 @@ -61,7 +61,7 @@ internal RestoreCommandStrings() { } /// - /// Looks up a localized string similar to Restore dependencies and generate SDK code for an AppHost project.. + /// Looks up a localized string similar to Restore dependencies and generate SDK code for an apphost project.. /// public static string Description { get { @@ -88,7 +88,7 @@ public static string RestoringSdkCode { } /// - /// Looks up a localized string similar to Unrecognized app host type.. + /// Looks up a localized string similar to Unrecognized apphost type.. /// public static string UnrecognizedAppHostType { get { diff --git a/src/Aspire.Cli/Resources/RestoreCommandStrings.resx b/src/Aspire.Cli/Resources/RestoreCommandStrings.resx index 4a9f505dc1a..5d064608664 100644 --- a/src/Aspire.Cli/Resources/RestoreCommandStrings.resx +++ b/src/Aspire.Cli/Resources/RestoreCommandStrings.resx @@ -118,7 +118,7 @@ System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - Restore dependencies and generate SDK code for an AppHost project. + Restore dependencies and generate SDK code for an apphost Unrecognized app host type. diff --git a/src/Aspire.Cli/Resources/RootCommandStrings.resx b/src/Aspire.Cli/Resources/RootCommandStrings.resx index 606443c7bde..410e3ee740c 100644 --- a/src/Aspire.Cli/Resources/RootCommandStrings.resx +++ b/src/Aspire.Cli/Resources/RootCommandStrings.resx @@ -118,10 +118,10 @@ System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - The Aspire CLI can be used to create, run, and publish Aspire-based applications. + The Aspire CLI can be used to create, run, and publish Aspire-based applications - Display the animated Aspire CLI welcome banner. + Display the animated Aspire CLI welcome banner Welcome to the @@ -130,25 +130,25 @@ CLI — version {0} - Enable debug logging to the console. + Enable debug logging to the console - Set the minimum log level for console output (Trace, Debug, Information, Warning, Error, Critical). + Set the minimum log level for console output (Trace, Debug, Information, Warning, Error, Critical) - Suppress the startup banner and telemetry notice. + Suppress the startup banner and telemetry notice - Wait for a debugger to attach before executing the command. + Wait for a debugger to attach before executing the command - Wait for a debugger to attach before executing the command. + Wait for a debugger to attach before executing the command Waiting for debugger to attach to CLI process ID: {0} - Run the command in non-interactive mode, disabling all interactive prompts and spinners. + Run the command in non-interactive mode, disabling all interactive prompts and spinners Welcome to Aspire! Learn more about Aspire at https://aspire.dev diff --git a/src/Aspire.Cli/Resources/RunCommandStrings.resx b/src/Aspire.Cli/Resources/RunCommandStrings.resx index b9e4bc0045b..a0f835f0d2f 100644 --- a/src/Aspire.Cli/Resources/RunCommandStrings.resx +++ b/src/Aspire.Cli/Resources/RunCommandStrings.resx @@ -118,25 +118,25 @@ System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - Run an Aspire AppHost interactively for development. + Run an Aspire apphost interactively for development - Stop any running instance of the AppHost without prompting. + Stop any running instance of the apphost without prompting - The path to the Aspire AppHost project file. + The path to the Aspire apphost project file - Run the AppHost in the background and exit after it starts. + Run the apphost in the background and exit after it starts - Output format for detached AppHost results. + Output format for detached apphost results - Start project resources in watch mode. + Start project resources in watch mode - Whether to start a debug session, if running in an Aspire Terminal. + Whether to start a debug session, if running in an Aspire Terminal IsCompatibleAppHost is null @@ -212,22 +212,22 @@ Starting Aspire apphost in the background... - AppHost started successfully. + Apphost started successfully. - Failed to start the AppHost. + Failed to start the apphost. Waiting for apphost to start... - AppHost process exited with code {0}. + Apphost process exited with code {0}. - AppHost failed to build. + Apphost failed to build. - Timeout waiting for AppHost to start. + Timeout waiting for apphost to start. Check logs for details: {0} @@ -239,16 +239,16 @@ The --format option can only be used together with --detach. - Run in isolated mode with randomized ports and isolated user secrets, allowing multiple instances to run simultaneously. + Run in isolated mode with randomized ports and isolated user secrets, allowing multiple instances to run simultaneously Copying user secrets for isolated mode... - A running instance of this AppHost was found and will be stopped. To run multiple isolated instances simultaneously, run from different directories such as git worktree directories. + A running instance of this apphost was found and will be stopped. To run multiple isolated instances simultaneously, run from different directories such as git worktree directories. - Do not build or restore the project before running. + Do not build or restore the project before running The --no-build option cannot be used when watch mode is enabled. diff --git a/src/Aspire.Cli/Resources/SecretCommandStrings.Designer.cs b/src/Aspire.Cli/Resources/SecretCommandStrings.Designer.cs index fd61d9d8159..520ac9e5d23 100644 --- a/src/Aspire.Cli/Resources/SecretCommandStrings.Designer.cs +++ b/src/Aspire.Cli/Resources/SecretCommandStrings.Designer.cs @@ -7,18 +7,18 @@ internal static class SecretCommandStrings { private static readonly System.Resources.ResourceManager s_resourceManager = new("Aspire.Cli.Resources.SecretCommandStrings", typeof(SecretCommandStrings).Assembly); - internal static string Description => s_resourceManager.GetString("Description", System.Globalization.CultureInfo.CurrentUICulture) ?? "Manage AppHost user secrets."; - internal static string SetDescription => s_resourceManager.GetString("SetDescription", System.Globalization.CultureInfo.CurrentUICulture) ?? "Set a secret value."; - internal static string GetDescription => s_resourceManager.GetString("GetDescription", System.Globalization.CultureInfo.CurrentUICulture) ?? "Get a secret value."; - internal static string ListDescription => s_resourceManager.GetString("ListDescription", System.Globalization.CultureInfo.CurrentUICulture) ?? "List all secrets."; + internal static string Description => s_resourceManager.GetString("Description", System.Globalization.CultureInfo.CurrentUICulture) ?? "Manage apphost user secrets"; + internal static string SetDescription => s_resourceManager.GetString("SetDescription", System.Globalization.CultureInfo.CurrentUICulture) ?? "Set a secret value"; + internal static string GetDescription => s_resourceManager.GetString("GetDescription", System.Globalization.CultureInfo.CurrentUICulture) ?? "Get a secret value"; + internal static string ListDescription => s_resourceManager.GetString("ListDescription", System.Globalization.CultureInfo.CurrentUICulture) ?? "List all secrets"; internal static string PathDescription => s_resourceManager.GetString("PathDescription", System.Globalization.CultureInfo.CurrentUICulture) ?? "Show the secrets file path."; - internal static string DeleteDescription => s_resourceManager.GetString("DeleteDescription", System.Globalization.CultureInfo.CurrentUICulture) ?? "Delete a secret."; - internal static string KeyArgumentDescription => s_resourceManager.GetString("KeyArgumentDescription", System.Globalization.CultureInfo.CurrentUICulture) ?? "The secret key."; - internal static string KeyRetrieveArgumentDescription => s_resourceManager.GetString("KeyRetrieveArgumentDescription", System.Globalization.CultureInfo.CurrentUICulture) ?? "The secret key to retrieve."; - internal static string KeyDeleteArgumentDescription => s_resourceManager.GetString("KeyDeleteArgumentDescription", System.Globalization.CultureInfo.CurrentUICulture) ?? "The secret key to delete."; - internal static string ValueArgumentDescription => s_resourceManager.GetString("ValueArgumentDescription", System.Globalization.CultureInfo.CurrentUICulture) ?? "The secret value to set."; - internal static string FormatOptionDescription => s_resourceManager.GetString("FormatOptionDescription", System.Globalization.CultureInfo.CurrentUICulture) ?? "Output format."; - internal static string CouldNotFindAppHost => s_resourceManager.GetString("CouldNotFindAppHost", System.Globalization.CultureInfo.CurrentUICulture) ?? "Could not find an AppHost project."; + internal static string DeleteDescription => s_resourceManager.GetString("DeleteDescription", System.Globalization.CultureInfo.CurrentUICulture) ?? "Delete a secret"; + internal static string KeyArgumentDescription => s_resourceManager.GetString("KeyArgumentDescription", System.Globalization.CultureInfo.CurrentUICulture) ?? "The secret key"; + internal static string KeyRetrieveArgumentDescription => s_resourceManager.GetString("KeyRetrieveArgumentDescription", System.Globalization.CultureInfo.CurrentUICulture) ?? "The secret key to retrieve"; + internal static string KeyDeleteArgumentDescription => s_resourceManager.GetString("KeyDeleteArgumentDescription", System.Globalization.CultureInfo.CurrentUICulture) ?? "The secret key to delete"; + internal static string ValueArgumentDescription => s_resourceManager.GetString("ValueArgumentDescription", System.Globalization.CultureInfo.CurrentUICulture) ?? "The secret value to set"; + internal static string FormatOptionDescription => s_resourceManager.GetString("FormatOptionDescription", System.Globalization.CultureInfo.CurrentUICulture) ?? "Output format"; + internal static string CouldNotFindAppHost => s_resourceManager.GetString("CouldNotFindAppHost", System.Globalization.CultureInfo.CurrentUICulture) ?? "Could not find an apphost project."; internal static string SecretNotFound => s_resourceManager.GetString("SecretNotFound", System.Globalization.CultureInfo.CurrentUICulture) ?? "Secret '{0}' not found."; internal static string SecretSetSuccess => s_resourceManager.GetString("SecretSetSuccess", System.Globalization.CultureInfo.CurrentUICulture) ?? "Secret '{0}' set successfully."; internal static string SecretDeleteSuccess => s_resourceManager.GetString("SecretDeleteSuccess", System.Globalization.CultureInfo.CurrentUICulture) ?? "Secret '{0}' deleted successfully."; diff --git a/src/Aspire.Cli/Resources/SecretCommandStrings.resx b/src/Aspire.Cli/Resources/SecretCommandStrings.resx index c5f9b362115..8b7422e5da6 100644 --- a/src/Aspire.Cli/Resources/SecretCommandStrings.resx +++ b/src/Aspire.Cli/Resources/SecretCommandStrings.resx @@ -40,40 +40,40 @@ System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - Manage AppHost user secrets. + Manage apphost user secrets - Set a secret value. + Set a secret value - Get a secret value. + Get a secret value - List all secrets. + List all secrets Show the secrets file path. - Delete a secret. + Delete a secret - The secret key (e.g., Azure:Location or Parameters:postgres-password). + The secret key (e.g., Azure:Location or Parameters:postgres-password) - The secret key to retrieve. + The secret key to retrieve - The secret key to delete. + The secret key to delete - The secret value to set. + The secret value to set - Output format. + Output format - Could not find an AppHost project. + Could not find an apphost project. Secret '{0}' not found. diff --git a/src/Aspire.Cli/Resources/SharedCommandStrings.Designer.cs b/src/Aspire.Cli/Resources/SharedCommandStrings.Designer.cs index ab35e84944e..2e51d0c0f4f 100644 --- a/src/Aspire.Cli/Resources/SharedCommandStrings.Designer.cs +++ b/src/Aspire.Cli/Resources/SharedCommandStrings.Designer.cs @@ -104,5 +104,23 @@ internal static string PromptRunAgentInit { return ResourceManager.GetString("PromptRunAgentInit", resourceCulture); } } + + internal static string PipelineLogLevelOptionDescription { + get { + return ResourceManager.GetString("PipelineLogLevelOptionDescription", resourceCulture); + } + } + + internal static string PipelineIncludeExceptionDetailsOptionDescription { + get { + return ResourceManager.GetString("PipelineIncludeExceptionDetailsOptionDescription", resourceCulture); + } + } + + internal static string PipelineEnvironmentOptionDescription { + get { + return ResourceManager.GetString("PipelineEnvironmentOptionDescription", resourceCulture); + } + } } } diff --git a/src/Aspire.Cli/Resources/SharedCommandStrings.resx b/src/Aspire.Cli/Resources/SharedCommandStrings.resx index f8989e30e0e..8c70d0f578e 100644 --- a/src/Aspire.Cli/Resources/SharedCommandStrings.resx +++ b/src/Aspire.Cli/Resources/SharedCommandStrings.resx @@ -118,33 +118,42 @@ System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - Scanning for running AppHosts... + Scanning for running apphosts... - Select an AppHost to {0}: + Select an apphost to {0}: - No running AppHosts found in the current directory. Select from all running AppHosts. + No running apphosts found in the current directory. Select from all running apphosts. - No running AppHost found. Use 'aspire run' to start one first. + No running apphost found. Use 'aspire run' to start one first. - The path to the Aspire AppHost project file. + The path to the Aspire apphost project file - Output format for detached AppHost results. + Output format for detached apphost results - Run in isolated mode with randomized ports and isolated user secrets, allowing multiple instances to run simultaneously. + Run in isolated mode with randomized ports and isolated user secrets, allowing multiple instances to run simultaneously - Using AppHost: {0} + Using apphost: {0} - Multiple running AppHosts found in the current directory. Select from running AppHosts. + Multiple running apphosts found in the current directory. Select from running apphosts. Would you like to configure AI agent environments for this project? + + Set the minimum log level for pipeline logging (trace, debug, information, warning, error, critical). The default is 'information'. + + + Include exception details (stack traces) in pipeline logs + + + The environment to use for the operation. The default is 'Production'. + diff --git a/src/Aspire.Cli/Resources/StartCommandStrings.resx b/src/Aspire.Cli/Resources/StartCommandStrings.resx index adc1fd53064..a4a2488be20 100644 --- a/src/Aspire.Cli/Resources/StartCommandStrings.resx +++ b/src/Aspire.Cli/Resources/StartCommandStrings.resx @@ -59,6 +59,6 @@ System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - Start an apphost in the background. + Start an apphost in the background diff --git a/src/Aspire.Cli/Resources/StopCommandStrings.resx b/src/Aspire.Cli/Resources/StopCommandStrings.resx index ac2fed6a225..1375ae92c20 100644 --- a/src/Aspire.Cli/Resources/StopCommandStrings.resx +++ b/src/Aspire.Cli/Resources/StopCommandStrings.resx @@ -118,31 +118,31 @@ System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - Stop a running apphost. + Stop a running apphost - The path to the Aspire AppHost project file. + The path to the Aspire apphost project file Stopping Aspire apphost... - AppHost stopped successfully. + Apphost stopped successfully. - Multiple AppHosts are running. Use --apphost to specify which one to stop, or select one: + Multiple apphosts are running. Use --apphost to specify which one to stop, or select one: - Failed to stop the AppHost. + Failed to stop the apphost. stop - Stop all running AppHosts. + Stop all running apphosts - Multiple AppHosts are running. Use {0} to specify which one to stop, or use {1} to stop all of them. + Multiple apphosts are running. Use {0} to specify which one to stop, or use {1} to stop all of them. The {0} and {1} options cannot be used together. diff --git a/src/Aspire.Cli/Resources/TelemetryCommandStrings.Designer.cs b/src/Aspire.Cli/Resources/TelemetryCommandStrings.Designer.cs index 2a1d5ff5f91..0b3a98e079c 100644 --- a/src/Aspire.Cli/Resources/TelemetryCommandStrings.Designer.cs +++ b/src/Aspire.Cli/Resources/TelemetryCommandStrings.Designer.cs @@ -178,7 +178,7 @@ internal static string LimitMustBePositive { } /// - /// Looks up a localized string similar to Dashboard API is not available. Ensure the AppHost is running with Dashboard enabled.. + /// Looks up a localized string similar to Dashboard API is not available. Ensure the apphost is running with Dashboard enabled.. /// internal static string DashboardApiNotAvailable { get { diff --git a/src/Aspire.Cli/Resources/TelemetryCommandStrings.resx b/src/Aspire.Cli/Resources/TelemetryCommandStrings.resx index fc786ed33df..e280daac87c 100644 --- a/src/Aspire.Cli/Resources/TelemetryCommandStrings.resx +++ b/src/Aspire.Cli/Resources/TelemetryCommandStrings.resx @@ -118,46 +118,46 @@ System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - View OpenTelemetry data (logs, spans, traces) from a running apphost. + View OpenTelemetry data (logs, spans, traces) from a running apphost - View structured logs from the Dashboard telemetry API. + View structured logs from the Dashboard telemetry API - View spans from the Dashboard telemetry API. + View spans from the Dashboard telemetry API - View traces from the Dashboard telemetry API. + View traces from the Dashboard telemetry API - Filter by resource name. + Filter by resource name - Stream telemetry in real-time as it arrives. + Stream telemetry in real-time as it arrives - Output format (Table or Json). + Output format (Table or Json) - Maximum number of items to return. + Maximum number of items to return - Filter by trace ID. + Filter by trace ID The trace ID to view. If not specified, lists all traces. - Filter logs by minimum severity (Trace, Debug, Information, Warning, Error, Critical). + Filter logs by minimum severity (Trace, Debug, Information, Warning, Error, Critical) - Filter by error status (true to show only errors, false to exclude errors). + Filter by error status (true to show only errors, false to exclude errors) The --limit value must be a positive number. - Dashboard API is not available. Ensure the AppHost is running with Dashboard enabled. + Dashboard API is not available. Ensure the apphost is running with Dashboard enabled. Failed to fetch telemetry: {0} diff --git a/src/Aspire.Cli/Resources/TemplatingStrings.Designer.cs b/src/Aspire.Cli/Resources/TemplatingStrings.Designer.cs index 4bc7324fd51..ebdaf46dd79 100644 --- a/src/Aspire.Cli/Resources/TemplatingStrings.Designer.cs +++ b/src/Aspire.Cli/Resources/TemplatingStrings.Designer.cs @@ -439,7 +439,7 @@ public static string UsingProjectTemplatesVersion { } /// - /// Looks up a localized string similar to Run 'cd "{0}"' and then 'aspire run' to start your AppHost.. + /// Looks up a localized string similar to Run 'cd "{0}"' and then 'aspire run' to start your apphost.. /// public static string RunCdThenAspireRun { get { @@ -448,7 +448,7 @@ public static string RunCdThenAspireRun { } /// - /// Looks up a localized string similar to Run 'aspire run' to start your AppHost.. + /// Looks up a localized string similar to Run 'aspire run' to start your apphost.. /// public static string RunAspireRun { get { diff --git a/src/Aspire.Cli/Resources/TemplatingStrings.resx b/src/Aspire.Cli/Resources/TemplatingStrings.resx index 6111849cee3..9e9488cfa20 100644 --- a/src/Aspire.Cli/Resources/TemplatingStrings.resx +++ b/src/Aspire.Cli/Resources/TemplatingStrings.resx @@ -251,10 +251,10 @@ Configures whether to use *.dev.localhost URLs for local development. - Run 'cd "{0}"' and then 'aspire run' to start your AppHost. + Run 'cd "{0}"' and then 'aspire run' to start your apphost. {0} is the relative path to the project directory - Run 'aspire run' to start your AppHost. + Run 'aspire run' to start your apphost. diff --git a/src/Aspire.Cli/Resources/UpdateCommandStrings.Designer.cs b/src/Aspire.Cli/Resources/UpdateCommandStrings.Designer.cs index 2c608fb89cb..fd4c0c24794 100644 --- a/src/Aspire.Cli/Resources/UpdateCommandStrings.Designer.cs +++ b/src/Aspire.Cli/Resources/UpdateCommandStrings.Designer.cs @@ -59,7 +59,7 @@ internal static string Description { } /// - /// Looks up a localized string similar to The path to the Aspire AppHost project file. + /// Looks up a localized string similar to The path to the Aspire apphost project file. /// internal static string ProjectArgumentDescription { get { @@ -115,5 +115,6 @@ internal static string ProjectArgumentDescription { internal static string ExtractedNewCli => ResourceManager.GetString("ExtractedNewCli", resourceCulture); internal static string RegeneratingSdkCode => ResourceManager.GetString("RegeneratingSdkCode", resourceCulture); internal static string RegeneratedSdkCode => ResourceManager.GetString("RegeneratedSdkCode", resourceCulture); + internal static string SelfOptionDescription => ResourceManager.GetString("SelfOptionDescription", resourceCulture); } } diff --git a/src/Aspire.Cli/Resources/UpdateCommandStrings.resx b/src/Aspire.Cli/Resources/UpdateCommandStrings.resx index 458f75175c9..27afa3a4b68 100644 --- a/src/Aspire.Cli/Resources/UpdateCommandStrings.resx +++ b/src/Aspire.Cli/Resources/UpdateCommandStrings.resx @@ -13,10 +13,10 @@ System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - Update integrations in the Aspire project. (Preview) + Update integrations in the Aspire project (Preview) - The path to the Aspire AppHost project file. + The path to the Aspire apphost project file Select a channel: @@ -40,10 +40,10 @@ Update successful! - Analyze App Host + Analyze apphost - Analyze App Host SDK + Analyze apphost SDK Analyze project: {0} @@ -112,10 +112,10 @@ Mapping: {0} - Note: Update plan generated using fallback parsing due to unresolvable AppHost SDK. Dependency analysis may have reduced accuracy. + Note: Update plan generated using fallback parsing due to unresolvable apphost SDK. Dependency analysis may have reduced accuracy. - No Aspire AppHost project found. Would you like to update the Aspire CLI instead? + No Aspire apphost project found. Would you like to update the Aspire CLI instead? An update is available for the Aspire CLI. Would you like to update it now? @@ -162,4 +162,7 @@ Regenerated SDK code with updated packages. + + Update the Aspire CLI itself to the latest version + diff --git a/src/Aspire.Cli/Resources/WaitCommandStrings.resx b/src/Aspire.Cli/Resources/WaitCommandStrings.resx index 416a19bacca..7c4b06e14b5 100644 --- a/src/Aspire.Cli/Resources/WaitCommandStrings.resx +++ b/src/Aspire.Cli/Resources/WaitCommandStrings.resx @@ -118,10 +118,10 @@ System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - Wait for a resource to reach a target status. + Wait for a resource to reach a target status - The name of the resource to wait for. + The name of the resource to wait for The target status to wait for (healthy, up, down). Defaults to healthy. diff --git a/src/Aspire.Cli/Resources/xlf/AddCommandStrings.cs.xlf b/src/Aspire.Cli/Resources/xlf/AddCommandStrings.cs.xlf index bb24461c342..9bde8d0a1eb 100644 --- a/src/Aspire.Cli/Resources/xlf/AddCommandStrings.cs.xlf +++ b/src/Aspire.Cli/Resources/xlf/AddCommandStrings.cs.xlf @@ -8,7 +8,7 @@ - Add a hosting integration to the apphost. + Add a hosting integration to the apphost Přidejte do hostitele aplikací Aspire integraci hostování. @@ -18,8 +18,8 @@ - The name of the integration to add (e.g. redis, postgres). - Název integrace, která se má přidat (např. redis, postgres). + The name of the integration to add (e.g. redis, postgres) + Název integrace, která se má přidat (např. redis, postgres). @@ -48,7 +48,7 @@ {0} is a number, {1} is the log file path - The path to the Aspire AppHost project file to add the integration to. + The path to the Aspire apphost project file to add the integration to Cesta k souboru projektu, do které se má integrace přidat @@ -68,17 +68,17 @@ - The NuGet source to use for the integration. - Zdroj NuGet, který se má použít pro integraci + The NuGet source to use for the integration + Zdroj NuGet, který se má použít pro integraci - Stopped a running Aspire AppHost instance to allow package modification. - Stopped a running Aspire AppHost instance to allow package modification. + Stopped a running Aspire apphost instance to allow package modification. + Stopped a running Aspire apphost instance to allow package modification. - Unable to stop one or more running Aspire AppHost instances. Please stop the application and try again. - Unable to stop one or more running Aspire AppHost instances. Please stop the application and try again. + Unable to stop one or more running Aspire apphost instances. Please stop the application and try again. + Unable to stop one or more running Aspire apphost instances. Please stop the application and try again. @@ -92,8 +92,8 @@ - The version of the integration to add. - Verze integrace, která se má přidat + The version of the integration to add + Verze integrace, která se má přidat diff --git a/src/Aspire.Cli/Resources/xlf/AddCommandStrings.de.xlf b/src/Aspire.Cli/Resources/xlf/AddCommandStrings.de.xlf index d78167fb247..abb3221a105 100644 --- a/src/Aspire.Cli/Resources/xlf/AddCommandStrings.de.xlf +++ b/src/Aspire.Cli/Resources/xlf/AddCommandStrings.de.xlf @@ -8,7 +8,7 @@ - Add a hosting integration to the apphost. + Add a hosting integration to the apphost Fügen Sie dem Aspire AppHost eine Hosting-Integration hinzu. @@ -18,8 +18,8 @@ - The name of the integration to add (e.g. redis, postgres). - Der Name der Integration, die Sie hinzufügen möchten (z. B. redis, postgres). + The name of the integration to add (e.g. redis, postgres) + Der Name der Integration, die Sie hinzufügen möchten (z. B. redis, postgres). @@ -48,7 +48,7 @@ {0} is a number, {1} is the log file path - The path to the Aspire AppHost project file to add the integration to. + The path to the Aspire apphost project file to add the integration to Der Pfad zur Projektdatei, der die Integration hinzugefügt werden soll. @@ -68,17 +68,17 @@ - The NuGet source to use for the integration. - Die NuGet-Quelle, die für die Integration verwendet werden soll. + The NuGet source to use for the integration + Die NuGet-Quelle, die für die Integration verwendet werden soll. - Stopped a running Aspire AppHost instance to allow package modification. - Stopped a running Aspire AppHost instance to allow package modification. + Stopped a running Aspire apphost instance to allow package modification. + Stopped a running Aspire apphost instance to allow package modification. - Unable to stop one or more running Aspire AppHost instances. Please stop the application and try again. - Unable to stop one or more running Aspire AppHost instances. Please stop the application and try again. + Unable to stop one or more running Aspire apphost instances. Please stop the application and try again. + Unable to stop one or more running Aspire apphost instances. Please stop the application and try again. @@ -92,8 +92,8 @@ - The version of the integration to add. - Die Version der Integration, die Sie hinzufügen möchten. + The version of the integration to add + Die Version der Integration, die Sie hinzufügen möchten. diff --git a/src/Aspire.Cli/Resources/xlf/AddCommandStrings.es.xlf b/src/Aspire.Cli/Resources/xlf/AddCommandStrings.es.xlf index e338b59f460..74bc941eadb 100644 --- a/src/Aspire.Cli/Resources/xlf/AddCommandStrings.es.xlf +++ b/src/Aspire.Cli/Resources/xlf/AddCommandStrings.es.xlf @@ -8,7 +8,7 @@ - Add a hosting integration to the apphost. + Add a hosting integration to the apphost Agregue una integración de hospedaje a Aspire AppHost. @@ -18,8 +18,8 @@ - The name of the integration to add (e.g. redis, postgres). - El nombre de la integración que se va a agregar (por ejemplo, redis, postgres). + The name of the integration to add (e.g. redis, postgres) + El nombre de la integración que se va a agregar (por ejemplo, redis, postgres). @@ -48,7 +48,7 @@ {0} is a number, {1} is the log file path - The path to the Aspire AppHost project file to add the integration to. + The path to the Aspire apphost project file to add the integration to La ruta al archivo del proyecto al que se agregará la integración. @@ -68,17 +68,17 @@ - The NuGet source to use for the integration. - El origen de NuGet que se utilizará para la integración. + The NuGet source to use for the integration + El origen de NuGet que se utilizará para la integración. - Stopped a running Aspire AppHost instance to allow package modification. - Stopped a running Aspire AppHost instance to allow package modification. + Stopped a running Aspire apphost instance to allow package modification. + Stopped a running Aspire apphost instance to allow package modification. - Unable to stop one or more running Aspire AppHost instances. Please stop the application and try again. - Unable to stop one or more running Aspire AppHost instances. Please stop the application and try again. + Unable to stop one or more running Aspire apphost instances. Please stop the application and try again. + Unable to stop one or more running Aspire apphost instances. Please stop the application and try again. @@ -92,8 +92,8 @@ - The version of the integration to add. - La versión de la integración que se va a agregar. + The version of the integration to add + La versión de la integración que se va a agregar. diff --git a/src/Aspire.Cli/Resources/xlf/AddCommandStrings.fr.xlf b/src/Aspire.Cli/Resources/xlf/AddCommandStrings.fr.xlf index 5571a70a18b..2b26de23a8f 100644 --- a/src/Aspire.Cli/Resources/xlf/AddCommandStrings.fr.xlf +++ b/src/Aspire.Cli/Resources/xlf/AddCommandStrings.fr.xlf @@ -8,7 +8,7 @@ - Add a hosting integration to the apphost. + Add a hosting integration to the apphost Ajoutez une intégration d’hébergement à l’Aspire AppHost. @@ -18,8 +18,8 @@ - The name of the integration to add (e.g. redis, postgres). - Nom de l’intégration à ajouter (par exemple, redis, postgres). + The name of the integration to add (e.g. redis, postgres) + Nom de l’intégration à ajouter (par exemple, redis, postgres). @@ -48,7 +48,7 @@ {0} is a number, {1} is the log file path - The path to the Aspire AppHost project file to add the integration to. + The path to the Aspire apphost project file to add the integration to Chemin du fichier projet auquel ajouter l’intégration. @@ -68,17 +68,17 @@ - The NuGet source to use for the integration. - Source NuGet à utiliser pour l’intégration. + The NuGet source to use for the integration + Source NuGet à utiliser pour l’intégration. - Stopped a running Aspire AppHost instance to allow package modification. - Stopped a running Aspire AppHost instance to allow package modification. + Stopped a running Aspire apphost instance to allow package modification. + Stopped a running Aspire apphost instance to allow package modification. - Unable to stop one or more running Aspire AppHost instances. Please stop the application and try again. - Unable to stop one or more running Aspire AppHost instances. Please stop the application and try again. + Unable to stop one or more running Aspire apphost instances. Please stop the application and try again. + Unable to stop one or more running Aspire apphost instances. Please stop the application and try again. @@ -92,8 +92,8 @@ - The version of the integration to add. - Version de l’intégration à ajouter. + The version of the integration to add + Version de l’intégration à ajouter. diff --git a/src/Aspire.Cli/Resources/xlf/AddCommandStrings.it.xlf b/src/Aspire.Cli/Resources/xlf/AddCommandStrings.it.xlf index c3247c18f84..af084f95fc7 100644 --- a/src/Aspire.Cli/Resources/xlf/AddCommandStrings.it.xlf +++ b/src/Aspire.Cli/Resources/xlf/AddCommandStrings.it.xlf @@ -8,7 +8,7 @@ - Add a hosting integration to the apphost. + Add a hosting integration to the apphost Aggiungere un'integrazione di hosting all'AppHost Aspire. @@ -18,8 +18,8 @@ - The name of the integration to add (e.g. redis, postgres). - Nome dell'integrazione da aggiungere, (ad esempio redis, postgres). + The name of the integration to add (e.g. redis, postgres) + Nome dell'integrazione da aggiungere, (ad esempio redis, postgres). @@ -48,7 +48,7 @@ {0} is a number, {1} is the log file path - The path to the Aspire AppHost project file to add the integration to. + The path to the Aspire apphost project file to add the integration to Percorso del file di progetto a cui aggiungere l'integrazione. @@ -68,17 +68,17 @@ - The NuGet source to use for the integration. - Origine NuGet da usare per l'integrazione. + The NuGet source to use for the integration + Origine NuGet da usare per l'integrazione. - Stopped a running Aspire AppHost instance to allow package modification. - Stopped a running Aspire AppHost instance to allow package modification. + Stopped a running Aspire apphost instance to allow package modification. + Stopped a running Aspire apphost instance to allow package modification. - Unable to stop one or more running Aspire AppHost instances. Please stop the application and try again. - Unable to stop one or more running Aspire AppHost instances. Please stop the application and try again. + Unable to stop one or more running Aspire apphost instances. Please stop the application and try again. + Unable to stop one or more running Aspire apphost instances. Please stop the application and try again. @@ -92,8 +92,8 @@ - The version of the integration to add. - Versione dell'integrazione da aggiungere. + The version of the integration to add + Versione dell'integrazione da aggiungere. diff --git a/src/Aspire.Cli/Resources/xlf/AddCommandStrings.ja.xlf b/src/Aspire.Cli/Resources/xlf/AddCommandStrings.ja.xlf index 90add5ffb24..98ee024d26d 100644 --- a/src/Aspire.Cli/Resources/xlf/AddCommandStrings.ja.xlf +++ b/src/Aspire.Cli/Resources/xlf/AddCommandStrings.ja.xlf @@ -8,7 +8,7 @@ - Add a hosting integration to the apphost. + Add a hosting integration to the apphost Aspire AppHost にホスティング統合を追加します。 @@ -18,8 +18,8 @@ - The name of the integration to add (e.g. redis, postgres). - 追加する統合の名前 (例: redis、postgres)。 + The name of the integration to add (e.g. redis, postgres) + 追加する統合の名前 (例: redis、postgres)。 @@ -48,7 +48,7 @@ {0} is a number, {1} is the log file path - The path to the Aspire AppHost project file to add the integration to. + The path to the Aspire apphost project file to add the integration to 統合を追加するプロジェクト ファイルへのパス。 @@ -68,17 +68,17 @@ - The NuGet source to use for the integration. - 統合に使用する NuGet ソース。 + The NuGet source to use for the integration + 統合に使用する NuGet ソース。 - Stopped a running Aspire AppHost instance to allow package modification. - Stopped a running Aspire AppHost instance to allow package modification. + Stopped a running Aspire apphost instance to allow package modification. + Stopped a running Aspire apphost instance to allow package modification. - Unable to stop one or more running Aspire AppHost instances. Please stop the application and try again. - Unable to stop one or more running Aspire AppHost instances. Please stop the application and try again. + Unable to stop one or more running Aspire apphost instances. Please stop the application and try again. + Unable to stop one or more running Aspire apphost instances. Please stop the application and try again. @@ -92,8 +92,8 @@ - The version of the integration to add. - 追加する統合のバージョン。 + The version of the integration to add + 追加する統合のバージョン。 diff --git a/src/Aspire.Cli/Resources/xlf/AddCommandStrings.ko.xlf b/src/Aspire.Cli/Resources/xlf/AddCommandStrings.ko.xlf index 1c03456afca..a2154b21a1e 100644 --- a/src/Aspire.Cli/Resources/xlf/AddCommandStrings.ko.xlf +++ b/src/Aspire.Cli/Resources/xlf/AddCommandStrings.ko.xlf @@ -8,7 +8,7 @@ - Add a hosting integration to the apphost. + Add a hosting integration to the apphost Aspire AppHost에 호스팅 통합을 추가하세요. @@ -18,8 +18,8 @@ - The name of the integration to add (e.g. redis, postgres). - 추가할 통합의 이름(예: redis, postgres)입니다. + The name of the integration to add (e.g. redis, postgres) + 추가할 통합의 이름(예: redis, postgres)입니다. @@ -48,7 +48,7 @@ {0} is a number, {1} is the log file path - The path to the Aspire AppHost project file to add the integration to. + The path to the Aspire apphost project file to add the integration to 통합을 추가할 프로젝트 파일의 경로입니다. @@ -68,17 +68,17 @@ - The NuGet source to use for the integration. - 통합에 사용할 NuGet 원본입니다. + The NuGet source to use for the integration + 통합에 사용할 NuGet 원본입니다. - Stopped a running Aspire AppHost instance to allow package modification. - Stopped a running Aspire AppHost instance to allow package modification. + Stopped a running Aspire apphost instance to allow package modification. + Stopped a running Aspire apphost instance to allow package modification. - Unable to stop one or more running Aspire AppHost instances. Please stop the application and try again. - Unable to stop one or more running Aspire AppHost instances. Please stop the application and try again. + Unable to stop one or more running Aspire apphost instances. Please stop the application and try again. + Unable to stop one or more running Aspire apphost instances. Please stop the application and try again. @@ -92,8 +92,8 @@ - The version of the integration to add. - 추가할 통합의 버전입니다. + The version of the integration to add + 추가할 통합의 버전입니다. diff --git a/src/Aspire.Cli/Resources/xlf/AddCommandStrings.pl.xlf b/src/Aspire.Cli/Resources/xlf/AddCommandStrings.pl.xlf index 54c15d16df9..11334ab3975 100644 --- a/src/Aspire.Cli/Resources/xlf/AddCommandStrings.pl.xlf +++ b/src/Aspire.Cli/Resources/xlf/AddCommandStrings.pl.xlf @@ -8,7 +8,7 @@ - Add a hosting integration to the apphost. + Add a hosting integration to the apphost Dodaj integrację hostingu do hosta AppHost platformy Aspire. @@ -18,8 +18,8 @@ - The name of the integration to add (e.g. redis, postgres). - Nazwa integracji do dodania (np. redis, postgres). + The name of the integration to add (e.g. redis, postgres) + Nazwa integracji do dodania (np. redis, postgres). @@ -48,7 +48,7 @@ {0} is a number, {1} is the log file path - The path to the Aspire AppHost project file to add the integration to. + The path to the Aspire apphost project file to add the integration to Ścieżka do pliku projektu, do którego ma zostać dodana integracja. @@ -68,17 +68,17 @@ - The NuGet source to use for the integration. - Źródło NuGet do użycia na potrzeby integracji. + The NuGet source to use for the integration + Źródło NuGet do użycia na potrzeby integracji. - Stopped a running Aspire AppHost instance to allow package modification. - Stopped a running Aspire AppHost instance to allow package modification. + Stopped a running Aspire apphost instance to allow package modification. + Stopped a running Aspire apphost instance to allow package modification. - Unable to stop one or more running Aspire AppHost instances. Please stop the application and try again. - Unable to stop one or more running Aspire AppHost instances. Please stop the application and try again. + Unable to stop one or more running Aspire apphost instances. Please stop the application and try again. + Unable to stop one or more running Aspire apphost instances. Please stop the application and try again. @@ -92,8 +92,8 @@ - The version of the integration to add. - Wersja integracji do dodania. + The version of the integration to add + Wersja integracji do dodania. diff --git a/src/Aspire.Cli/Resources/xlf/AddCommandStrings.pt-BR.xlf b/src/Aspire.Cli/Resources/xlf/AddCommandStrings.pt-BR.xlf index 5ef5e738086..c9dcadf2008 100644 --- a/src/Aspire.Cli/Resources/xlf/AddCommandStrings.pt-BR.xlf +++ b/src/Aspire.Cli/Resources/xlf/AddCommandStrings.pt-BR.xlf @@ -8,7 +8,7 @@ - Add a hosting integration to the apphost. + Add a hosting integration to the apphost Adicione uma integração de hosting ao Aspire AppHost. @@ -18,8 +18,8 @@ - The name of the integration to add (e.g. redis, postgres). - O nome da integração a ser adicionada (por exemplo, redis, postgres). + The name of the integration to add (e.g. redis, postgres) + O nome da integração a ser adicionada (por exemplo, redis, postgres). @@ -48,7 +48,7 @@ {0} is a number, {1} is the log file path - The path to the Aspire AppHost project file to add the integration to. + The path to the Aspire apphost project file to add the integration to O caminho para o arquivo de projeto ao qual adicionar a integração. @@ -68,17 +68,17 @@ - The NuGet source to use for the integration. - A fonte do NuGet a ser usada para a integração. + The NuGet source to use for the integration + A fonte do NuGet a ser usada para a integração. - Stopped a running Aspire AppHost instance to allow package modification. - Stopped a running Aspire AppHost instance to allow package modification. + Stopped a running Aspire apphost instance to allow package modification. + Stopped a running Aspire apphost instance to allow package modification. - Unable to stop one or more running Aspire AppHost instances. Please stop the application and try again. - Unable to stop one or more running Aspire AppHost instances. Please stop the application and try again. + Unable to stop one or more running Aspire apphost instances. Please stop the application and try again. + Unable to stop one or more running Aspire apphost instances. Please stop the application and try again. @@ -92,8 +92,8 @@ - The version of the integration to add. - A versão da integração a ser adicionada. + The version of the integration to add + A versão da integração a ser adicionada. diff --git a/src/Aspire.Cli/Resources/xlf/AddCommandStrings.ru.xlf b/src/Aspire.Cli/Resources/xlf/AddCommandStrings.ru.xlf index e245c37f520..103198ae5b5 100644 --- a/src/Aspire.Cli/Resources/xlf/AddCommandStrings.ru.xlf +++ b/src/Aspire.Cli/Resources/xlf/AddCommandStrings.ru.xlf @@ -8,7 +8,7 @@ - Add a hosting integration to the apphost. + Add a hosting integration to the apphost Добавьте интеграцию размещения в Aspire AppHost. @@ -18,8 +18,8 @@ - The name of the integration to add (e.g. redis, postgres). - Имя интеграции для добавления (например, redis, postgres). + The name of the integration to add (e.g. redis, postgres) + Имя интеграции для добавления (например, redis, postgres). @@ -48,7 +48,7 @@ {0} is a number, {1} is the log file path - The path to the Aspire AppHost project file to add the integration to. + The path to the Aspire apphost project file to add the integration to Путь к файлу проекта, в который необходимо добавить интеграцию. @@ -68,17 +68,17 @@ - The NuGet source to use for the integration. - Источник NuGet, который следует использовать для интеграции. + The NuGet source to use for the integration + Источник NuGet, который следует использовать для интеграции. - Stopped a running Aspire AppHost instance to allow package modification. - Stopped a running Aspire AppHost instance to allow package modification. + Stopped a running Aspire apphost instance to allow package modification. + Stopped a running Aspire apphost instance to allow package modification. - Unable to stop one or more running Aspire AppHost instances. Please stop the application and try again. - Unable to stop one or more running Aspire AppHost instances. Please stop the application and try again. + Unable to stop one or more running Aspire apphost instances. Please stop the application and try again. + Unable to stop one or more running Aspire apphost instances. Please stop the application and try again. @@ -92,8 +92,8 @@ - The version of the integration to add. - Версия интеграции для добавления. + The version of the integration to add + Версия интеграции для добавления. diff --git a/src/Aspire.Cli/Resources/xlf/AddCommandStrings.tr.xlf b/src/Aspire.Cli/Resources/xlf/AddCommandStrings.tr.xlf index 3b2e6350c61..b425207cd75 100644 --- a/src/Aspire.Cli/Resources/xlf/AddCommandStrings.tr.xlf +++ b/src/Aspire.Cli/Resources/xlf/AddCommandStrings.tr.xlf @@ -8,7 +8,7 @@ - Add a hosting integration to the apphost. + Add a hosting integration to the apphost Aspire AppHost'a bir barındırma tümleştirmesi ekleyin. @@ -18,8 +18,8 @@ - The name of the integration to add (e.g. redis, postgres). - Eklenecek tümleştirmenin adı (ör. redis, postgres). + The name of the integration to add (e.g. redis, postgres) + Eklenecek tümleştirmenin adı (ör. redis, postgres). @@ -48,7 +48,7 @@ {0} is a number, {1} is the log file path - The path to the Aspire AppHost project file to add the integration to. + The path to the Aspire apphost project file to add the integration to Tümleştirmenin ekleneceği proje dosyasının yolu. @@ -68,17 +68,17 @@ - The NuGet source to use for the integration. - Tümleştirme için kullanılacak NuGet kaynağı. + The NuGet source to use for the integration + Tümleştirme için kullanılacak NuGet kaynağı. - Stopped a running Aspire AppHost instance to allow package modification. - Stopped a running Aspire AppHost instance to allow package modification. + Stopped a running Aspire apphost instance to allow package modification. + Stopped a running Aspire apphost instance to allow package modification. - Unable to stop one or more running Aspire AppHost instances. Please stop the application and try again. - Unable to stop one or more running Aspire AppHost instances. Please stop the application and try again. + Unable to stop one or more running Aspire apphost instances. Please stop the application and try again. + Unable to stop one or more running Aspire apphost instances. Please stop the application and try again. @@ -92,8 +92,8 @@ - The version of the integration to add. - Eklenecek tümleştirmenin sürümü. + The version of the integration to add + Eklenecek tümleştirmenin sürümü. diff --git a/src/Aspire.Cli/Resources/xlf/AddCommandStrings.zh-Hans.xlf b/src/Aspire.Cli/Resources/xlf/AddCommandStrings.zh-Hans.xlf index 563019e9b67..cbfea71ec07 100644 --- a/src/Aspire.Cli/Resources/xlf/AddCommandStrings.zh-Hans.xlf +++ b/src/Aspire.Cli/Resources/xlf/AddCommandStrings.zh-Hans.xlf @@ -8,7 +8,7 @@ - Add a hosting integration to the apphost. + Add a hosting integration to the apphost 将托管集成添加到 Aspire AppHost。 @@ -18,8 +18,8 @@ - The name of the integration to add (e.g. redis, postgres). - 要添加的集成的名称(例如 redis、postgres)。 + The name of the integration to add (e.g. redis, postgres) + 要添加的集成的名称(例如 redis、postgres)。 @@ -48,7 +48,7 @@ {0} is a number, {1} is the log file path - The path to the Aspire AppHost project file to add the integration to. + The path to the Aspire apphost project file to add the integration to 要将集成添加到的项目文件的路径。 @@ -68,17 +68,17 @@ - The NuGet source to use for the integration. - 用于集成的 NuGet 源。 + The NuGet source to use for the integration + 用于集成的 NuGet 源。 - Stopped a running Aspire AppHost instance to allow package modification. - Stopped a running Aspire AppHost instance to allow package modification. + Stopped a running Aspire apphost instance to allow package modification. + Stopped a running Aspire apphost instance to allow package modification. - Unable to stop one or more running Aspire AppHost instances. Please stop the application and try again. - Unable to stop one or more running Aspire AppHost instances. Please stop the application and try again. + Unable to stop one or more running Aspire apphost instances. Please stop the application and try again. + Unable to stop one or more running Aspire apphost instances. Please stop the application and try again. @@ -92,8 +92,8 @@ - The version of the integration to add. - 要添加的集成的版本。 + The version of the integration to add + 要添加的集成的版本。 diff --git a/src/Aspire.Cli/Resources/xlf/AddCommandStrings.zh-Hant.xlf b/src/Aspire.Cli/Resources/xlf/AddCommandStrings.zh-Hant.xlf index 1a196dee737..7a64417fccb 100644 --- a/src/Aspire.Cli/Resources/xlf/AddCommandStrings.zh-Hant.xlf +++ b/src/Aspire.Cli/Resources/xlf/AddCommandStrings.zh-Hant.xlf @@ -8,7 +8,7 @@ - Add a hosting integration to the apphost. + Add a hosting integration to the apphost 將主機整合新增到 Aspire AppHost。 @@ -18,8 +18,8 @@ - The name of the integration to add (e.g. redis, postgres). - 要新增的整合名稱 (例如 redis、postgres)。 + The name of the integration to add (e.g. redis, postgres) + 要新增的整合名稱 (例如 redis、postgres)。 @@ -48,7 +48,7 @@ {0} is a number, {1} is the log file path - The path to the Aspire AppHost project file to add the integration to. + The path to the Aspire apphost project file to add the integration to 要新增整合的專案檔路徑。 @@ -68,17 +68,17 @@ - The NuGet source to use for the integration. - 用於整合的 NuGet 來源。 + The NuGet source to use for the integration + 用於整合的 NuGet 來源。 - Stopped a running Aspire AppHost instance to allow package modification. - Stopped a running Aspire AppHost instance to allow package modification. + Stopped a running Aspire apphost instance to allow package modification. + Stopped a running Aspire apphost instance to allow package modification. - Unable to stop one or more running Aspire AppHost instances. Please stop the application and try again. - Unable to stop one or more running Aspire AppHost instances. Please stop the application and try again. + Unable to stop one or more running Aspire apphost instances. Please stop the application and try again. + Unable to stop one or more running Aspire apphost instances. Please stop the application and try again. @@ -92,8 +92,8 @@ - The version of the integration to add. - 要新增的整合版本。 + The version of the integration to add + 要新增的整合版本。 diff --git a/src/Aspire.Cli/Resources/xlf/AgentCommandStrings.cs.xlf b/src/Aspire.Cli/Resources/xlf/AgentCommandStrings.cs.xlf index 04973482f71..7f707e03c67 100644 --- a/src/Aspire.Cli/Resources/xlf/AgentCommandStrings.cs.xlf +++ b/src/Aspire.Cli/Resources/xlf/AgentCommandStrings.cs.xlf @@ -23,7 +23,7 @@ - Manage AI agent specific setup. + Manage AI agent environment configuration Spravujte integrace agentů AI. @@ -33,8 +33,8 @@ - Initialize agent environment configuration for detected agents. - Inicializujte konfiguraci prostředí agentů pro zjištěné agenty. + Initialize agent environment configuration for detected agents + Inicializujte konfiguraci prostředí agentů pro zjištěné agenty. @@ -58,8 +58,8 @@ - Start the MCP (Model Context Protocol) server. - Spusťte server MCP (Model Context Protocol). + Start the MCP (Model Context Protocol) server + Spusťte server MCP (Model Context Protocol). diff --git a/src/Aspire.Cli/Resources/xlf/AgentCommandStrings.de.xlf b/src/Aspire.Cli/Resources/xlf/AgentCommandStrings.de.xlf index 013b82a5681..ab07c707e02 100644 --- a/src/Aspire.Cli/Resources/xlf/AgentCommandStrings.de.xlf +++ b/src/Aspire.Cli/Resources/xlf/AgentCommandStrings.de.xlf @@ -23,7 +23,7 @@ - Manage AI agent specific setup. + Manage AI agent environment configuration Verwalten von KI-Agent-Integrationen. @@ -33,8 +33,8 @@ - Initialize agent environment configuration for detected agents. - Initialisieren Sie die Agent-Umgebungskonfiguration für erkannte Agenten. + Initialize agent environment configuration for detected agents + Initialisieren Sie die Agent-Umgebungskonfiguration für erkannte Agenten. @@ -58,8 +58,8 @@ - Start the MCP (Model Context Protocol) server. - Starten Sie den MCP-Server (Model Context Protocol). + Start the MCP (Model Context Protocol) server + Starten Sie den MCP-Server (Model Context Protocol). diff --git a/src/Aspire.Cli/Resources/xlf/AgentCommandStrings.es.xlf b/src/Aspire.Cli/Resources/xlf/AgentCommandStrings.es.xlf index 08cd9c1cd9b..f043be2345b 100644 --- a/src/Aspire.Cli/Resources/xlf/AgentCommandStrings.es.xlf +++ b/src/Aspire.Cli/Resources/xlf/AgentCommandStrings.es.xlf @@ -23,7 +23,7 @@ - Manage AI agent specific setup. + Manage AI agent environment configuration Administrar integraciones de agentes de IA. @@ -33,8 +33,8 @@ - Initialize agent environment configuration for detected agents. - Inicialice la configuración del entorno del agente para los agentes detectados. + Initialize agent environment configuration for detected agents + Inicialice la configuración del entorno del agente para los agentes detectados. @@ -58,8 +58,8 @@ - Start the MCP (Model Context Protocol) server. - Inicie el servidor MCP (protocolo de contexto de modelo). + Start the MCP (Model Context Protocol) server + Inicie el servidor MCP (protocolo de contexto de modelo). diff --git a/src/Aspire.Cli/Resources/xlf/AgentCommandStrings.fr.xlf b/src/Aspire.Cli/Resources/xlf/AgentCommandStrings.fr.xlf index 91a79ad57c1..5fdd5b1915a 100644 --- a/src/Aspire.Cli/Resources/xlf/AgentCommandStrings.fr.xlf +++ b/src/Aspire.Cli/Resources/xlf/AgentCommandStrings.fr.xlf @@ -23,7 +23,7 @@ - Manage AI agent specific setup. + Manage AI agent environment configuration Gérer les intégrations des agents IA. @@ -33,8 +33,8 @@ - Initialize agent environment configuration for detected agents. - Initialiser la configuration de l’environnement des agents détectés. + Initialize agent environment configuration for detected agents + Initialiser la configuration de l’environnement des agents détectés. @@ -58,8 +58,8 @@ - Start the MCP (Model Context Protocol) server. - Démarrez le serveur MCP (Model Context Protocol). + Start the MCP (Model Context Protocol) server + Démarrez le serveur MCP (Model Context Protocol). diff --git a/src/Aspire.Cli/Resources/xlf/AgentCommandStrings.it.xlf b/src/Aspire.Cli/Resources/xlf/AgentCommandStrings.it.xlf index 27173128ae7..e7763b5b50a 100644 --- a/src/Aspire.Cli/Resources/xlf/AgentCommandStrings.it.xlf +++ b/src/Aspire.Cli/Resources/xlf/AgentCommandStrings.it.xlf @@ -23,7 +23,7 @@ - Manage AI agent specific setup. + Manage AI agent environment configuration Gestire le integrazioni dell'agente AI. @@ -33,8 +33,8 @@ - Initialize agent environment configuration for detected agents. - Consente di inizializzare la configurazione dell'ambiente agente per gli agenti rilevati. + Initialize agent environment configuration for detected agents + Consente di inizializzare la configurazione dell'ambiente agente per gli agenti rilevati. @@ -58,8 +58,8 @@ - Start the MCP (Model Context Protocol) server. - Avviare il server MCP (Model Context Protocol). + Start the MCP (Model Context Protocol) server + Avviare il server MCP (Model Context Protocol). diff --git a/src/Aspire.Cli/Resources/xlf/AgentCommandStrings.ja.xlf b/src/Aspire.Cli/Resources/xlf/AgentCommandStrings.ja.xlf index 4a9d12ed7f7..12caa5c406a 100644 --- a/src/Aspire.Cli/Resources/xlf/AgentCommandStrings.ja.xlf +++ b/src/Aspire.Cli/Resources/xlf/AgentCommandStrings.ja.xlf @@ -23,7 +23,7 @@ - Manage AI agent specific setup. + Manage AI agent environment configuration AI エージェントの統合を管理します。 @@ -33,8 +33,8 @@ - Initialize agent environment configuration for detected agents. - 検出されたエージェントのエージェント環境構成を初期化します。 + Initialize agent environment configuration for detected agents + 検出されたエージェントのエージェント環境構成を初期化します。 @@ -58,8 +58,8 @@ - Start the MCP (Model Context Protocol) server. - MCP (モデル コンテキスト プロトコル) サーバーを起動します。 + Start the MCP (Model Context Protocol) server + MCP (モデル コンテキスト プロトコル) サーバーを起動します。 diff --git a/src/Aspire.Cli/Resources/xlf/AgentCommandStrings.ko.xlf b/src/Aspire.Cli/Resources/xlf/AgentCommandStrings.ko.xlf index 8255451a81a..00f568786f7 100644 --- a/src/Aspire.Cli/Resources/xlf/AgentCommandStrings.ko.xlf +++ b/src/Aspire.Cli/Resources/xlf/AgentCommandStrings.ko.xlf @@ -23,7 +23,7 @@ - Manage AI agent specific setup. + Manage AI agent environment configuration AI 에이전트 통합을 관리합니다. @@ -33,8 +33,8 @@ - Initialize agent environment configuration for detected agents. - 감지된 에이전트에 대한 에이전트 환경 구성을 초기화합니다. + Initialize agent environment configuration for detected agents + 감지된 에이전트에 대한 에이전트 환경 구성을 초기화합니다. @@ -58,8 +58,8 @@ - Start the MCP (Model Context Protocol) server. - MCP(모델 컨텍스트 프로토콜) 서버를 시작합니다. + Start the MCP (Model Context Protocol) server + MCP(모델 컨텍스트 프로토콜) 서버를 시작합니다. diff --git a/src/Aspire.Cli/Resources/xlf/AgentCommandStrings.pl.xlf b/src/Aspire.Cli/Resources/xlf/AgentCommandStrings.pl.xlf index 7b2104378be..03993fcc2ac 100644 --- a/src/Aspire.Cli/Resources/xlf/AgentCommandStrings.pl.xlf +++ b/src/Aspire.Cli/Resources/xlf/AgentCommandStrings.pl.xlf @@ -23,7 +23,7 @@ - Manage AI agent specific setup. + Manage AI agent environment configuration Zarządzaj integracjami agentów sztucznej inteligencji. @@ -33,8 +33,8 @@ - Initialize agent environment configuration for detected agents. - Zainicjuj konfigurację środowiska agenta dla wykrytych agentów. + Initialize agent environment configuration for detected agents + Zainicjuj konfigurację środowiska agenta dla wykrytych agentów. @@ -58,8 +58,8 @@ - Start the MCP (Model Context Protocol) server. - Uruchom serwer MCP (Model Context Protocol). + Start the MCP (Model Context Protocol) server + Uruchom serwer MCP (Model Context Protocol). diff --git a/src/Aspire.Cli/Resources/xlf/AgentCommandStrings.pt-BR.xlf b/src/Aspire.Cli/Resources/xlf/AgentCommandStrings.pt-BR.xlf index e0b6b0b825b..871bdc3c6f8 100644 --- a/src/Aspire.Cli/Resources/xlf/AgentCommandStrings.pt-BR.xlf +++ b/src/Aspire.Cli/Resources/xlf/AgentCommandStrings.pt-BR.xlf @@ -23,7 +23,7 @@ - Manage AI agent specific setup. + Manage AI agent environment configuration Gerencie integrações de agente de IA. @@ -33,8 +33,8 @@ - Initialize agent environment configuration for detected agents. - Inicialize a configuração de ambiente do agente para agentes detectados. + Initialize agent environment configuration for detected agents + Inicialize a configuração de ambiente do agente para agentes detectados. @@ -58,8 +58,8 @@ - Start the MCP (Model Context Protocol) server. - Inicie o servidor MCP (Protocolo de Contexto de Modelo). + Start the MCP (Model Context Protocol) server + Inicie o servidor MCP (Protocolo de Contexto de Modelo). diff --git a/src/Aspire.Cli/Resources/xlf/AgentCommandStrings.ru.xlf b/src/Aspire.Cli/Resources/xlf/AgentCommandStrings.ru.xlf index 975e9799e3e..e1fa788da96 100644 --- a/src/Aspire.Cli/Resources/xlf/AgentCommandStrings.ru.xlf +++ b/src/Aspire.Cli/Resources/xlf/AgentCommandStrings.ru.xlf @@ -23,7 +23,7 @@ - Manage AI agent specific setup. + Manage AI agent environment configuration Управляйте интеграциями агентов ИИ. @@ -33,8 +33,8 @@ - Initialize agent environment configuration for detected agents. - Инициализировать конфигурацию среды агента для обнаруженных агентов. + Initialize agent environment configuration for detected agents + Инициализировать конфигурацию среды агента для обнаруженных агентов. @@ -58,8 +58,8 @@ - Start the MCP (Model Context Protocol) server. - Запуск сервера MCP (протокол контекста модели). + Start the MCP (Model Context Protocol) server + Запуск сервера MCP (протокол контекста модели). diff --git a/src/Aspire.Cli/Resources/xlf/AgentCommandStrings.tr.xlf b/src/Aspire.Cli/Resources/xlf/AgentCommandStrings.tr.xlf index e9969f613df..e7d424c6918 100644 --- a/src/Aspire.Cli/Resources/xlf/AgentCommandStrings.tr.xlf +++ b/src/Aspire.Cli/Resources/xlf/AgentCommandStrings.tr.xlf @@ -23,7 +23,7 @@ - Manage AI agent specific setup. + Manage AI agent environment configuration AI detekli aracı entegrasyonlarınızı yönetin. @@ -33,8 +33,8 @@ - Initialize agent environment configuration for detected agents. - Tespit edilen aracılar için aracı ortam yapılandırmasını başlatın. + Initialize agent environment configuration for detected agents + Tespit edilen aracılar için aracı ortam yapılandırmasını başlatın. @@ -58,8 +58,8 @@ - Start the MCP (Model Context Protocol) server. - MCP (Model Bağlam Protokolü) sunucusunu başlat. + Start the MCP (Model Context Protocol) server + MCP (Model Bağlam Protokolü) sunucusunu başlat. diff --git a/src/Aspire.Cli/Resources/xlf/AgentCommandStrings.zh-Hans.xlf b/src/Aspire.Cli/Resources/xlf/AgentCommandStrings.zh-Hans.xlf index 3d6965fa542..40c0345af42 100644 --- a/src/Aspire.Cli/Resources/xlf/AgentCommandStrings.zh-Hans.xlf +++ b/src/Aspire.Cli/Resources/xlf/AgentCommandStrings.zh-Hans.xlf @@ -23,7 +23,7 @@ - Manage AI agent specific setup. + Manage AI agent environment configuration 管理 AI 智能体集成。 @@ -33,8 +33,8 @@ - Initialize agent environment configuration for detected agents. - 初始化检测到的智能体的智能体环境配置。 + Initialize agent environment configuration for detected agents + 初始化检测到的智能体的智能体环境配置。 @@ -58,8 +58,8 @@ - Start the MCP (Model Context Protocol) server. - 启动 MCP (模型上下文协议)服务器。 + Start the MCP (Model Context Protocol) server + 启动 MCP (模型上下文协议)服务器。 diff --git a/src/Aspire.Cli/Resources/xlf/AgentCommandStrings.zh-Hant.xlf b/src/Aspire.Cli/Resources/xlf/AgentCommandStrings.zh-Hant.xlf index ac0431a136a..1e3a76e434f 100644 --- a/src/Aspire.Cli/Resources/xlf/AgentCommandStrings.zh-Hant.xlf +++ b/src/Aspire.Cli/Resources/xlf/AgentCommandStrings.zh-Hant.xlf @@ -23,7 +23,7 @@ - Manage AI agent specific setup. + Manage AI agent environment configuration 管理 AI Agent 整合。 @@ -33,8 +33,8 @@ - Initialize agent environment configuration for detected agents. - 為偵測到的代理程式初始化代理程式環境設定。 + Initialize agent environment configuration for detected agents + 為偵測到的代理程式初始化代理程式環境設定。 @@ -58,8 +58,8 @@ - Start the MCP (Model Context Protocol) server. - 啟動 MCP (模型內容通訊協定) 伺服器。 + Start the MCP (Model Context Protocol) server + 啟動 MCP (模型內容通訊協定) 伺服器。 diff --git a/src/Aspire.Cli/Resources/xlf/CacheCommandStrings.cs.xlf b/src/Aspire.Cli/Resources/xlf/CacheCommandStrings.cs.xlf index a65fa4e6c5e..ad92730cd38 100644 --- a/src/Aspire.Cli/Resources/xlf/CacheCommandStrings.cs.xlf +++ b/src/Aspire.Cli/Resources/xlf/CacheCommandStrings.cs.xlf @@ -18,13 +18,13 @@ - Clear all cache entries. - Vymaže všechny položky mezipaměti. + Clear all cache entries + Vymaže všechny položky mezipaměti. - Manage disk cache for CLI operations. - Umožňuje spravovat mezipaměť disku pro operace rozhraní příkazového řádku. + Manage disk cache for CLI operations + Umožňuje spravovat mezipaměť disku pro operace rozhraní příkazového řádku. diff --git a/src/Aspire.Cli/Resources/xlf/CacheCommandStrings.de.xlf b/src/Aspire.Cli/Resources/xlf/CacheCommandStrings.de.xlf index 49217b8660e..49779837ff1 100644 --- a/src/Aspire.Cli/Resources/xlf/CacheCommandStrings.de.xlf +++ b/src/Aspire.Cli/Resources/xlf/CacheCommandStrings.de.xlf @@ -18,13 +18,13 @@ - Clear all cache entries. - Alle Cacheeinträge löschen. + Clear all cache entries + Alle Cacheeinträge löschen. - Manage disk cache for CLI operations. - Datenträgercache für CLI-Vorgänge verwalten. + Manage disk cache for CLI operations + Datenträgercache für CLI-Vorgänge verwalten. diff --git a/src/Aspire.Cli/Resources/xlf/CacheCommandStrings.es.xlf b/src/Aspire.Cli/Resources/xlf/CacheCommandStrings.es.xlf index 2ede879f855..6e203dad36d 100644 --- a/src/Aspire.Cli/Resources/xlf/CacheCommandStrings.es.xlf +++ b/src/Aspire.Cli/Resources/xlf/CacheCommandStrings.es.xlf @@ -18,13 +18,13 @@ - Clear all cache entries. - Borrar todas las entradas de caché. + Clear all cache entries + Borrar todas las entradas de caché. - Manage disk cache for CLI operations. - Administre la memoria caché de disco para las operaciones de la CLI. + Manage disk cache for CLI operations + Administre la memoria caché de disco para las operaciones de la CLI. diff --git a/src/Aspire.Cli/Resources/xlf/CacheCommandStrings.fr.xlf b/src/Aspire.Cli/Resources/xlf/CacheCommandStrings.fr.xlf index cdec72e2627..dc19cedcb03 100644 --- a/src/Aspire.Cli/Resources/xlf/CacheCommandStrings.fr.xlf +++ b/src/Aspire.Cli/Resources/xlf/CacheCommandStrings.fr.xlf @@ -18,13 +18,13 @@ - Clear all cache entries. - Effacez toutes les entrées du cache. + Clear all cache entries + Effacez toutes les entrées du cache. - Manage disk cache for CLI operations. - Gérez le cache disque pour les opérations CLI. + Manage disk cache for CLI operations + Gérez le cache disque pour les opérations CLI. diff --git a/src/Aspire.Cli/Resources/xlf/CacheCommandStrings.it.xlf b/src/Aspire.Cli/Resources/xlf/CacheCommandStrings.it.xlf index 56f4d877299..68f8e31b26d 100644 --- a/src/Aspire.Cli/Resources/xlf/CacheCommandStrings.it.xlf +++ b/src/Aspire.Cli/Resources/xlf/CacheCommandStrings.it.xlf @@ -18,13 +18,13 @@ - Clear all cache entries. - Cancella tutte le voci della cache. + Clear all cache entries + Cancella tutte le voci della cache. - Manage disk cache for CLI operations. - Gestisci la cache del disco per le operazioni dell'interfaccia della riga di comando. + Manage disk cache for CLI operations + Gestisci la cache del disco per le operazioni dell'interfaccia della riga di comando. diff --git a/src/Aspire.Cli/Resources/xlf/CacheCommandStrings.ja.xlf b/src/Aspire.Cli/Resources/xlf/CacheCommandStrings.ja.xlf index 5d291baeee2..787683a3ed5 100644 --- a/src/Aspire.Cli/Resources/xlf/CacheCommandStrings.ja.xlf +++ b/src/Aspire.Cli/Resources/xlf/CacheCommandStrings.ja.xlf @@ -18,13 +18,13 @@ - Clear all cache entries. - すべてのキャッシュ エントリをクリアします。 + Clear all cache entries + すべてのキャッシュ エントリをクリアします。 - Manage disk cache for CLI operations. - CLI 操作に対するディスク キャッシュを管理します。 + Manage disk cache for CLI operations + CLI 操作に対するディスク キャッシュを管理します。 diff --git a/src/Aspire.Cli/Resources/xlf/CacheCommandStrings.ko.xlf b/src/Aspire.Cli/Resources/xlf/CacheCommandStrings.ko.xlf index 71c6074eb72..dbdfde6eb29 100644 --- a/src/Aspire.Cli/Resources/xlf/CacheCommandStrings.ko.xlf +++ b/src/Aspire.Cli/Resources/xlf/CacheCommandStrings.ko.xlf @@ -18,13 +18,13 @@ - Clear all cache entries. - 모든 캐시 항목을 지웁니다. + Clear all cache entries + 모든 캐시 항목을 지웁니다. - Manage disk cache for CLI operations. - CLI 작업용 디스크 캐시를 관리합니다. + Manage disk cache for CLI operations + CLI 작업용 디스크 캐시를 관리합니다. diff --git a/src/Aspire.Cli/Resources/xlf/CacheCommandStrings.pl.xlf b/src/Aspire.Cli/Resources/xlf/CacheCommandStrings.pl.xlf index 962755be1df..05f44ffa6da 100644 --- a/src/Aspire.Cli/Resources/xlf/CacheCommandStrings.pl.xlf +++ b/src/Aspire.Cli/Resources/xlf/CacheCommandStrings.pl.xlf @@ -18,13 +18,13 @@ - Clear all cache entries. - Wyczyść wszystkie wpisy w pamięci podręcznej. + Clear all cache entries + Wyczyść wszystkie wpisy w pamięci podręcznej. - Manage disk cache for CLI operations. - Zarządzaj pamięcią podręczną dysków na potrzeby operacji interfejsu wiersza polecenia. + Manage disk cache for CLI operations + Zarządzaj pamięcią podręczną dysków na potrzeby operacji interfejsu wiersza polecenia. diff --git a/src/Aspire.Cli/Resources/xlf/CacheCommandStrings.pt-BR.xlf b/src/Aspire.Cli/Resources/xlf/CacheCommandStrings.pt-BR.xlf index 0fd73a4fe17..0333912ab03 100644 --- a/src/Aspire.Cli/Resources/xlf/CacheCommandStrings.pt-BR.xlf +++ b/src/Aspire.Cli/Resources/xlf/CacheCommandStrings.pt-BR.xlf @@ -18,13 +18,13 @@ - Clear all cache entries. - Limpar todas as entradas de cache. + Clear all cache entries + Limpar todas as entradas de cache. - Manage disk cache for CLI operations. - Gerenciar cache de disco para operações da CLI. + Manage disk cache for CLI operations + Gerenciar cache de disco para operações da CLI. diff --git a/src/Aspire.Cli/Resources/xlf/CacheCommandStrings.ru.xlf b/src/Aspire.Cli/Resources/xlf/CacheCommandStrings.ru.xlf index e1d12452ee4..459a97b55a4 100644 --- a/src/Aspire.Cli/Resources/xlf/CacheCommandStrings.ru.xlf +++ b/src/Aspire.Cli/Resources/xlf/CacheCommandStrings.ru.xlf @@ -18,13 +18,13 @@ - Clear all cache entries. - Очистить все записи кэша. + Clear all cache entries + Очистить все записи кэша. - Manage disk cache for CLI operations. - Управление кэшем диска для операций CLI. + Manage disk cache for CLI operations + Управление кэшем диска для операций CLI. diff --git a/src/Aspire.Cli/Resources/xlf/CacheCommandStrings.tr.xlf b/src/Aspire.Cli/Resources/xlf/CacheCommandStrings.tr.xlf index 72b3a04496a..5d7f06e2683 100644 --- a/src/Aspire.Cli/Resources/xlf/CacheCommandStrings.tr.xlf +++ b/src/Aspire.Cli/Resources/xlf/CacheCommandStrings.tr.xlf @@ -18,13 +18,13 @@ - Clear all cache entries. - Tüm önbellek girişlerini temizle. + Clear all cache entries + Tüm önbellek girişlerini temizle. - Manage disk cache for CLI operations. - CLI işlemleri için disk önbelleğini yönet. + Manage disk cache for CLI operations + CLI işlemleri için disk önbelleğini yönet. diff --git a/src/Aspire.Cli/Resources/xlf/CacheCommandStrings.zh-Hans.xlf b/src/Aspire.Cli/Resources/xlf/CacheCommandStrings.zh-Hans.xlf index f257db13ba8..2f68b59b281 100644 --- a/src/Aspire.Cli/Resources/xlf/CacheCommandStrings.zh-Hans.xlf +++ b/src/Aspire.Cli/Resources/xlf/CacheCommandStrings.zh-Hans.xlf @@ -18,13 +18,13 @@ - Clear all cache entries. - 清除所有缓存项。 + Clear all cache entries + 清除所有缓存项。 - Manage disk cache for CLI operations. - 管理 CLI 操作的磁盘缓存。 + Manage disk cache for CLI operations + 管理 CLI 操作的磁盘缓存。 diff --git a/src/Aspire.Cli/Resources/xlf/CacheCommandStrings.zh-Hant.xlf b/src/Aspire.Cli/Resources/xlf/CacheCommandStrings.zh-Hant.xlf index 2d18bd09dc5..beb38ea371e 100644 --- a/src/Aspire.Cli/Resources/xlf/CacheCommandStrings.zh-Hant.xlf +++ b/src/Aspire.Cli/Resources/xlf/CacheCommandStrings.zh-Hant.xlf @@ -18,13 +18,13 @@ - Clear all cache entries. - 清除所有快取項目。 + Clear all cache entries + 清除所有快取項目。 - Manage disk cache for CLI operations. - 管理 CLI 操作的磁碟快取。 + Manage disk cache for CLI operations + 管理 CLI 操作的磁碟快取。 diff --git a/src/Aspire.Cli/Resources/xlf/CertificatesCommandStrings.cs.xlf b/src/Aspire.Cli/Resources/xlf/CertificatesCommandStrings.cs.xlf index 42dced80d2d..ee0f9b8bc47 100644 --- a/src/Aspire.Cli/Resources/xlf/CertificatesCommandStrings.cs.xlf +++ b/src/Aspire.Cli/Resources/xlf/CertificatesCommandStrings.cs.xlf @@ -8,8 +8,8 @@ - Remove all HTTPS development certificates. - Remove all HTTPS development certificates. + Remove all HTTPS development certificates + Remove all HTTPS development certificates @@ -33,8 +33,8 @@ - Manage HTTPS development certificates. - Manage HTTPS development certificates. + Manage HTTPS development certificates + Manage HTTPS development certificates @@ -43,8 +43,8 @@ - Trust the HTTPS development certificate, creating one if necessary. - Trust the HTTPS development certificate, creating one if necessary. + Trust the HTTPS development certificate, creating one if necessary + Trust the HTTPS development certificate, creating one if necessary diff --git a/src/Aspire.Cli/Resources/xlf/CertificatesCommandStrings.de.xlf b/src/Aspire.Cli/Resources/xlf/CertificatesCommandStrings.de.xlf index 6fef8e31725..6990e8bd4c2 100644 --- a/src/Aspire.Cli/Resources/xlf/CertificatesCommandStrings.de.xlf +++ b/src/Aspire.Cli/Resources/xlf/CertificatesCommandStrings.de.xlf @@ -8,8 +8,8 @@ - Remove all HTTPS development certificates. - Remove all HTTPS development certificates. + Remove all HTTPS development certificates + Remove all HTTPS development certificates @@ -33,8 +33,8 @@ - Manage HTTPS development certificates. - Manage HTTPS development certificates. + Manage HTTPS development certificates + Manage HTTPS development certificates @@ -43,8 +43,8 @@ - Trust the HTTPS development certificate, creating one if necessary. - Trust the HTTPS development certificate, creating one if necessary. + Trust the HTTPS development certificate, creating one if necessary + Trust the HTTPS development certificate, creating one if necessary diff --git a/src/Aspire.Cli/Resources/xlf/CertificatesCommandStrings.es.xlf b/src/Aspire.Cli/Resources/xlf/CertificatesCommandStrings.es.xlf index d052b8a2c69..20563788267 100644 --- a/src/Aspire.Cli/Resources/xlf/CertificatesCommandStrings.es.xlf +++ b/src/Aspire.Cli/Resources/xlf/CertificatesCommandStrings.es.xlf @@ -8,8 +8,8 @@ - Remove all HTTPS development certificates. - Remove all HTTPS development certificates. + Remove all HTTPS development certificates + Remove all HTTPS development certificates @@ -33,8 +33,8 @@ - Manage HTTPS development certificates. - Manage HTTPS development certificates. + Manage HTTPS development certificates + Manage HTTPS development certificates @@ -43,8 +43,8 @@ - Trust the HTTPS development certificate, creating one if necessary. - Trust the HTTPS development certificate, creating one if necessary. + Trust the HTTPS development certificate, creating one if necessary + Trust the HTTPS development certificate, creating one if necessary diff --git a/src/Aspire.Cli/Resources/xlf/CertificatesCommandStrings.fr.xlf b/src/Aspire.Cli/Resources/xlf/CertificatesCommandStrings.fr.xlf index 5dd6680720e..eef6d6ad165 100644 --- a/src/Aspire.Cli/Resources/xlf/CertificatesCommandStrings.fr.xlf +++ b/src/Aspire.Cli/Resources/xlf/CertificatesCommandStrings.fr.xlf @@ -8,8 +8,8 @@ - Remove all HTTPS development certificates. - Remove all HTTPS development certificates. + Remove all HTTPS development certificates + Remove all HTTPS development certificates @@ -33,8 +33,8 @@ - Manage HTTPS development certificates. - Manage HTTPS development certificates. + Manage HTTPS development certificates + Manage HTTPS development certificates @@ -43,8 +43,8 @@ - Trust the HTTPS development certificate, creating one if necessary. - Trust the HTTPS development certificate, creating one if necessary. + Trust the HTTPS development certificate, creating one if necessary + Trust the HTTPS development certificate, creating one if necessary diff --git a/src/Aspire.Cli/Resources/xlf/CertificatesCommandStrings.it.xlf b/src/Aspire.Cli/Resources/xlf/CertificatesCommandStrings.it.xlf index 14657d019f1..faa4371399d 100644 --- a/src/Aspire.Cli/Resources/xlf/CertificatesCommandStrings.it.xlf +++ b/src/Aspire.Cli/Resources/xlf/CertificatesCommandStrings.it.xlf @@ -8,8 +8,8 @@ - Remove all HTTPS development certificates. - Remove all HTTPS development certificates. + Remove all HTTPS development certificates + Remove all HTTPS development certificates @@ -33,8 +33,8 @@ - Manage HTTPS development certificates. - Manage HTTPS development certificates. + Manage HTTPS development certificates + Manage HTTPS development certificates @@ -43,8 +43,8 @@ - Trust the HTTPS development certificate, creating one if necessary. - Trust the HTTPS development certificate, creating one if necessary. + Trust the HTTPS development certificate, creating one if necessary + Trust the HTTPS development certificate, creating one if necessary diff --git a/src/Aspire.Cli/Resources/xlf/CertificatesCommandStrings.ja.xlf b/src/Aspire.Cli/Resources/xlf/CertificatesCommandStrings.ja.xlf index 0fc1d3521e1..a7b889b00d1 100644 --- a/src/Aspire.Cli/Resources/xlf/CertificatesCommandStrings.ja.xlf +++ b/src/Aspire.Cli/Resources/xlf/CertificatesCommandStrings.ja.xlf @@ -8,8 +8,8 @@ - Remove all HTTPS development certificates. - Remove all HTTPS development certificates. + Remove all HTTPS development certificates + Remove all HTTPS development certificates @@ -33,8 +33,8 @@ - Manage HTTPS development certificates. - Manage HTTPS development certificates. + Manage HTTPS development certificates + Manage HTTPS development certificates @@ -43,8 +43,8 @@ - Trust the HTTPS development certificate, creating one if necessary. - Trust the HTTPS development certificate, creating one if necessary. + Trust the HTTPS development certificate, creating one if necessary + Trust the HTTPS development certificate, creating one if necessary diff --git a/src/Aspire.Cli/Resources/xlf/CertificatesCommandStrings.ko.xlf b/src/Aspire.Cli/Resources/xlf/CertificatesCommandStrings.ko.xlf index 2291f85bd44..7ebc5f3bdb6 100644 --- a/src/Aspire.Cli/Resources/xlf/CertificatesCommandStrings.ko.xlf +++ b/src/Aspire.Cli/Resources/xlf/CertificatesCommandStrings.ko.xlf @@ -8,8 +8,8 @@ - Remove all HTTPS development certificates. - Remove all HTTPS development certificates. + Remove all HTTPS development certificates + Remove all HTTPS development certificates @@ -33,8 +33,8 @@ - Manage HTTPS development certificates. - Manage HTTPS development certificates. + Manage HTTPS development certificates + Manage HTTPS development certificates @@ -43,8 +43,8 @@ - Trust the HTTPS development certificate, creating one if necessary. - Trust the HTTPS development certificate, creating one if necessary. + Trust the HTTPS development certificate, creating one if necessary + Trust the HTTPS development certificate, creating one if necessary diff --git a/src/Aspire.Cli/Resources/xlf/CertificatesCommandStrings.pl.xlf b/src/Aspire.Cli/Resources/xlf/CertificatesCommandStrings.pl.xlf index 448100b79a7..0827ab7ffd7 100644 --- a/src/Aspire.Cli/Resources/xlf/CertificatesCommandStrings.pl.xlf +++ b/src/Aspire.Cli/Resources/xlf/CertificatesCommandStrings.pl.xlf @@ -8,8 +8,8 @@ - Remove all HTTPS development certificates. - Remove all HTTPS development certificates. + Remove all HTTPS development certificates + Remove all HTTPS development certificates @@ -33,8 +33,8 @@ - Manage HTTPS development certificates. - Manage HTTPS development certificates. + Manage HTTPS development certificates + Manage HTTPS development certificates @@ -43,8 +43,8 @@ - Trust the HTTPS development certificate, creating one if necessary. - Trust the HTTPS development certificate, creating one if necessary. + Trust the HTTPS development certificate, creating one if necessary + Trust the HTTPS development certificate, creating one if necessary diff --git a/src/Aspire.Cli/Resources/xlf/CertificatesCommandStrings.pt-BR.xlf b/src/Aspire.Cli/Resources/xlf/CertificatesCommandStrings.pt-BR.xlf index 2ea9442cc7b..9fb5c527ddd 100644 --- a/src/Aspire.Cli/Resources/xlf/CertificatesCommandStrings.pt-BR.xlf +++ b/src/Aspire.Cli/Resources/xlf/CertificatesCommandStrings.pt-BR.xlf @@ -8,8 +8,8 @@ - Remove all HTTPS development certificates. - Remove all HTTPS development certificates. + Remove all HTTPS development certificates + Remove all HTTPS development certificates @@ -33,8 +33,8 @@ - Manage HTTPS development certificates. - Manage HTTPS development certificates. + Manage HTTPS development certificates + Manage HTTPS development certificates @@ -43,8 +43,8 @@ - Trust the HTTPS development certificate, creating one if necessary. - Trust the HTTPS development certificate, creating one if necessary. + Trust the HTTPS development certificate, creating one if necessary + Trust the HTTPS development certificate, creating one if necessary diff --git a/src/Aspire.Cli/Resources/xlf/CertificatesCommandStrings.ru.xlf b/src/Aspire.Cli/Resources/xlf/CertificatesCommandStrings.ru.xlf index beb8803597d..315cda2911c 100644 --- a/src/Aspire.Cli/Resources/xlf/CertificatesCommandStrings.ru.xlf +++ b/src/Aspire.Cli/Resources/xlf/CertificatesCommandStrings.ru.xlf @@ -8,8 +8,8 @@ - Remove all HTTPS development certificates. - Remove all HTTPS development certificates. + Remove all HTTPS development certificates + Remove all HTTPS development certificates @@ -33,8 +33,8 @@ - Manage HTTPS development certificates. - Manage HTTPS development certificates. + Manage HTTPS development certificates + Manage HTTPS development certificates @@ -43,8 +43,8 @@ - Trust the HTTPS development certificate, creating one if necessary. - Trust the HTTPS development certificate, creating one if necessary. + Trust the HTTPS development certificate, creating one if necessary + Trust the HTTPS development certificate, creating one if necessary diff --git a/src/Aspire.Cli/Resources/xlf/CertificatesCommandStrings.tr.xlf b/src/Aspire.Cli/Resources/xlf/CertificatesCommandStrings.tr.xlf index 6aac80a49ca..eb489a1f12f 100644 --- a/src/Aspire.Cli/Resources/xlf/CertificatesCommandStrings.tr.xlf +++ b/src/Aspire.Cli/Resources/xlf/CertificatesCommandStrings.tr.xlf @@ -8,8 +8,8 @@ - Remove all HTTPS development certificates. - Remove all HTTPS development certificates. + Remove all HTTPS development certificates + Remove all HTTPS development certificates @@ -33,8 +33,8 @@ - Manage HTTPS development certificates. - Manage HTTPS development certificates. + Manage HTTPS development certificates + Manage HTTPS development certificates @@ -43,8 +43,8 @@ - Trust the HTTPS development certificate, creating one if necessary. - Trust the HTTPS development certificate, creating one if necessary. + Trust the HTTPS development certificate, creating one if necessary + Trust the HTTPS development certificate, creating one if necessary diff --git a/src/Aspire.Cli/Resources/xlf/CertificatesCommandStrings.zh-Hans.xlf b/src/Aspire.Cli/Resources/xlf/CertificatesCommandStrings.zh-Hans.xlf index 7049db5fbb0..5eaf195e970 100644 --- a/src/Aspire.Cli/Resources/xlf/CertificatesCommandStrings.zh-Hans.xlf +++ b/src/Aspire.Cli/Resources/xlf/CertificatesCommandStrings.zh-Hans.xlf @@ -8,8 +8,8 @@ - Remove all HTTPS development certificates. - Remove all HTTPS development certificates. + Remove all HTTPS development certificates + Remove all HTTPS development certificates @@ -33,8 +33,8 @@ - Manage HTTPS development certificates. - Manage HTTPS development certificates. + Manage HTTPS development certificates + Manage HTTPS development certificates @@ -43,8 +43,8 @@ - Trust the HTTPS development certificate, creating one if necessary. - Trust the HTTPS development certificate, creating one if necessary. + Trust the HTTPS development certificate, creating one if necessary + Trust the HTTPS development certificate, creating one if necessary diff --git a/src/Aspire.Cli/Resources/xlf/CertificatesCommandStrings.zh-Hant.xlf b/src/Aspire.Cli/Resources/xlf/CertificatesCommandStrings.zh-Hant.xlf index cfcb61fe8be..1dae7b7e4c1 100644 --- a/src/Aspire.Cli/Resources/xlf/CertificatesCommandStrings.zh-Hant.xlf +++ b/src/Aspire.Cli/Resources/xlf/CertificatesCommandStrings.zh-Hant.xlf @@ -8,8 +8,8 @@ - Remove all HTTPS development certificates. - Remove all HTTPS development certificates. + Remove all HTTPS development certificates + Remove all HTTPS development certificates @@ -33,8 +33,8 @@ - Manage HTTPS development certificates. - Manage HTTPS development certificates. + Manage HTTPS development certificates + Manage HTTPS development certificates @@ -43,8 +43,8 @@ - Trust the HTTPS development certificate, creating one if necessary. - Trust the HTTPS development certificate, creating one if necessary. + Trust the HTTPS development certificate, creating one if necessary + Trust the HTTPS development certificate, creating one if necessary diff --git a/src/Aspire.Cli/Resources/xlf/ConfigCommandStrings.cs.xlf b/src/Aspire.Cli/Resources/xlf/ConfigCommandStrings.cs.xlf index 935af2821f5..749eac6d2dd 100644 --- a/src/Aspire.Cli/Resources/xlf/ConfigCommandStrings.cs.xlf +++ b/src/Aspire.Cli/Resources/xlf/ConfigCommandStrings.cs.xlf @@ -28,18 +28,18 @@ {0} is the key, {1} is the value - Delete a configuration value. - Umožňuje odstranit hodnotu konfigurace. + Delete a configuration value + Umožňuje odstranit hodnotu konfigurace. - Delete the configuration value from the global $HOME/.aspire/settings.json instead of the local settings file. - Odstraňte hodnotu konfigurace z globálního souboru $HOME/.aspire/settings.json místo z místního souboru nastavení. + Delete the configuration value from the global $HOME/.aspire/settings.json instead of the local settings file + Odstraňte hodnotu konfigurace z globálního souboru $HOME/.aspire/settings.json místo z místního souboru nastavení. - The configuration key to delete. - Konfigurační klíč, který se má odstranit + The configuration key to delete + Konfigurační klíč, který se má odstranit @@ -53,7 +53,7 @@ - Manage CLI configuration including feature flags. + Manage CLI configuration including feature flags Umožňuje spravovat nastavení konfigurace. @@ -63,13 +63,13 @@ - Get a configuration value. - Získá hodnotu konfigurace. + Get a configuration value + Získá hodnotu konfigurace. - The configuration key to retrieve. - Konfigurační klíč, který se má načíst + The configuration key to retrieve + Konfigurační klíč, který se má načíst @@ -98,8 +98,8 @@ - Display configuration file paths and available features. - Umožňuje zobrazit cesty ke konfiguračním souborům a dostupné funkce. + Display configuration file paths and available features + Umožňuje zobrazit cesty ke konfiguračním souborům a dostupné funkce. @@ -108,8 +108,8 @@ - Output information in JSON format. - Výstup informací ve formátu JSON. + Output information in JSON format + Výstup informací ve formátu JSON. @@ -128,13 +128,13 @@ - Show all available features that can be configured. - Show all available features that can be configured. + Show all available features that can be configured + Show all available features that can be configured - List all configuration values. - Umožňuje vypsat všechny hodnoty konfigurace. + List all configuration values + Umožňuje vypsat všechny hodnoty konfigurace. @@ -158,18 +158,18 @@ - Set a configuration value. - Nastavte hodnotu konfigurace. + Set a configuration value + Nastavte hodnotu konfigurace. - Set the configuration value globally in $HOME/.aspire/settings.json instead of the local settings file. - Nastavte hodnotu konfigurace globálně v souboru $HOME/.aspire/settings.json místo v místním souboru nastavení. + Set the configuration value globally in $HOME/.aspire/settings.json instead of the local settings file + Nastavte hodnotu konfigurace globálně v souboru $HOME/.aspire/settings.json místo v místním souboru nastavení. - The configuration key to set. - Konfigurační klíč, který se má nastavit + The configuration key to set + Konfigurační klíč, který se má nastavit @@ -198,8 +198,8 @@ - The configuration value to set. - Hodnota konfigurace, která se má nastavit + The configuration value to set + Hodnota konfigurace, která se má nastavit diff --git a/src/Aspire.Cli/Resources/xlf/ConfigCommandStrings.de.xlf b/src/Aspire.Cli/Resources/xlf/ConfigCommandStrings.de.xlf index 59ded260b7f..d95e239ed14 100644 --- a/src/Aspire.Cli/Resources/xlf/ConfigCommandStrings.de.xlf +++ b/src/Aspire.Cli/Resources/xlf/ConfigCommandStrings.de.xlf @@ -28,18 +28,18 @@ {0} is the key, {1} is the value - Delete a configuration value. - Löschen Sie einen Konfigurationswert. + Delete a configuration value + Löschen Sie einen Konfigurationswert. - Delete the configuration value from the global $HOME/.aspire/settings.json instead of the local settings file. - Löschen Sie den Konfigurationswert aus der globalen „$HOME/.aspire/settings.json“ anstelle der lokalen Einstellungsdatei. + Delete the configuration value from the global $HOME/.aspire/settings.json instead of the local settings file + Löschen Sie den Konfigurationswert aus der globalen „$HOME/.aspire/settings.json“ anstelle der lokalen Einstellungsdatei. - The configuration key to delete. - Der zu löschende Konfigurationsschlüssel. + The configuration key to delete + Der zu löschende Konfigurationsschlüssel. @@ -53,7 +53,7 @@ - Manage CLI configuration including feature flags. + Manage CLI configuration including feature flags Verwalten Sie Konfigurationseinstellungen. @@ -63,13 +63,13 @@ - Get a configuration value. - Rufen Sie einen Konfigurationswert ab. + Get a configuration value + Rufen Sie einen Konfigurationswert ab. - The configuration key to retrieve. - Der abzurufende Konfigurationsschlüssel. + The configuration key to retrieve + Der abzurufende Konfigurationsschlüssel. @@ -98,8 +98,8 @@ - Display configuration file paths and available features. - Konfigurationsdateipfade und verfügbare Funktionen anzeigen. + Display configuration file paths and available features + Konfigurationsdateipfade und verfügbare Funktionen anzeigen. @@ -108,8 +108,8 @@ - Output information in JSON format. - Informationen im JSON-Format ausgeben. + Output information in JSON format + Informationen im JSON-Format ausgeben. @@ -128,13 +128,13 @@ - Show all available features that can be configured. - Show all available features that can be configured. + Show all available features that can be configured + Show all available features that can be configured - List all configuration values. - Listen Sie alle Konfigurationswerte auf. + List all configuration values + Listen Sie alle Konfigurationswerte auf. @@ -158,18 +158,18 @@ - Set a configuration value. - Legen Sie einen Konfigurationswert fest. + Set a configuration value + Legen Sie einen Konfigurationswert fest. - Set the configuration value globally in $HOME/.aspire/settings.json instead of the local settings file. - Legen Sie den Konfigurationswert global unter „$HOME/.aspire/settings.json“ anstelle der lokalen Einstellungsdatei fest. + Set the configuration value globally in $HOME/.aspire/settings.json instead of the local settings file + Legen Sie den Konfigurationswert global unter „$HOME/.aspire/settings.json“ anstelle der lokalen Einstellungsdatei fest. - The configuration key to set. - Der festzulegende Konfigurationsschlüssel. + The configuration key to set + Der festzulegende Konfigurationsschlüssel. @@ -198,8 +198,8 @@ - The configuration value to set. - Der festzulegende Konfigurationswert. + The configuration value to set + Der festzulegende Konfigurationswert. diff --git a/src/Aspire.Cli/Resources/xlf/ConfigCommandStrings.es.xlf b/src/Aspire.Cli/Resources/xlf/ConfigCommandStrings.es.xlf index 8e863589483..f35fef5d74a 100644 --- a/src/Aspire.Cli/Resources/xlf/ConfigCommandStrings.es.xlf +++ b/src/Aspire.Cli/Resources/xlf/ConfigCommandStrings.es.xlf @@ -28,18 +28,18 @@ {0} is the key, {1} is the value - Delete a configuration value. - Elimina un valor de configuración. + Delete a configuration value + Elimina un valor de configuración. - Delete the configuration value from the global $HOME/.aspire/settings.json instead of the local settings file. - Elimina el valor de configuración del $HOME global/.pm/settings.json en lugar del archivo de configuración local. + Delete the configuration value from the global $HOME/.aspire/settings.json instead of the local settings file + Elimina el valor de configuración del $HOME global/.pm/settings.json en lugar del archivo de configuración local. - The configuration key to delete. - Clave de configuración que se va a eliminar. + The configuration key to delete + Clave de configuración que se va a eliminar. @@ -53,7 +53,7 @@ - Manage CLI configuration including feature flags. + Manage CLI configuration including feature flags Administrar las opciones de configuración. @@ -63,13 +63,13 @@ - Get a configuration value. - Obtiene un valor de configuración. + Get a configuration value + Obtiene un valor de configuración. - The configuration key to retrieve. - La clave de configuración que se va a recuperar. + The configuration key to retrieve + La clave de configuración que se va a recuperar. @@ -98,8 +98,8 @@ - Display configuration file paths and available features. - Muestra las rutas de acceso del archivo de configuración y las características disponibles. + Display configuration file paths and available features + Muestra las rutas de acceso del archivo de configuración y las características disponibles. @@ -108,8 +108,8 @@ - Output information in JSON format. - Información de salida en formato JSON. + Output information in JSON format + Información de salida en formato JSON. @@ -128,13 +128,13 @@ - Show all available features that can be configured. - Show all available features that can be configured. + Show all available features that can be configured + Show all available features that can be configured - List all configuration values. - Enumera todos los valores de configuración. + List all configuration values + Enumera todos los valores de configuración. @@ -158,18 +158,18 @@ - Set a configuration value. - Establece un valor de configuración. + Set a configuration value + Establece un valor de configuración. - Set the configuration value globally in $HOME/.aspire/settings.json instead of the local settings file. - Establezca el valor de configuración globalmente en $HOME/.aspire/settings.json en lugar del archivo de configuración local. + Set the configuration value globally in $HOME/.aspire/settings.json instead of the local settings file + Establezca el valor de configuración globalmente en $HOME/.aspire/settings.json en lugar del archivo de configuración local. - The configuration key to set. - Clave de configuración que se va a establecer. + The configuration key to set + Clave de configuración que se va a establecer. @@ -198,8 +198,8 @@ - The configuration value to set. - Valor de configuración que se va a establecer. + The configuration value to set + Valor de configuración que se va a establecer. diff --git a/src/Aspire.Cli/Resources/xlf/ConfigCommandStrings.fr.xlf b/src/Aspire.Cli/Resources/xlf/ConfigCommandStrings.fr.xlf index e91c905fc39..d16884398fc 100644 --- a/src/Aspire.Cli/Resources/xlf/ConfigCommandStrings.fr.xlf +++ b/src/Aspire.Cli/Resources/xlf/ConfigCommandStrings.fr.xlf @@ -28,18 +28,18 @@ {0} is the key, {1} is the value - Delete a configuration value. - Supprimez une valeur de configuration. + Delete a configuration value + Supprimez une valeur de configuration. - Delete the configuration value from the global $HOME/.aspire/settings.json instead of the local settings file. - Définissez la valeur de la configuration à partir de $HOME/.aspire/settings.json global au lieu du fichier de paramètres régionaux. + Delete the configuration value from the global $HOME/.aspire/settings.json instead of the local settings file + Définissez la valeur de la configuration à partir de $HOME/.aspire/settings.json global au lieu du fichier de paramètres régionaux. - The configuration key to delete. - La clé de configuration à supprimer. + The configuration key to delete + La clé de configuration à supprimer. @@ -53,7 +53,7 @@ - Manage CLI configuration including feature flags. + Manage CLI configuration including feature flags Gérez les paramètres de configuration. @@ -63,13 +63,13 @@ - Get a configuration value. - Obtenez une valeur de configuration. + Get a configuration value + Obtenez une valeur de configuration. - The configuration key to retrieve. - La clé de configuration à récupérer. + The configuration key to retrieve + La clé de configuration à récupérer. @@ -98,8 +98,8 @@ - Display configuration file paths and available features. - Afficher les chemins des fichiers de configuration et les fonctionnalités disponibles. + Display configuration file paths and available features + Afficher les chemins des fichiers de configuration et les fonctionnalités disponibles. @@ -108,8 +108,8 @@ - Output information in JSON format. - Afficher les informations au format JSON. + Output information in JSON format + Afficher les informations au format JSON. @@ -128,13 +128,13 @@ - Show all available features that can be configured. - Show all available features that can be configured. + Show all available features that can be configured + Show all available features that can be configured - List all configuration values. - Répertoriez toutes les valeurs de configuration. + List all configuration values + Répertoriez toutes les valeurs de configuration. @@ -158,18 +158,18 @@ - Set a configuration value. - Définissez une valeur de configuration. + Set a configuration value + Définissez une valeur de configuration. - Set the configuration value globally in $HOME/.aspire/settings.json instead of the local settings file. - Définissez la valeur de configuration globalement dans $HOME/.aspire/settings.json au lieu du fichier de paramètres régionaux. + Set the configuration value globally in $HOME/.aspire/settings.json instead of the local settings file + Définissez la valeur de configuration globalement dans $HOME/.aspire/settings.json au lieu du fichier de paramètres régionaux. - The configuration key to set. - La clé de configuration à définir. + The configuration key to set + La clé de configuration à définir. @@ -198,8 +198,8 @@ - The configuration value to set. - La valeur de configuration à définir. + The configuration value to set + La valeur de configuration à définir. diff --git a/src/Aspire.Cli/Resources/xlf/ConfigCommandStrings.it.xlf b/src/Aspire.Cli/Resources/xlf/ConfigCommandStrings.it.xlf index 97c0ddde071..95f90745a75 100644 --- a/src/Aspire.Cli/Resources/xlf/ConfigCommandStrings.it.xlf +++ b/src/Aspire.Cli/Resources/xlf/ConfigCommandStrings.it.xlf @@ -28,18 +28,18 @@ {0} is the key, {1} is the value - Delete a configuration value. - Elimina un valore di configurazione. + Delete a configuration value + Elimina un valore di configurazione. - Delete the configuration value from the global $HOME/.aspire/settings.json instead of the local settings file. - Elimina il valore di configurazione dal file globale $HOME/.fqd/settings.json anziché dal file di impostazioni locali. + Delete the configuration value from the global $HOME/.aspire/settings.json instead of the local settings file + Elimina il valore di configurazione dal file globale $HOME/.fqd/settings.json anziché dal file di impostazioni locali. - The configuration key to delete. - Chiave di configurazione da eliminare. + The configuration key to delete + Chiave di configurazione da eliminare. @@ -53,7 +53,7 @@ - Manage CLI configuration including feature flags. + Manage CLI configuration including feature flags Gestisci le impostazioni di configurazione. @@ -63,13 +63,13 @@ - Get a configuration value. - Ottieni un valore di configurazione. + Get a configuration value + Ottieni un valore di configurazione. - The configuration key to retrieve. - Chiave di configurazione da recuperare. + The configuration key to retrieve + Chiave di configurazione da recuperare. @@ -98,8 +98,8 @@ - Display configuration file paths and available features. - Visualizza i percorsi dei file di configurazione e le funzionalità disponibili. + Display configuration file paths and available features + Visualizza i percorsi dei file di configurazione e le funzionalità disponibili. @@ -108,8 +108,8 @@ - Output information in JSON format. - Restituisce le informazioni in formato JSON. + Output information in JSON format + Restituisce le informazioni in formato JSON. @@ -128,13 +128,13 @@ - Show all available features that can be configured. - Show all available features that can be configured. + Show all available features that can be configured + Show all available features that can be configured - List all configuration values. - Elenca tutti i valori di configurazione. + List all configuration values + Elenca tutti i valori di configurazione. @@ -158,18 +158,18 @@ - Set a configuration value. - Imposta un valore di configurazione. + Set a configuration value + Imposta un valore di configurazione. - Set the configuration value globally in $HOME/.aspire/settings.json instead of the local settings file. - Imposta il valore di configurazione a livello globale in $HOME/.fqd/settings.json anziché nel file di impostazioni locali. + Set the configuration value globally in $HOME/.aspire/settings.json instead of the local settings file + Imposta il valore di configurazione a livello globale in $HOME/.fqd/settings.json anziché nel file di impostazioni locali. - The configuration key to set. - Chiave di configurazione da impostare. + The configuration key to set + Chiave di configurazione da impostare. @@ -198,8 +198,8 @@ - The configuration value to set. - Valore di configurazione da impostare. + The configuration value to set + Valore di configurazione da impostare. diff --git a/src/Aspire.Cli/Resources/xlf/ConfigCommandStrings.ja.xlf b/src/Aspire.Cli/Resources/xlf/ConfigCommandStrings.ja.xlf index e157f0fd10b..bf5b181630e 100644 --- a/src/Aspire.Cli/Resources/xlf/ConfigCommandStrings.ja.xlf +++ b/src/Aspire.Cli/Resources/xlf/ConfigCommandStrings.ja.xlf @@ -28,18 +28,18 @@ {0} is the key, {1} is the value - Delete a configuration value. - 構成値を削除します。 + Delete a configuration value + 構成値を削除します。 - Delete the configuration value from the global $HOME/.aspire/settings.json instead of the local settings file. - ローカル設定ファイルではなく、グローバルの $HOME/.aspire/settings.json から構成値を削除します。 + Delete the configuration value from the global $HOME/.aspire/settings.json instead of the local settings file + ローカル設定ファイルではなく、グローバルの $HOME/.aspire/settings.json から構成値を削除します。 - The configuration key to delete. - 削除する構成キー。 + The configuration key to delete + 削除する構成キー。 @@ -53,7 +53,7 @@ - Manage CLI configuration including feature flags. + Manage CLI configuration including feature flags 構成設定を管理します。 @@ -63,13 +63,13 @@ - Get a configuration value. - 構成値を取得します。 + Get a configuration value + 構成値を取得します。 - The configuration key to retrieve. - 取得する構成キー。 + The configuration key to retrieve + 取得する構成キー。 @@ -98,8 +98,8 @@ - Display configuration file paths and available features. - 構成ファイルのパスと使用可能な機能を表示します。 + Display configuration file paths and available features + 構成ファイルのパスと使用可能な機能を表示します。 @@ -108,8 +108,8 @@ - Output information in JSON format. - 情報を JSON 形式で出力します。 + Output information in JSON format + 情報を JSON 形式で出力します。 @@ -128,13 +128,13 @@ - Show all available features that can be configured. - Show all available features that can be configured. + Show all available features that can be configured + Show all available features that can be configured - List all configuration values. - すべての構成値を一覧表示します。 + List all configuration values + すべての構成値を一覧表示します。 @@ -158,18 +158,18 @@ - Set a configuration value. - 構成値を設定します。 + Set a configuration value + 構成値を設定します。 - Set the configuration value globally in $HOME/.aspire/settings.json instead of the local settings file. - ローカル設定ファイルではなく、$HOME/.aspire/settings.json で構成値をグローバルに設定します。 + Set the configuration value globally in $HOME/.aspire/settings.json instead of the local settings file + ローカル設定ファイルではなく、$HOME/.aspire/settings.json で構成値をグローバルに設定します。 - The configuration key to set. - 設定する構成キー。 + The configuration key to set + 設定する構成キー。 @@ -198,8 +198,8 @@ - The configuration value to set. - 設定する構成値。 + The configuration value to set + 設定する構成値。 diff --git a/src/Aspire.Cli/Resources/xlf/ConfigCommandStrings.ko.xlf b/src/Aspire.Cli/Resources/xlf/ConfigCommandStrings.ko.xlf index 8d812f13f8d..696322456a5 100644 --- a/src/Aspire.Cli/Resources/xlf/ConfigCommandStrings.ko.xlf +++ b/src/Aspire.Cli/Resources/xlf/ConfigCommandStrings.ko.xlf @@ -28,18 +28,18 @@ {0} is the key, {1} is the value - Delete a configuration value. - 구성 값을 삭제합니다. + Delete a configuration value + 구성 값을 삭제합니다. - Delete the configuration value from the global $HOME/.aspire/settings.json instead of the local settings file. - 로컬 설정 파일 대신 전역 $HOME/.log/settings.json의 구성 값을 삭제합니다. + Delete the configuration value from the global $HOME/.aspire/settings.json instead of the local settings file + 로컬 설정 파일 대신 전역 $HOME/.log/settings.json의 구성 값을 삭제합니다. - The configuration key to delete. - 삭제할 구성 키입니다. + The configuration key to delete + 삭제할 구성 키입니다. @@ -53,7 +53,7 @@ - Manage CLI configuration including feature flags. + Manage CLI configuration including feature flags 구성 설정을 관리합니다. @@ -63,13 +63,13 @@ - Get a configuration value. - 구성 값을 가져옵니다. + Get a configuration value + 구성 값을 가져옵니다. - The configuration key to retrieve. - 검색할 구성 키입니다. + The configuration key to retrieve + 검색할 구성 키입니다. @@ -98,8 +98,8 @@ - Display configuration file paths and available features. - 구성 파일 경로 및 사용 가능한 기능을 표시합니다. + Display configuration file paths and available features + 구성 파일 경로 및 사용 가능한 기능을 표시합니다. @@ -108,8 +108,8 @@ - Output information in JSON format. - JSON 형식으로 정보를 출력합니다. + Output information in JSON format + JSON 형식으로 정보를 출력합니다. @@ -128,13 +128,13 @@ - Show all available features that can be configured. - Show all available features that can be configured. + Show all available features that can be configured + Show all available features that can be configured - List all configuration values. - 모든 구성 값을 나열합니다. + List all configuration values + 모든 구성 값을 나열합니다. @@ -158,18 +158,18 @@ - Set a configuration value. - 구성 값을 설정합니다. + Set a configuration value + 구성 값을 설정합니다. - Set the configuration value globally in $HOME/.aspire/settings.json instead of the local settings file. - 로컬 설정 파일 대신 $HOME/.aspire/settings.json에서 전역적으로 구성 값을 설정합니다. + Set the configuration value globally in $HOME/.aspire/settings.json instead of the local settings file + 로컬 설정 파일 대신 $HOME/.aspire/settings.json에서 전역적으로 구성 값을 설정합니다. - The configuration key to set. - 설정할 구성 키입니다. + The configuration key to set + 설정할 구성 키입니다. @@ -198,8 +198,8 @@ - The configuration value to set. - 설정할 구성 값입니다. + The configuration value to set + 설정할 구성 값입니다. diff --git a/src/Aspire.Cli/Resources/xlf/ConfigCommandStrings.pl.xlf b/src/Aspire.Cli/Resources/xlf/ConfigCommandStrings.pl.xlf index f01c9e31c12..f708cf2a468 100644 --- a/src/Aspire.Cli/Resources/xlf/ConfigCommandStrings.pl.xlf +++ b/src/Aspire.Cli/Resources/xlf/ConfigCommandStrings.pl.xlf @@ -28,18 +28,18 @@ {0} is the key, {1} is the value - Delete a configuration value. - Usuń wartość konfiguracji. + Delete a configuration value + Usuń wartość konfiguracji. - Delete the configuration value from the global $HOME/.aspire/settings.json instead of the local settings file. - Usuń wartość konfiguracji z globalnego pliku $HOME/.settings.json zamiast z pliku ustawień lokalnych. + Delete the configuration value from the global $HOME/.aspire/settings.json instead of the local settings file + Usuń wartość konfiguracji z globalnego pliku $HOME/.settings.json zamiast z pliku ustawień lokalnych. - The configuration key to delete. - Klucz konfiguracji do usunięcia. + The configuration key to delete + Klucz konfiguracji do usunięcia. @@ -53,7 +53,7 @@ - Manage CLI configuration including feature flags. + Manage CLI configuration including feature flags Zarządzaj ustawieniami konfiguracji. @@ -63,13 +63,13 @@ - Get a configuration value. - Pobierz wartość konfiguracji. + Get a configuration value + Pobierz wartość konfiguracji. - The configuration key to retrieve. - Klucz konfiguracji do pobrania. + The configuration key to retrieve + Klucz konfiguracji do pobrania. @@ -98,8 +98,8 @@ - Display configuration file paths and available features. - Pokaż ścieżki plików konfiguracyjnych i dostępne funkcje. + Display configuration file paths and available features + Pokaż ścieżki plików konfiguracyjnych i dostępne funkcje. @@ -108,8 +108,8 @@ - Output information in JSON format. - Wyświetl informacje w formacie JSON. + Output information in JSON format + Wyświetl informacje w formacie JSON. @@ -128,13 +128,13 @@ - Show all available features that can be configured. - Show all available features that can be configured. + Show all available features that can be configured + Show all available features that can be configured - List all configuration values. - Wyświetl listę wszystkich wartości konfiguracji. + List all configuration values + Wyświetl listę wszystkich wartości konfiguracji. @@ -158,18 +158,18 @@ - Set a configuration value. - Ustaw wartość konfiguracji. + Set a configuration value + Ustaw wartość konfiguracji. - Set the configuration value globally in $HOME/.aspire/settings.json instead of the local settings file. - Ustaw wartość konfiguracji globalnie w pliku $HOME/.settings.json zamiast w pliku ustawień lokalnych. + Set the configuration value globally in $HOME/.aspire/settings.json instead of the local settings file + Ustaw wartość konfiguracji globalnie w pliku $HOME/.settings.json zamiast w pliku ustawień lokalnych. - The configuration key to set. - Klucz konfiguracji do ustawienia. + The configuration key to set + Klucz konfiguracji do ustawienia. @@ -198,8 +198,8 @@ - The configuration value to set. - Wartość konfiguracji do ustawienia. + The configuration value to set + Wartość konfiguracji do ustawienia. diff --git a/src/Aspire.Cli/Resources/xlf/ConfigCommandStrings.pt-BR.xlf b/src/Aspire.Cli/Resources/xlf/ConfigCommandStrings.pt-BR.xlf index 3c971d9320e..d626c2865cc 100644 --- a/src/Aspire.Cli/Resources/xlf/ConfigCommandStrings.pt-BR.xlf +++ b/src/Aspire.Cli/Resources/xlf/ConfigCommandStrings.pt-BR.xlf @@ -28,18 +28,18 @@ {0} is the key, {1} is the value - Delete a configuration value. - Exclua um valor de configuração. + Delete a configuration value + Exclua um valor de configuração. - Delete the configuration value from the global $HOME/.aspire/settings.json instead of the local settings file. - Exclua o valor de configuração do arquivo global $HOME/.aspire/settings.json em vez do arquivo de configurações local. + Delete the configuration value from the global $HOME/.aspire/settings.json instead of the local settings file + Exclua o valor de configuração do arquivo global $HOME/.aspire/settings.json em vez do arquivo de configurações local. - The configuration key to delete. - A chave de configuração a ser excluída. + The configuration key to delete + A chave de configuração a ser excluída. @@ -53,7 +53,7 @@ - Manage CLI configuration including feature flags. + Manage CLI configuration including feature flags Gerencie as definições de configuração. @@ -63,13 +63,13 @@ - Get a configuration value. - Obtenha um valor de configuração. + Get a configuration value + Obtenha um valor de configuração. - The configuration key to retrieve. - A chave de configuração a ser recuperada. + The configuration key to retrieve + A chave de configuração a ser recuperada. @@ -98,8 +98,8 @@ - Display configuration file paths and available features. - Exiba os caminhos de arquivo de configuração e recursos disponíveis. + Display configuration file paths and available features + Exiba os caminhos de arquivo de configuração e recursos disponíveis. @@ -108,8 +108,8 @@ - Output information in JSON format. - Informações de saída no formato JSON. + Output information in JSON format + Informações de saída no formato JSON. @@ -128,13 +128,13 @@ - Show all available features that can be configured. - Show all available features that can be configured. + Show all available features that can be configured + Show all available features that can be configured - List all configuration values. - Liste todos os valores de configuração. + List all configuration values + Liste todos os valores de configuração. @@ -158,18 +158,18 @@ - Set a configuration value. - Defina um valor de configuração. + Set a configuration value + Defina um valor de configuração. - Set the configuration value globally in $HOME/.aspire/settings.json instead of the local settings file. - Defina o valor de configuração globalmente em $HOME/.aspire/settings.json em vez do arquivo de configurações local. + Set the configuration value globally in $HOME/.aspire/settings.json instead of the local settings file + Defina o valor de configuração globalmente em $HOME/.aspire/settings.json em vez do arquivo de configurações local. - The configuration key to set. - A chave de configuração a ser definida. + The configuration key to set + A chave de configuração a ser definida. @@ -198,8 +198,8 @@ - The configuration value to set. - O valor de configuração a ser definido. + The configuration value to set + O valor de configuração a ser definido. diff --git a/src/Aspire.Cli/Resources/xlf/ConfigCommandStrings.ru.xlf b/src/Aspire.Cli/Resources/xlf/ConfigCommandStrings.ru.xlf index 9a4eaaf135e..7073843a8d5 100644 --- a/src/Aspire.Cli/Resources/xlf/ConfigCommandStrings.ru.xlf +++ b/src/Aspire.Cli/Resources/xlf/ConfigCommandStrings.ru.xlf @@ -28,18 +28,18 @@ {0} is the key, {1} is the value - Delete a configuration value. - Удаляет значение конфигурации. + Delete a configuration value + Удаляет значение конфигурации. - Delete the configuration value from the global $HOME/.aspire/settings.json instead of the local settings file. - Удаляет значение конфигурации из глобального файла $HOME/.aspire/settings.json вместо локального файла настроек. + Delete the configuration value from the global $HOME/.aspire/settings.json instead of the local settings file + Удаляет значение конфигурации из глобального файла $HOME/.aspire/settings.json вместо локального файла настроек. - The configuration key to delete. - Ключ конфигурации, который следует удалить. + The configuration key to delete + Ключ конфигурации, который следует удалить. @@ -53,7 +53,7 @@ - Manage CLI configuration including feature flags. + Manage CLI configuration including feature flags Управление параметрами конфигурации. @@ -63,13 +63,13 @@ - Get a configuration value. - Получает значение конфигурации. + Get a configuration value + Получает значение конфигурации. - The configuration key to retrieve. - Ключ конфигурации, который следует получить. + The configuration key to retrieve + Ключ конфигурации, который следует получить. @@ -98,8 +98,8 @@ - Display configuration file paths and available features. - Отобразить пути к файлам конфигурации и доступные функции. + Display configuration file paths and available features + Отобразить пути к файлам конфигурации и доступные функции. @@ -108,8 +108,8 @@ - Output information in JSON format. - Вывод информации в формате JSON. + Output information in JSON format + Вывод информации в формате JSON. @@ -128,13 +128,13 @@ - Show all available features that can be configured. - Show all available features that can be configured. + Show all available features that can be configured + Show all available features that can be configured - List all configuration values. - Перечислить все значения конфигурации. + List all configuration values + Перечислить все значения конфигурации. @@ -158,18 +158,18 @@ - Set a configuration value. - Задает значение конфигурации. + Set a configuration value + Задает значение конфигурации. - Set the configuration value globally in $HOME/.aspire/settings.json instead of the local settings file. - Устанавливает значение конфигурации глобально в файле $HOME/.aspire/settings.json вместо локального файла настроек. + Set the configuration value globally in $HOME/.aspire/settings.json instead of the local settings file + Устанавливает значение конфигурации глобально в файле $HOME/.aspire/settings.json вместо локального файла настроек. - The configuration key to set. - Ключ конфигурации, для которого следует задать значение. + The configuration key to set + Ключ конфигурации, для которого следует задать значение. @@ -198,8 +198,8 @@ - The configuration value to set. - Значение конфигурации, которое следует задать. + The configuration value to set + Значение конфигурации, которое следует задать. diff --git a/src/Aspire.Cli/Resources/xlf/ConfigCommandStrings.tr.xlf b/src/Aspire.Cli/Resources/xlf/ConfigCommandStrings.tr.xlf index 807ab4b5c4a..fd69489e637 100644 --- a/src/Aspire.Cli/Resources/xlf/ConfigCommandStrings.tr.xlf +++ b/src/Aspire.Cli/Resources/xlf/ConfigCommandStrings.tr.xlf @@ -28,18 +28,18 @@ {0} is the key, {1} is the value - Delete a configuration value. - Bir yapılandırma değerini silin. + Delete a configuration value + Bir yapılandırma değerini silin. - Delete the configuration value from the global $HOME/.aspire/settings.json instead of the local settings file. - Yapılandırma değerini, yerel ayarlar dosyası yerine global $HOME/.aspire/settings.json dosyasından silin. + Delete the configuration value from the global $HOME/.aspire/settings.json instead of the local settings file + Yapılandırma değerini, yerel ayarlar dosyası yerine global $HOME/.aspire/settings.json dosyasından silin. - The configuration key to delete. - Silinecek yapılandırma anahtarı. + The configuration key to delete + Silinecek yapılandırma anahtarı. @@ -53,7 +53,7 @@ - Manage CLI configuration including feature flags. + Manage CLI configuration including feature flags Yapılandırma ayarlarını yönetin. @@ -63,13 +63,13 @@ - Get a configuration value. - Bir yapılandırma değeri getir. + Get a configuration value + Bir yapılandırma değeri getir. - The configuration key to retrieve. - Getirilecek yapılandırma anahtarı. + The configuration key to retrieve + Getirilecek yapılandırma anahtarı. @@ -98,8 +98,8 @@ - Display configuration file paths and available features. - Yapılandırma dosyası yollarını ve mevcut özellikleri görüntüle. + Display configuration file paths and available features + Yapılandırma dosyası yollarını ve mevcut özellikleri görüntüle. @@ -108,8 +108,8 @@ - Output information in JSON format. - Bilgileri JSON biçiminde çıkar. + Output information in JSON format + Bilgileri JSON biçiminde çıkar. @@ -128,13 +128,13 @@ - Show all available features that can be configured. - Show all available features that can be configured. + Show all available features that can be configured + Show all available features that can be configured - List all configuration values. - Tüm yapılandırma değerlerini listeleyin. + List all configuration values + Tüm yapılandırma değerlerini listeleyin. @@ -158,18 +158,18 @@ - Set a configuration value. - Bir yapılandırma değeri ayarla. + Set a configuration value + Bir yapılandırma değeri ayarla. - Set the configuration value globally in $HOME/.aspire/settings.json instead of the local settings file. - Yapılandırma değerini global olarak, yerel ayarlar dosyası yerine $HOME/.aspire/settings.json dosyasında ayarlayın. + Set the configuration value globally in $HOME/.aspire/settings.json instead of the local settings file + Yapılandırma değerini global olarak, yerel ayarlar dosyası yerine $HOME/.aspire/settings.json dosyasında ayarlayın. - The configuration key to set. - Ayarlanacak yapılandırma anahtarı. + The configuration key to set + Ayarlanacak yapılandırma anahtarı. @@ -198,8 +198,8 @@ - The configuration value to set. - Ayarlanacak yapılandırma değeri. + The configuration value to set + Ayarlanacak yapılandırma değeri. diff --git a/src/Aspire.Cli/Resources/xlf/ConfigCommandStrings.zh-Hans.xlf b/src/Aspire.Cli/Resources/xlf/ConfigCommandStrings.zh-Hans.xlf index 17f465a69e3..ec974a59716 100644 --- a/src/Aspire.Cli/Resources/xlf/ConfigCommandStrings.zh-Hans.xlf +++ b/src/Aspire.Cli/Resources/xlf/ConfigCommandStrings.zh-Hans.xlf @@ -28,18 +28,18 @@ {0} is the key, {1} is the value - Delete a configuration value. - 删除配置值。 + Delete a configuration value + 删除配置值。 - Delete the configuration value from the global $HOME/.aspire/settings.json instead of the local settings file. - 从全局 $HOME/.aspire/settings.json 而不是本地设置文件中删除配置值。 + Delete the configuration value from the global $HOME/.aspire/settings.json instead of the local settings file + 从全局 $HOME/.aspire/settings.json 而不是本地设置文件中删除配置值。 - The configuration key to delete. - 要删除的配置键。 + The configuration key to delete + 要删除的配置键。 @@ -53,7 +53,7 @@ - Manage CLI configuration including feature flags. + Manage CLI configuration including feature flags 管理配置设置。 @@ -63,13 +63,13 @@ - Get a configuration value. - 获取配置值。 + Get a configuration value + 获取配置值。 - The configuration key to retrieve. - 要检索的配置键。 + The configuration key to retrieve + 要检索的配置键。 @@ -98,8 +98,8 @@ - Display configuration file paths and available features. - 显示配置文件路径和可用功能。 + Display configuration file paths and available features + 显示配置文件路径和可用功能。 @@ -108,8 +108,8 @@ - Output information in JSON format. - 以 JSON 格式输出信息。 + Output information in JSON format + 以 JSON 格式输出信息。 @@ -128,13 +128,13 @@ - Show all available features that can be configured. - Show all available features that can be configured. + Show all available features that can be configured + Show all available features that can be configured - List all configuration values. - 列出所有配置值。 + List all configuration values + 列出所有配置值。 @@ -158,18 +158,18 @@ - Set a configuration value. - 设置配置值。 + Set a configuration value + 设置配置值。 - Set the configuration value globally in $HOME/.aspire/settings.json instead of the local settings file. - 在 $HOME/.aspire/settings.json 而不是本地设置文件中全局设置配置值。 + Set the configuration value globally in $HOME/.aspire/settings.json instead of the local settings file + 在 $HOME/.aspire/settings.json 而不是本地设置文件中全局设置配置值。 - The configuration key to set. - 要设置的配置键。 + The configuration key to set + 要设置的配置键。 @@ -198,8 +198,8 @@ - The configuration value to set. - 要设置的配置值。 + The configuration value to set + 要设置的配置值。 diff --git a/src/Aspire.Cli/Resources/xlf/ConfigCommandStrings.zh-Hant.xlf b/src/Aspire.Cli/Resources/xlf/ConfigCommandStrings.zh-Hant.xlf index 8017810d90c..1482cab40bd 100644 --- a/src/Aspire.Cli/Resources/xlf/ConfigCommandStrings.zh-Hant.xlf +++ b/src/Aspire.Cli/Resources/xlf/ConfigCommandStrings.zh-Hant.xlf @@ -28,18 +28,18 @@ {0} is the key, {1} is the value - Delete a configuration value. - 刪除設定值。 + Delete a configuration value + 刪除設定值。 - Delete the configuration value from the global $HOME/.aspire/settings.json instead of the local settings file. - 在 $HOME/.aspire/settings.json 中全域刪除設定值,而非使用本機設定檔案。 + Delete the configuration value from the global $HOME/.aspire/settings.json instead of the local settings file + 在 $HOME/.aspire/settings.json 中全域刪除設定值,而非使用本機設定檔案。 - The configuration key to delete. - 要刪除的設定金鑰。 + The configuration key to delete + 要刪除的設定金鑰。 @@ -53,7 +53,7 @@ - Manage CLI configuration including feature flags. + Manage CLI configuration including feature flags 管理組態設定。 @@ -63,13 +63,13 @@ - Get a configuration value. - 取得設定值。 + Get a configuration value + 取得設定值。 - The configuration key to retrieve. - 要擷取的設定金鑰。 + The configuration key to retrieve + 要擷取的設定金鑰。 @@ -98,8 +98,8 @@ - Display configuration file paths and available features. - 顯示設定檔路徑和可用功能。 + Display configuration file paths and available features + 顯示設定檔路徑和可用功能。 @@ -108,8 +108,8 @@ - Output information in JSON format. - 以 JSON 格式輸出資訊。 + Output information in JSON format + 以 JSON 格式輸出資訊。 @@ -128,13 +128,13 @@ - Show all available features that can be configured. - Show all available features that can be configured. + Show all available features that can be configured + Show all available features that can be configured - List all configuration values. - 列出所有設定值。 + List all configuration values + 列出所有設定值。 @@ -158,18 +158,18 @@ - Set a configuration value. - 設定設定值。 + Set a configuration value + 設定設定值。 - Set the configuration value globally in $HOME/.aspire/settings.json instead of the local settings file. - 在 $HOME/.aspire/settings.json 中全域設定設定值,而非使用本機設定檔案。 + Set the configuration value globally in $HOME/.aspire/settings.json instead of the local settings file + 在 $HOME/.aspire/settings.json 中全域設定設定值,而非使用本機設定檔案。 - The configuration key to set. - 要設定的設定金鑰。 + The configuration key to set + 要設定的設定金鑰。 @@ -198,8 +198,8 @@ - The configuration value to set. - 要設定的設定值。 + The configuration value to set + 要設定的設定值。 diff --git a/src/Aspire.Cli/Resources/xlf/DeployCommandStrings.cs.xlf b/src/Aspire.Cli/Resources/xlf/DeployCommandStrings.cs.xlf index 50aa2d995ea..c5b71aac740 100644 --- a/src/Aspire.Cli/Resources/xlf/DeployCommandStrings.cs.xlf +++ b/src/Aspire.Cli/Resources/xlf/DeployCommandStrings.cs.xlf @@ -2,13 +2,18 @@ + + Clear the deployment cache associated with the current environment and do not save deployment state + Clear the deployment cache associated with the current environment and do not save deployment state + + The deployment was canceled. Nasazení bylo zrušeno. - Deploy an apphost to its deployment targets. (Preview) + Deploy an apphost to its deployment targets (Preview) Nasaďte obsah hostitele aplikací Aspire do svých definovaných cílů nasazení. (Preview) @@ -23,8 +28,8 @@ - The optional output path for deployment artifacts. - Volitelná výstupní cesta pro artefakty nasazení. + The optional output path for deployment artifacts + Volitelná výstupní cesta pro artefakty nasazení. diff --git a/src/Aspire.Cli/Resources/xlf/DeployCommandStrings.de.xlf b/src/Aspire.Cli/Resources/xlf/DeployCommandStrings.de.xlf index 3b97d463128..f27a8018064 100644 --- a/src/Aspire.Cli/Resources/xlf/DeployCommandStrings.de.xlf +++ b/src/Aspire.Cli/Resources/xlf/DeployCommandStrings.de.xlf @@ -2,13 +2,18 @@ + + Clear the deployment cache associated with the current environment and do not save deployment state + Clear the deployment cache associated with the current environment and do not save deployment state + + The deployment was canceled. Die Bereitstellung wurde abgebrochen. - Deploy an apphost to its deployment targets. (Preview) + Deploy an apphost to its deployment targets (Preview) Stellen Sie die Inhalte eines Aspire-Apphosts auf den definierten Bereitstellungszielen bereit. (Vorschau) @@ -23,8 +28,8 @@ - The optional output path for deployment artifacts. - Der optionale Ausgabepfad für Bereitstellungsartefakte. + The optional output path for deployment artifacts + Der optionale Ausgabepfad für Bereitstellungsartefakte. diff --git a/src/Aspire.Cli/Resources/xlf/DeployCommandStrings.es.xlf b/src/Aspire.Cli/Resources/xlf/DeployCommandStrings.es.xlf index 617d7f3b119..2025a2c87b3 100644 --- a/src/Aspire.Cli/Resources/xlf/DeployCommandStrings.es.xlf +++ b/src/Aspire.Cli/Resources/xlf/DeployCommandStrings.es.xlf @@ -2,13 +2,18 @@ + + Clear the deployment cache associated with the current environment and do not save deployment state + Clear the deployment cache associated with the current environment and do not save deployment state + + The deployment was canceled. La implementación se canceló. - Deploy an apphost to its deployment targets. (Preview) + Deploy an apphost to its deployment targets (Preview) Implemente el contenido de un apphost de Aspire en sus destinos de implementación definidos. (Versión preliminar) @@ -23,8 +28,8 @@ - The optional output path for deployment artifacts. - Ruta de acceso de salida opcional para los artefactos de implementación. + The optional output path for deployment artifacts + Ruta de acceso de salida opcional para los artefactos de implementación. diff --git a/src/Aspire.Cli/Resources/xlf/DeployCommandStrings.fr.xlf b/src/Aspire.Cli/Resources/xlf/DeployCommandStrings.fr.xlf index 6b5957d4717..76a8d9e50c8 100644 --- a/src/Aspire.Cli/Resources/xlf/DeployCommandStrings.fr.xlf +++ b/src/Aspire.Cli/Resources/xlf/DeployCommandStrings.fr.xlf @@ -2,13 +2,18 @@ + + Clear the deployment cache associated with the current environment and do not save deployment state + Clear the deployment cache associated with the current environment and do not save deployment state + + The deployment was canceled. Le déploiement a été annulé. - Deploy an apphost to its deployment targets. (Preview) + Deploy an apphost to its deployment targets (Preview) Déployez le contenu d’un Aspire AppHost vers les cibles de déploiement définies. (Préversion) @@ -23,8 +28,8 @@ - The optional output path for deployment artifacts. - Le chemin de sortie optionnel des artefacts de déploiement. + The optional output path for deployment artifacts + Le chemin de sortie optionnel des artefacts de déploiement. diff --git a/src/Aspire.Cli/Resources/xlf/DeployCommandStrings.it.xlf b/src/Aspire.Cli/Resources/xlf/DeployCommandStrings.it.xlf index 1086496adbb..78e14bdc85a 100644 --- a/src/Aspire.Cli/Resources/xlf/DeployCommandStrings.it.xlf +++ b/src/Aspire.Cli/Resources/xlf/DeployCommandStrings.it.xlf @@ -2,13 +2,18 @@ + + Clear the deployment cache associated with the current environment and do not save deployment state + Clear the deployment cache associated with the current environment and do not save deployment state + + The deployment was canceled. La distribuzione è stata annullata. - Deploy an apphost to its deployment targets. (Preview) + Deploy an apphost to its deployment targets (Preview) Distribuire il contenuto di un AppHost Aspire alle destinazioni di distribuzione definite. (Anteprima) @@ -23,8 +28,8 @@ - The optional output path for deployment artifacts. - Percorso di output facoltativo per gli artefatti di distribuzione. + The optional output path for deployment artifacts + Percorso di output facoltativo per gli artefatti di distribuzione. diff --git a/src/Aspire.Cli/Resources/xlf/DeployCommandStrings.ja.xlf b/src/Aspire.Cli/Resources/xlf/DeployCommandStrings.ja.xlf index 5e6e8925f12..41d866480eb 100644 --- a/src/Aspire.Cli/Resources/xlf/DeployCommandStrings.ja.xlf +++ b/src/Aspire.Cli/Resources/xlf/DeployCommandStrings.ja.xlf @@ -2,13 +2,18 @@ + + Clear the deployment cache associated with the current environment and do not save deployment state + Clear the deployment cache associated with the current environment and do not save deployment state + + The deployment was canceled. デプロイが取り消されました。 - Deploy an apphost to its deployment targets. (Preview) + Deploy an apphost to its deployment targets (Preview) Aspire AppHost のコンテンツを定義された展開先にデプロイします。(プレビュー) @@ -23,8 +28,8 @@ - The optional output path for deployment artifacts. - デプロイ成果物のオプションの出力パス。 + The optional output path for deployment artifacts + デプロイ成果物のオプションの出力パス。 diff --git a/src/Aspire.Cli/Resources/xlf/DeployCommandStrings.ko.xlf b/src/Aspire.Cli/Resources/xlf/DeployCommandStrings.ko.xlf index 54a7d768024..5d5f875b91b 100644 --- a/src/Aspire.Cli/Resources/xlf/DeployCommandStrings.ko.xlf +++ b/src/Aspire.Cli/Resources/xlf/DeployCommandStrings.ko.xlf @@ -2,13 +2,18 @@ + + Clear the deployment cache associated with the current environment and do not save deployment state + Clear the deployment cache associated with the current environment and do not save deployment state + + The deployment was canceled. 배포를 취소했습니다. - Deploy an apphost to its deployment targets. (Preview) + Deploy an apphost to its deployment targets (Preview) Aspire 앱호스트의 콘텐츠를 정의된 배포 대상에 배포하세요. (미리 보기) @@ -23,8 +28,8 @@ - The optional output path for deployment artifacts. - 배포 아티팩트의 선택적 출력 경로입니다. + The optional output path for deployment artifacts + 배포 아티팩트의 선택적 출력 경로입니다. diff --git a/src/Aspire.Cli/Resources/xlf/DeployCommandStrings.pl.xlf b/src/Aspire.Cli/Resources/xlf/DeployCommandStrings.pl.xlf index 606bf14aee0..660bfbdc662 100644 --- a/src/Aspire.Cli/Resources/xlf/DeployCommandStrings.pl.xlf +++ b/src/Aspire.Cli/Resources/xlf/DeployCommandStrings.pl.xlf @@ -2,13 +2,18 @@ + + Clear the deployment cache associated with the current environment and do not save deployment state + Clear the deployment cache associated with the current environment and do not save deployment state + + The deployment was canceled. Wdrażanie zostało anulowane. - Deploy an apphost to its deployment targets. (Preview) + Deploy an apphost to its deployment targets (Preview) Wdróż zawartość hosta AppHost platformy Aspire w zdefiniowanych miejscach docelowych wdrożenia. (Wersja zapoznawcza) @@ -23,8 +28,8 @@ - The optional output path for deployment artifacts. - Opcjonalna ścieżka wyjściowa artefaktów wdrażania. + The optional output path for deployment artifacts + Opcjonalna ścieżka wyjściowa artefaktów wdrażania. diff --git a/src/Aspire.Cli/Resources/xlf/DeployCommandStrings.pt-BR.xlf b/src/Aspire.Cli/Resources/xlf/DeployCommandStrings.pt-BR.xlf index 3b26ab6f083..85a1b1c698b 100644 --- a/src/Aspire.Cli/Resources/xlf/DeployCommandStrings.pt-BR.xlf +++ b/src/Aspire.Cli/Resources/xlf/DeployCommandStrings.pt-BR.xlf @@ -2,13 +2,18 @@ + + Clear the deployment cache associated with the current environment and do not save deployment state + Clear the deployment cache associated with the current environment and do not save deployment state + + The deployment was canceled. A implantação foi cancelada. - Deploy an apphost to its deployment targets. (Preview) + Deploy an apphost to its deployment targets (Preview) Implante o conteúdo de um Aspire apphost em seus destinos de implantação definidos. (Versão Prévia) @@ -23,8 +28,8 @@ - The optional output path for deployment artifacts. - O caminho de saída opcional para artefatos de implantação. + The optional output path for deployment artifacts + O caminho de saída opcional para artefatos de implantação. diff --git a/src/Aspire.Cli/Resources/xlf/DeployCommandStrings.ru.xlf b/src/Aspire.Cli/Resources/xlf/DeployCommandStrings.ru.xlf index be0a68427fc..1e2edfa36c8 100644 --- a/src/Aspire.Cli/Resources/xlf/DeployCommandStrings.ru.xlf +++ b/src/Aspire.Cli/Resources/xlf/DeployCommandStrings.ru.xlf @@ -2,13 +2,18 @@ + + Clear the deployment cache associated with the current environment and do not save deployment state + Clear the deployment cache associated with the current environment and do not save deployment state + + The deployment was canceled. Развертывание было отменено. - Deploy an apphost to its deployment targets. (Preview) + Deploy an apphost to its deployment targets (Preview) Развернуть содержимое хоста приложений Aspire на заданных целевых объектах развертывания. (Предварительная версия) @@ -23,8 +28,8 @@ - The optional output path for deployment artifacts. - Необязательный путь вывода для артефактов развертывания. + The optional output path for deployment artifacts + Необязательный путь вывода для артефактов развертывания. diff --git a/src/Aspire.Cli/Resources/xlf/DeployCommandStrings.tr.xlf b/src/Aspire.Cli/Resources/xlf/DeployCommandStrings.tr.xlf index 7efb8bb9815..9869e07f35c 100644 --- a/src/Aspire.Cli/Resources/xlf/DeployCommandStrings.tr.xlf +++ b/src/Aspire.Cli/Resources/xlf/DeployCommandStrings.tr.xlf @@ -2,13 +2,18 @@ + + Clear the deployment cache associated with the current environment and do not save deployment state + Clear the deployment cache associated with the current environment and do not save deployment state + + The deployment was canceled. Dağıtım iptal edildi. - Deploy an apphost to its deployment targets. (Preview) + Deploy an apphost to its deployment targets (Preview) Bir Aspire AppHost içeriğini tanımlanan dağıtım hedeflerine dağıtın. (Önizleme) @@ -23,8 +28,8 @@ - The optional output path for deployment artifacts. - Dağıtım yapıtları için isteğe bağlı çıktı yolu. + The optional output path for deployment artifacts + Dağıtım yapıtları için isteğe bağlı çıktı yolu. diff --git a/src/Aspire.Cli/Resources/xlf/DeployCommandStrings.zh-Hans.xlf b/src/Aspire.Cli/Resources/xlf/DeployCommandStrings.zh-Hans.xlf index 36d40834faa..5a433e2b565 100644 --- a/src/Aspire.Cli/Resources/xlf/DeployCommandStrings.zh-Hans.xlf +++ b/src/Aspire.Cli/Resources/xlf/DeployCommandStrings.zh-Hans.xlf @@ -2,13 +2,18 @@ + + Clear the deployment cache associated with the current environment and do not save deployment state + Clear the deployment cache associated with the current environment and do not save deployment state + + The deployment was canceled. 已取消部署。 - Deploy an apphost to its deployment targets. (Preview) + Deploy an apphost to its deployment targets (Preview) 将 Aspire 应用主机的内容部署到其定义的部署目标。(预览版) @@ -23,8 +28,8 @@ - The optional output path for deployment artifacts. - 部署工件的可选输出路径。 + The optional output path for deployment artifacts + 部署工件的可选输出路径。 diff --git a/src/Aspire.Cli/Resources/xlf/DeployCommandStrings.zh-Hant.xlf b/src/Aspire.Cli/Resources/xlf/DeployCommandStrings.zh-Hant.xlf index 4a97c931919..a307f5bb7a3 100644 --- a/src/Aspire.Cli/Resources/xlf/DeployCommandStrings.zh-Hant.xlf +++ b/src/Aspire.Cli/Resources/xlf/DeployCommandStrings.zh-Hant.xlf @@ -2,13 +2,18 @@ + + Clear the deployment cache associated with the current environment and do not save deployment state + Clear the deployment cache associated with the current environment and do not save deployment state + + The deployment was canceled. 部署已取消。 - Deploy an apphost to its deployment targets. (Preview) + Deploy an apphost to its deployment targets (Preview) 將 Aspire AppHost 的內容部署至其定義的部署目標。(預覽) @@ -23,8 +28,8 @@ - The optional output path for deployment artifacts. - 部署成品的選用輸出路徑。 + The optional output path for deployment artifacts + 部署成品的選用輸出路徑。 diff --git a/src/Aspire.Cli/Resources/xlf/DescribeCommandStrings.cs.xlf b/src/Aspire.Cli/Resources/xlf/DescribeCommandStrings.cs.xlf index 7452ac683d7..ba202be766f 100644 --- a/src/Aspire.Cli/Resources/xlf/DescribeCommandStrings.cs.xlf +++ b/src/Aspire.Cli/Resources/xlf/DescribeCommandStrings.cs.xlf @@ -3,13 +3,13 @@ - Describe resources in a running apphost. + Describe resources in a running apphost Umožňuje zobrazit snímky prostředků ze spuštěného hostitele aplikací Aspire. - Continuously stream resource state changes. - Continuously stream resource state changes. + Continuously stream resource state changes + Continuously stream resource state changes @@ -38,18 +38,18 @@ - Output format (Table or Json). + Output format (Table or Json) Výstup ve formátu JSON pro spotřebu počítače. - No AppHost project found. - Nenašel se žádný projekt hostitele aplikací. + No apphost project found. + Nenašel se žádný projekt hostitele aplikací. The name of the resource to display. If not specified, all resources are shown. - Název prostředku, který se má zobrazit. Pokud se nezadá, zobrazí se všechny prostředky. + Název prostředku, který se má zobrazit. Pokud se nezadá, zobrazí se všechny prostředky. diff --git a/src/Aspire.Cli/Resources/xlf/DescribeCommandStrings.de.xlf b/src/Aspire.Cli/Resources/xlf/DescribeCommandStrings.de.xlf index 45e582964e6..b70c431245b 100644 --- a/src/Aspire.Cli/Resources/xlf/DescribeCommandStrings.de.xlf +++ b/src/Aspire.Cli/Resources/xlf/DescribeCommandStrings.de.xlf @@ -3,13 +3,13 @@ - Describe resources in a running apphost. + Describe resources in a running apphost Zeigen Sie Ressourcenmomentaufnahmen von einem laufenden Aspire-AppHost an. - Continuously stream resource state changes. - Continuously stream resource state changes. + Continuously stream resource state changes + Continuously stream resource state changes @@ -38,18 +38,18 @@ - Output format (Table or Json). + Output format (Table or Json) Ausgabe im JSON-Format zur maschinellen Verarbeitung. - No AppHost project found. - Kein AppHost-Projekt gefunden. + No apphost project found. + Kein AppHost-Projekt gefunden. The name of the resource to display. If not specified, all resources are shown. - Der Name der anzuzeigenden Ressource. Wenn keine Angabe erfolgt, werden alle Ressourcen angezeigt. + Der Name der anzuzeigenden Ressource. Wenn keine Angabe erfolgt, werden alle Ressourcen angezeigt. diff --git a/src/Aspire.Cli/Resources/xlf/DescribeCommandStrings.es.xlf b/src/Aspire.Cli/Resources/xlf/DescribeCommandStrings.es.xlf index 3110f4e2b69..4cda6fdba78 100644 --- a/src/Aspire.Cli/Resources/xlf/DescribeCommandStrings.es.xlf +++ b/src/Aspire.Cli/Resources/xlf/DescribeCommandStrings.es.xlf @@ -3,13 +3,13 @@ - Describe resources in a running apphost. + Describe resources in a running apphost Muestra instantáneas de recursos de un apphost de Aspire en ejecución. - Continuously stream resource state changes. - Continuously stream resource state changes. + Continuously stream resource state changes + Continuously stream resource state changes @@ -38,18 +38,18 @@ - Output format (Table or Json). + Output format (Table or Json) Salida en formato JSON para el consumo de la máquina. - No AppHost project found. - No se encontró ningún proyecto de AppHost. + No apphost project found. + No se encontró ningún proyecto de AppHost. The name of the resource to display. If not specified, all resources are shown. - Nombre del recurso que se va a mostrar. Si no se especifica, se muestran todos los recursos. + Nombre del recurso que se va a mostrar. Si no se especifica, se muestran todos los recursos. diff --git a/src/Aspire.Cli/Resources/xlf/DescribeCommandStrings.fr.xlf b/src/Aspire.Cli/Resources/xlf/DescribeCommandStrings.fr.xlf index f04db43cbe7..99c7bc154a5 100644 --- a/src/Aspire.Cli/Resources/xlf/DescribeCommandStrings.fr.xlf +++ b/src/Aspire.Cli/Resources/xlf/DescribeCommandStrings.fr.xlf @@ -3,13 +3,13 @@ - Describe resources in a running apphost. + Describe resources in a running apphost Afficher les instantanés de ressource d’un Apphost Aspire en cours d’exécution. - Continuously stream resource state changes. - Continuously stream resource state changes. + Continuously stream resource state changes + Continuously stream resource state changes @@ -38,18 +38,18 @@ - Output format (Table or Json). + Output format (Table or Json) Générer la sortie au format JSON pour traitement automatique. - No AppHost project found. - Désolé, aucun projet AppHost n’a été trouvé. + No apphost project found. + Désolé, aucun projet AppHost n’a été trouvé. The name of the resource to display. If not specified, all resources are shown. - Le nom de la ressource à afficher. Si aucun nom n’est spécifié, toutes les ressources sont affichées. + Le nom de la ressource à afficher. Si aucun nom n’est spécifié, toutes les ressources sont affichées. diff --git a/src/Aspire.Cli/Resources/xlf/DescribeCommandStrings.it.xlf b/src/Aspire.Cli/Resources/xlf/DescribeCommandStrings.it.xlf index 61b145ce937..af85226c479 100644 --- a/src/Aspire.Cli/Resources/xlf/DescribeCommandStrings.it.xlf +++ b/src/Aspire.Cli/Resources/xlf/DescribeCommandStrings.it.xlf @@ -3,13 +3,13 @@ - Describe resources in a running apphost. + Describe resources in a running apphost Consente di visualizzare gli snapshot delle risorse da un apphost Aspire in esecuzione. - Continuously stream resource state changes. - Continuously stream resource state changes. + Continuously stream resource state changes + Continuously stream resource state changes @@ -38,18 +38,18 @@ - Output format (Table or Json). + Output format (Table or Json) Output in formato JSON per l'utilizzo da parte del computer. - No AppHost project found. - Nessun progetto AppHost trovato. + No apphost project found. + Nessun progetto AppHost trovato. The name of the resource to display. If not specified, all resources are shown. - Nome della risorsa da visualizzare. Se non è specificato, vengono visualizzate tutte le risorse. + Nome della risorsa da visualizzare. Se non è specificato, vengono visualizzate tutte le risorse. diff --git a/src/Aspire.Cli/Resources/xlf/DescribeCommandStrings.ja.xlf b/src/Aspire.Cli/Resources/xlf/DescribeCommandStrings.ja.xlf index ec0280a7cc0..3e825693eb0 100644 --- a/src/Aspire.Cli/Resources/xlf/DescribeCommandStrings.ja.xlf +++ b/src/Aspire.Cli/Resources/xlf/DescribeCommandStrings.ja.xlf @@ -3,13 +3,13 @@ - Describe resources in a running apphost. + Describe resources in a running apphost 実行中の Aspire apphost からのリソース スナップショットを表示します。 - Continuously stream resource state changes. - Continuously stream resource state changes. + Continuously stream resource state changes + Continuously stream resource state changes @@ -38,18 +38,18 @@ - Output format (Table or Json). + Output format (Table or Json) 機械処理用の JSON 形式で出力します。 - No AppHost project found. - AppHost プロジェクトは見つかりません。 + No apphost project found. + AppHost プロジェクトは見つかりません。 The name of the resource to display. If not specified, all resources are shown. - 表示するリソースの名前。指定しない場合は、すべてのリソースが表示されます。 + 表示するリソースの名前。指定しない場合は、すべてのリソースが表示されます。 diff --git a/src/Aspire.Cli/Resources/xlf/DescribeCommandStrings.ko.xlf b/src/Aspire.Cli/Resources/xlf/DescribeCommandStrings.ko.xlf index f29e2e876c4..5023b66de69 100644 --- a/src/Aspire.Cli/Resources/xlf/DescribeCommandStrings.ko.xlf +++ b/src/Aspire.Cli/Resources/xlf/DescribeCommandStrings.ko.xlf @@ -3,13 +3,13 @@ - Describe resources in a running apphost. + Describe resources in a running apphost 실행 중인 Aspire AppHost의 리소스 스냅샷을 표시합니다. - Continuously stream resource state changes. - Continuously stream resource state changes. + Continuously stream resource state changes + Continuously stream resource state changes @@ -38,18 +38,18 @@ - Output format (Table or Json). + Output format (Table or Json) 컴퓨터 사용량에 대한 JSON형식의 출력입니다. - No AppHost project found. - AppHost 프로젝트를 찾을 수 없습니다. + No apphost project found. + AppHost 프로젝트를 찾을 수 없습니다. The name of the resource to display. If not specified, all resources are shown. - 표시할 리소스의 이름입니다. 지정하지 않으면 모든 리소스가 표시됩니다. + 표시할 리소스의 이름입니다. 지정하지 않으면 모든 리소스가 표시됩니다. diff --git a/src/Aspire.Cli/Resources/xlf/DescribeCommandStrings.pl.xlf b/src/Aspire.Cli/Resources/xlf/DescribeCommandStrings.pl.xlf index edfc919fd7c..1d4908b1bd3 100644 --- a/src/Aspire.Cli/Resources/xlf/DescribeCommandStrings.pl.xlf +++ b/src/Aspire.Cli/Resources/xlf/DescribeCommandStrings.pl.xlf @@ -3,13 +3,13 @@ - Describe resources in a running apphost. + Describe resources in a running apphost Wyświetl migawki zasobów z działającego hosta aplikacji Aspire. - Continuously stream resource state changes. - Continuously stream resource state changes. + Continuously stream resource state changes + Continuously stream resource state changes @@ -38,18 +38,18 @@ - Output format (Table or Json). + Output format (Table or Json) Wynik w formacie JSON do przetwarzania przez maszynę. - No AppHost project found. - Nie znaleziono projektu AppHost. + No apphost project found. + Nie znaleziono projektu AppHost. The name of the resource to display. If not specified, all resources are shown. - Nazwa zasobu do wyświetlenia. Jeśli nie zostanie określony, zostaną wyświetlone wszystkie zasoby. + Nazwa zasobu do wyświetlenia. Jeśli nie zostanie określony, zostaną wyświetlone wszystkie zasoby. diff --git a/src/Aspire.Cli/Resources/xlf/DescribeCommandStrings.pt-BR.xlf b/src/Aspire.Cli/Resources/xlf/DescribeCommandStrings.pt-BR.xlf index 8b0b6e30413..eaf69dc10e5 100644 --- a/src/Aspire.Cli/Resources/xlf/DescribeCommandStrings.pt-BR.xlf +++ b/src/Aspire.Cli/Resources/xlf/DescribeCommandStrings.pt-BR.xlf @@ -3,13 +3,13 @@ - Describe resources in a running apphost. + Describe resources in a running apphost Exiba instantâneos de recursos de um apphost do Aspire em execução. - Continuously stream resource state changes. - Continuously stream resource state changes. + Continuously stream resource state changes + Continuously stream resource state changes @@ -38,18 +38,18 @@ - Output format (Table or Json). + Output format (Table or Json) Saída no formato JSON para consumo do computador. - No AppHost project found. - Nenhum projeto AppHost encontrado. + No apphost project found. + Nenhum projeto AppHost encontrado. The name of the resource to display. If not specified, all resources are shown. - O nome do recurso a ser exibido. Se não for especificado, todos os recursos serão mostrados. + O nome do recurso a ser exibido. Se não for especificado, todos os recursos serão mostrados. diff --git a/src/Aspire.Cli/Resources/xlf/DescribeCommandStrings.ru.xlf b/src/Aspire.Cli/Resources/xlf/DescribeCommandStrings.ru.xlf index 712cceb832c..0d9b27d12d4 100644 --- a/src/Aspire.Cli/Resources/xlf/DescribeCommandStrings.ru.xlf +++ b/src/Aspire.Cli/Resources/xlf/DescribeCommandStrings.ru.xlf @@ -3,13 +3,13 @@ - Describe resources in a running apphost. + Describe resources in a running apphost Отображать моментальные снимки ресурсов из запущенного хоста приложений Aspire. - Continuously stream resource state changes. - Continuously stream resource state changes. + Continuously stream resource state changes + Continuously stream resource state changes @@ -38,18 +38,18 @@ - Output format (Table or Json). + Output format (Table or Json) Вывод в формате JSON для потребления компьютером. - No AppHost project found. - Проект хоста приложений не найден. + No apphost project found. + Проект хоста приложений не найден. The name of the resource to display. If not specified, all resources are shown. - Имя ресурса для отображения. Если не указано, отображаются все ресурсы. + Имя ресурса для отображения. Если не указано, отображаются все ресурсы. diff --git a/src/Aspire.Cli/Resources/xlf/DescribeCommandStrings.tr.xlf b/src/Aspire.Cli/Resources/xlf/DescribeCommandStrings.tr.xlf index a1dc4f0968b..bd4945bd53e 100644 --- a/src/Aspire.Cli/Resources/xlf/DescribeCommandStrings.tr.xlf +++ b/src/Aspire.Cli/Resources/xlf/DescribeCommandStrings.tr.xlf @@ -3,13 +3,13 @@ - Describe resources in a running apphost. + Describe resources in a running apphost Çalışan bir Aspire apphost'tan kaynak anlık görüntülerini göster. - Continuously stream resource state changes. - Continuously stream resource state changes. + Continuously stream resource state changes + Continuously stream resource state changes @@ -38,18 +38,18 @@ - Output format (Table or Json). + Output format (Table or Json) Makine tarafından kullanılmak üzere JSON biçiminde çıktı ver. - No AppHost project found. - AppHost projesi bulunamadı. + No apphost project found. + AppHost projesi bulunamadı. The name of the resource to display. If not specified, all resources are shown. - Görüntülenecek kaynağın adı. Belirtilmezse tüm kaynaklar gösterilir. + Görüntülenecek kaynağın adı. Belirtilmezse tüm kaynaklar gösterilir. diff --git a/src/Aspire.Cli/Resources/xlf/DescribeCommandStrings.zh-Hans.xlf b/src/Aspire.Cli/Resources/xlf/DescribeCommandStrings.zh-Hans.xlf index 8cd0db567d5..19ae9a9cdf6 100644 --- a/src/Aspire.Cli/Resources/xlf/DescribeCommandStrings.zh-Hans.xlf +++ b/src/Aspire.Cli/Resources/xlf/DescribeCommandStrings.zh-Hans.xlf @@ -3,13 +3,13 @@ - Describe resources in a running apphost. + Describe resources in a running apphost 显示正在运行的 Aspire 应用主机中的资源快照。 - Continuously stream resource state changes. - Continuously stream resource state changes. + Continuously stream resource state changes + Continuously stream resource state changes @@ -38,18 +38,18 @@ - Output format (Table or Json). + Output format (Table or Json) 以 JSON 格式输出,供计算机使用。 - No AppHost project found. - 找不到 AppHost 项目。 + No apphost project found. + 找不到 AppHost 项目。 The name of the resource to display. If not specified, all resources are shown. - 要显示的资源名称。如果未指定,则显示所有资源。 + 要显示的资源名称。如果未指定,则显示所有资源。 diff --git a/src/Aspire.Cli/Resources/xlf/DescribeCommandStrings.zh-Hant.xlf b/src/Aspire.Cli/Resources/xlf/DescribeCommandStrings.zh-Hant.xlf index 8c36c4b4709..4ef0f99a8c8 100644 --- a/src/Aspire.Cli/Resources/xlf/DescribeCommandStrings.zh-Hant.xlf +++ b/src/Aspire.Cli/Resources/xlf/DescribeCommandStrings.zh-Hant.xlf @@ -3,13 +3,13 @@ - Describe resources in a running apphost. + Describe resources in a running apphost 顯示正在執行的 Aspire AppHost 的資源快照集。 - Continuously stream resource state changes. - Continuously stream resource state changes. + Continuously stream resource state changes + Continuously stream resource state changes @@ -38,18 +38,18 @@ - Output format (Table or Json). + Output format (Table or Json) 輸出為 JSON 格式供機器使用。 - No AppHost project found. - 找不到 AppHost 專案。 + No apphost project found. + 找不到 AppHost 專案。 The name of the resource to display. If not specified, all resources are shown. - 要顯示的資源名稱。如果未指定,則會顯示所有資源。 + 要顯示的資源名稱。如果未指定,則會顯示所有資源。 diff --git a/src/Aspire.Cli/Resources/xlf/DoCommandStrings.cs.xlf b/src/Aspire.Cli/Resources/xlf/DoCommandStrings.cs.xlf index 08a995ff4b2..ca19c982ec5 100644 --- a/src/Aspire.Cli/Resources/xlf/DoCommandStrings.cs.xlf +++ b/src/Aspire.Cli/Resources/xlf/DoCommandStrings.cs.xlf @@ -3,8 +3,8 @@ - Execute a specific pipeline step and its dependencies. (Preview) - Umožňuje provést konkrétní krok kanálu a jeho závislosti. (Preview) + Execute a specific pipeline step and its dependencies (Preview) + Umožňuje provést konkrétní krok kanálu a jeho závislosti. (Preview) @@ -28,13 +28,13 @@ - The optional output path for artifacts. - Volitelná výstupní cesta pro artefakty + The optional output path for artifacts + Volitelná výstupní cesta pro artefakty - The name of the step to execute. - Název kroku, který se má provést + The name of the step to execute + Název kroku, který se má provést diff --git a/src/Aspire.Cli/Resources/xlf/DoCommandStrings.de.xlf b/src/Aspire.Cli/Resources/xlf/DoCommandStrings.de.xlf index 4baedbf7800..908a2bd6739 100644 --- a/src/Aspire.Cli/Resources/xlf/DoCommandStrings.de.xlf +++ b/src/Aspire.Cli/Resources/xlf/DoCommandStrings.de.xlf @@ -3,8 +3,8 @@ - Execute a specific pipeline step and its dependencies. (Preview) - Führen Sie einen bestimmten Pipelineschritt und seine Abhängigkeiten aus. (Vorschau) + Execute a specific pipeline step and its dependencies (Preview) + Führen Sie einen bestimmten Pipelineschritt und seine Abhängigkeiten aus. (Vorschau) @@ -28,13 +28,13 @@ - The optional output path for artifacts. - Der optionale Ausgabepfad für Artefakte. + The optional output path for artifacts + Der optionale Ausgabepfad für Artefakte. - The name of the step to execute. - Der Name des auszuführenden Schritts. + The name of the step to execute + Der Name des auszuführenden Schritts. diff --git a/src/Aspire.Cli/Resources/xlf/DoCommandStrings.es.xlf b/src/Aspire.Cli/Resources/xlf/DoCommandStrings.es.xlf index 010b5523e4c..38ada724001 100644 --- a/src/Aspire.Cli/Resources/xlf/DoCommandStrings.es.xlf +++ b/src/Aspire.Cli/Resources/xlf/DoCommandStrings.es.xlf @@ -3,8 +3,8 @@ - Execute a specific pipeline step and its dependencies. (Preview) - Ejecute un paso de canalización específico y sus dependencias. (Versión preliminar) + Execute a specific pipeline step and its dependencies (Preview) + Ejecute un paso de canalización específico y sus dependencias. (Versión preliminar) @@ -28,13 +28,13 @@ - The optional output path for artifacts. - Ruta de acceso de salida opcional para los artefactos. + The optional output path for artifacts + Ruta de acceso de salida opcional para los artefactos. - The name of the step to execute. - Nombre del paso que se va a ejecutar. + The name of the step to execute + Nombre del paso que se va a ejecutar. diff --git a/src/Aspire.Cli/Resources/xlf/DoCommandStrings.fr.xlf b/src/Aspire.Cli/Resources/xlf/DoCommandStrings.fr.xlf index 50fd44741ef..c425967a7e0 100644 --- a/src/Aspire.Cli/Resources/xlf/DoCommandStrings.fr.xlf +++ b/src/Aspire.Cli/Resources/xlf/DoCommandStrings.fr.xlf @@ -3,8 +3,8 @@ - Execute a specific pipeline step and its dependencies. (Preview) - Exécuter une étape spécifique du pipeline ainsi que ses dépendances. (Préversion) + Execute a specific pipeline step and its dependencies (Preview) + Exécuter une étape spécifique du pipeline ainsi que ses dépendances. (Préversion) @@ -28,13 +28,13 @@ - The optional output path for artifacts. - Chemin de sortie optionnel pour les artefacts. + The optional output path for artifacts + Chemin de sortie optionnel pour les artefacts. - The name of the step to execute. - Nom de l’étape à exécuter. + The name of the step to execute + Nom de l’étape à exécuter. diff --git a/src/Aspire.Cli/Resources/xlf/DoCommandStrings.it.xlf b/src/Aspire.Cli/Resources/xlf/DoCommandStrings.it.xlf index 3806d612ef1..639c8e0531a 100644 --- a/src/Aspire.Cli/Resources/xlf/DoCommandStrings.it.xlf +++ b/src/Aspire.Cli/Resources/xlf/DoCommandStrings.it.xlf @@ -3,8 +3,8 @@ - Execute a specific pipeline step and its dependencies. (Preview) - Esegui un passaggio specifico della pipeline e le relative dipendenze. (Anteprima) + Execute a specific pipeline step and its dependencies (Preview) + Esegui un passaggio specifico della pipeline e le relative dipendenze. (Anteprima) @@ -28,13 +28,13 @@ - The optional output path for artifacts. - Percorso di output facoltativo per gli artefatti. + The optional output path for artifacts + Percorso di output facoltativo per gli artefatti. - The name of the step to execute. - Nome del passaggio da eseguire. + The name of the step to execute + Nome del passaggio da eseguire. diff --git a/src/Aspire.Cli/Resources/xlf/DoCommandStrings.ja.xlf b/src/Aspire.Cli/Resources/xlf/DoCommandStrings.ja.xlf index 8e37febbed3..7393e50d4a8 100644 --- a/src/Aspire.Cli/Resources/xlf/DoCommandStrings.ja.xlf +++ b/src/Aspire.Cli/Resources/xlf/DoCommandStrings.ja.xlf @@ -3,8 +3,8 @@ - Execute a specific pipeline step and its dependencies. (Preview) - 特定のパイプライン ステップとその依存関係を実行します。(プレビュー) + Execute a specific pipeline step and its dependencies (Preview) + 特定のパイプライン ステップとその依存関係を実行します。(プレビュー) @@ -28,13 +28,13 @@ - The optional output path for artifacts. - 成果物の省略可能な出力パス。 + The optional output path for artifacts + 成果物の省略可能な出力パス。 - The name of the step to execute. - 実行するステップの名前です。 + The name of the step to execute + 実行するステップの名前です。 diff --git a/src/Aspire.Cli/Resources/xlf/DoCommandStrings.ko.xlf b/src/Aspire.Cli/Resources/xlf/DoCommandStrings.ko.xlf index d90ce3ac96a..a22eff87f77 100644 --- a/src/Aspire.Cli/Resources/xlf/DoCommandStrings.ko.xlf +++ b/src/Aspire.Cli/Resources/xlf/DoCommandStrings.ko.xlf @@ -3,8 +3,8 @@ - Execute a specific pipeline step and its dependencies. (Preview) - 특정 파이프라인 단계와 그에 필요한 종속 항목을 실행하세요. (미리 보기) + Execute a specific pipeline step and its dependencies (Preview) + 특정 파이프라인 단계와 그에 필요한 종속 항목을 실행하세요. (미리 보기) @@ -28,13 +28,13 @@ - The optional output path for artifacts. - 아티팩트의 선택적 출력 경로입니다. + The optional output path for artifacts + 아티팩트의 선택적 출력 경로입니다. - The name of the step to execute. - 실행할 단계의 이름입니다. + The name of the step to execute + 실행할 단계의 이름입니다. diff --git a/src/Aspire.Cli/Resources/xlf/DoCommandStrings.pl.xlf b/src/Aspire.Cli/Resources/xlf/DoCommandStrings.pl.xlf index f7e51e3e5ba..9ff3813cdb0 100644 --- a/src/Aspire.Cli/Resources/xlf/DoCommandStrings.pl.xlf +++ b/src/Aspire.Cli/Resources/xlf/DoCommandStrings.pl.xlf @@ -3,8 +3,8 @@ - Execute a specific pipeline step and its dependencies. (Preview) - Wykonaj określony krok potoku i jego zależności. (Wersja zapoznawcza) + Execute a specific pipeline step and its dependencies (Preview) + Wykonaj określony krok potoku i jego zależności. (Wersja zapoznawcza) @@ -28,13 +28,13 @@ - The optional output path for artifacts. - Opcjonalna ścieżka wyjściowa artefaktów. + The optional output path for artifacts + Opcjonalna ścieżka wyjściowa artefaktów. - The name of the step to execute. - Nazwa kroku do wykonania. + The name of the step to execute + Nazwa kroku do wykonania. diff --git a/src/Aspire.Cli/Resources/xlf/DoCommandStrings.pt-BR.xlf b/src/Aspire.Cli/Resources/xlf/DoCommandStrings.pt-BR.xlf index 5f106c4948f..8f9e3f1e254 100644 --- a/src/Aspire.Cli/Resources/xlf/DoCommandStrings.pt-BR.xlf +++ b/src/Aspire.Cli/Resources/xlf/DoCommandStrings.pt-BR.xlf @@ -3,8 +3,8 @@ - Execute a specific pipeline step and its dependencies. (Preview) - Executar uma etapa específica do pipeline e suas dependências. (Visualização) + Execute a specific pipeline step and its dependencies (Preview) + Executar uma etapa específica do pipeline e suas dependências. (Visualização) @@ -28,13 +28,13 @@ - The optional output path for artifacts. - O caminho de saída opcional para artefatos. + The optional output path for artifacts + O caminho de saída opcional para artefatos. - The name of the step to execute. - O nome da etapa a ser executada. + The name of the step to execute + O nome da etapa a ser executada. diff --git a/src/Aspire.Cli/Resources/xlf/DoCommandStrings.ru.xlf b/src/Aspire.Cli/Resources/xlf/DoCommandStrings.ru.xlf index 2fe88c38c41..5c6e815e009 100644 --- a/src/Aspire.Cli/Resources/xlf/DoCommandStrings.ru.xlf +++ b/src/Aspire.Cli/Resources/xlf/DoCommandStrings.ru.xlf @@ -3,8 +3,8 @@ - Execute a specific pipeline step and its dependencies. (Preview) - Выполнение определенного шага конвейера и его зависимостей. (Предварительный просмотр) + Execute a specific pipeline step and its dependencies (Preview) + Выполнение определенного шага конвейера и его зависимостей. (Предварительный просмотр) @@ -28,13 +28,13 @@ - The optional output path for artifacts. - Необязательный выходной путь для артефактов. + The optional output path for artifacts + Необязательный выходной путь для артефактов. - The name of the step to execute. - Имя выполняемого шага. + The name of the step to execute + Имя выполняемого шага. diff --git a/src/Aspire.Cli/Resources/xlf/DoCommandStrings.tr.xlf b/src/Aspire.Cli/Resources/xlf/DoCommandStrings.tr.xlf index 2ede73ce05e..da1e1c372c2 100644 --- a/src/Aspire.Cli/Resources/xlf/DoCommandStrings.tr.xlf +++ b/src/Aspire.Cli/Resources/xlf/DoCommandStrings.tr.xlf @@ -3,8 +3,8 @@ - Execute a specific pipeline step and its dependencies. (Preview) - Belirli bir işlem hattı adımını ve bağımlılıklarını yürütün. (Önizleme) + Execute a specific pipeline step and its dependencies (Preview) + Belirli bir işlem hattı adımını ve bağımlılıklarını yürütün. (Önizleme) @@ -28,13 +28,13 @@ - The optional output path for artifacts. - Yapıtlar için isteğe bağlı çıktı yolu. + The optional output path for artifacts + Yapıtlar için isteğe bağlı çıktı yolu. - The name of the step to execute. - Yürütülecek adımın adı. + The name of the step to execute + Yürütülecek adımın adı. diff --git a/src/Aspire.Cli/Resources/xlf/DoCommandStrings.zh-Hans.xlf b/src/Aspire.Cli/Resources/xlf/DoCommandStrings.zh-Hans.xlf index 039378f57bc..f682b86b87b 100644 --- a/src/Aspire.Cli/Resources/xlf/DoCommandStrings.zh-Hans.xlf +++ b/src/Aspire.Cli/Resources/xlf/DoCommandStrings.zh-Hans.xlf @@ -3,8 +3,8 @@ - Execute a specific pipeline step and its dependencies. (Preview) - 执行特定的管道步骤及其依赖项。(预览版) + Execute a specific pipeline step and its dependencies (Preview) + 执行特定的管道步骤及其依赖项。(预览版) @@ -28,13 +28,13 @@ - The optional output path for artifacts. - 工件的可选输出路径。 + The optional output path for artifacts + 工件的可选输出路径。 - The name of the step to execute. - 要执行的步骤名称。 + The name of the step to execute + 要执行的步骤名称。 diff --git a/src/Aspire.Cli/Resources/xlf/DoCommandStrings.zh-Hant.xlf b/src/Aspire.Cli/Resources/xlf/DoCommandStrings.zh-Hant.xlf index d7808dc49a7..0c13863701f 100644 --- a/src/Aspire.Cli/Resources/xlf/DoCommandStrings.zh-Hant.xlf +++ b/src/Aspire.Cli/Resources/xlf/DoCommandStrings.zh-Hant.xlf @@ -3,8 +3,8 @@ - Execute a specific pipeline step and its dependencies. (Preview) - 執行特定管線步驟及其相依性。(預覽) + Execute a specific pipeline step and its dependencies (Preview) + 執行特定管線步驟及其相依性。(預覽) @@ -28,13 +28,13 @@ - The optional output path for artifacts. - 成品的選用輸出路徑。 + The optional output path for artifacts + 成品的選用輸出路徑。 - The name of the step to execute. - 要執行的步驟名稱。 + The name of the step to execute + 要執行的步驟名稱。 diff --git a/src/Aspire.Cli/Resources/xlf/DocsCommandStrings.cs.xlf b/src/Aspire.Cli/Resources/xlf/DocsCommandStrings.cs.xlf index c1859749157..4a54137e5df 100644 --- a/src/Aspire.Cli/Resources/xlf/DocsCommandStrings.cs.xlf +++ b/src/Aspire.Cli/Resources/xlf/DocsCommandStrings.cs.xlf @@ -3,8 +3,8 @@ - Browse and search Aspire documentation from aspire.dev. - Dokumentaci můžete procházet a vyhledávat na aspire.dev. + Browse and search Aspire documentation from aspire.dev + Dokumentaci můžete procházet a vyhledávat na aspire.dev. @@ -13,8 +13,8 @@ - Output format (Table or Json). - Výstupní formát (tabulka nebo JSON) + Output format (Table or Json) + Výstupní formát (tabulka nebo JSON) @@ -28,8 +28,8 @@ - Get the full content of a documentation page by its slug. - Získejte úplný obsah stránky dokumentace podle jejího slugu. + Get the full content of a documentation page by its slug + Získejte úplný obsah stránky dokumentace podle jejího slugu. @@ -58,13 +58,13 @@ - Maximum number of search results to return (default: 5, max: 10). - Maximální počet výsledků hledání, které se mají vrátit (výchozí: 5, max.: 10) + Maximum number of search results to return (default: 5, max: 10) + Maximální počet výsledků hledání, které se mají vrátit (výchozí: 5, max.: 10) - List all available Aspire documentation pages. - Vypíše všechny dostupné stránky dokumentace Aspire. + List all available Aspire documentation pages + Vypíše všechny dostupné stránky dokumentace Aspire. @@ -83,23 +83,23 @@ - The search query. - Vyhledávací dotaz + The search query + Vyhledávací dotaz - Search Aspire documentation by keywords. - V dokumentaci můžete vyhledávat podle klíčových slov. + Search Aspire documentation by keywords + V dokumentaci můžete vyhledávat podle klíčových slov. - Return only the specified section of the page. - Vrátí pouze zadaný oddíl stránky. + Return only the specified section of the page + Vrátí pouze zadaný oddíl stránky. - The slug of the documentation page (e.g., 'redis-integration'). - Slug stránky dokumentace (např. redis-integration) + The slug of the documentation page (e.g., 'redis-integration') + Slug stránky dokumentace (např. redis-integration) diff --git a/src/Aspire.Cli/Resources/xlf/DocsCommandStrings.de.xlf b/src/Aspire.Cli/Resources/xlf/DocsCommandStrings.de.xlf index 6da93478d20..a5e0e49f7cf 100644 --- a/src/Aspire.Cli/Resources/xlf/DocsCommandStrings.de.xlf +++ b/src/Aspire.Cli/Resources/xlf/DocsCommandStrings.de.xlf @@ -3,8 +3,8 @@ - Browse and search Aspire documentation from aspire.dev. - Aspire-Dokumentation auf aspire.dev browsen und suchen. + Browse and search Aspire documentation from aspire.dev + Aspire-Dokumentation auf aspire.dev browsen und suchen. @@ -13,8 +13,8 @@ - Output format (Table or Json). - Ausgabeformat (Tabelle oder JSON). + Output format (Table or Json) + Ausgabeformat (Tabelle oder JSON). @@ -28,8 +28,8 @@ - Get the full content of a documentation page by its slug. - Den vollständigen Inhalt einer Dokumentationsseite anhand ihres Slugs abrufen. + Get the full content of a documentation page by its slug + Den vollständigen Inhalt einer Dokumentationsseite anhand ihres Slugs abrufen. @@ -58,13 +58,13 @@ - Maximum number of search results to return (default: 5, max: 10). - Die maximale Anzahl der Suchergebnisse, die zurückgegeben werden sollen (Standard: 5, max: 10). + Maximum number of search results to return (default: 5, max: 10) + Die maximale Anzahl der Suchergebnisse, die zurückgegeben werden sollen (Standard: 5, max: 10). - List all available Aspire documentation pages. - Alle verfügbaren Aspire-Dokumentationsseiten auflisten. + List all available Aspire documentation pages + Alle verfügbaren Aspire-Dokumentationsseiten auflisten. @@ -83,23 +83,23 @@ - The search query. - Die Suchabfrage. + The search query + Die Suchabfrage. - Search Aspire documentation by keywords. - Aspire-Dokumentation nach Schlüsselwörtern suchen. + Search Aspire documentation by keywords + Aspire-Dokumentation nach Schlüsselwörtern suchen. - Return only the specified section of the page. - Nur den angegebenen Abschnitt der Seite zurückgeben. + Return only the specified section of the page + Nur den angegebenen Abschnitt der Seite zurückgeben. - The slug of the documentation page (e.g., 'redis-integration'). - Der Slug der Dokumentationsseite (z. B. „redis-integration“). + The slug of the documentation page (e.g., 'redis-integration') + Der Slug der Dokumentationsseite (z. B. „redis-integration“). diff --git a/src/Aspire.Cli/Resources/xlf/DocsCommandStrings.es.xlf b/src/Aspire.Cli/Resources/xlf/DocsCommandStrings.es.xlf index 3f5694fe428..b02216d2522 100644 --- a/src/Aspire.Cli/Resources/xlf/DocsCommandStrings.es.xlf +++ b/src/Aspire.Cli/Resources/xlf/DocsCommandStrings.es.xlf @@ -3,8 +3,8 @@ - Browse and search Aspire documentation from aspire.dev. - Examine y busque la documentación de Aspire en aspire.dev. + Browse and search Aspire documentation from aspire.dev + Examine y busque la documentación de Aspire en aspire.dev. @@ -13,8 +13,8 @@ - Output format (Table or Json). - Formato de salida (tabla o JSON). + Output format (Table or Json) + Formato de salida (tabla o JSON). @@ -28,8 +28,8 @@ - Get the full content of a documentation page by its slug. - Obtenga el contenido completo de una página de documentación por su identificador. + Get the full content of a documentation page by its slug + Obtenga el contenido completo de una página de documentación por su identificador. @@ -58,13 +58,13 @@ - Maximum number of search results to return (default: 5, max: 10). - Número máximo de resultados de búsqueda que se devolverán (predeterminado: 5, máximo: 10). + Maximum number of search results to return (default: 5, max: 10) + Número máximo de resultados de búsqueda que se devolverán (predeterminado: 5, máximo: 10). - List all available Aspire documentation pages. - Muestra todas las páginas de documentación disponibles de Aspire. + List all available Aspire documentation pages + Muestra todas las páginas de documentación disponibles de Aspire. @@ -83,23 +83,23 @@ - The search query. - Consulta de búsqueda. + The search query + Consulta de búsqueda. - Search Aspire documentation by keywords. - Busque en la documentación de Aspire por palabras clave. + Search Aspire documentation by keywords + Busque en la documentación de Aspire por palabras clave. - Return only the specified section of the page. - Devuelve solo la sección especificada de la página. + Return only the specified section of the page + Devuelve solo la sección especificada de la página. - The slug of the documentation page (e.g., 'redis-integration'). - El identificador de la página de documentación (por ejemplo, 'redis-integration'). + The slug of the documentation page (e.g., 'redis-integration') + El identificador de la página de documentación (por ejemplo, 'redis-integration'). diff --git a/src/Aspire.Cli/Resources/xlf/DocsCommandStrings.fr.xlf b/src/Aspire.Cli/Resources/xlf/DocsCommandStrings.fr.xlf index a6d2fae9ea5..42c5ad3179c 100644 --- a/src/Aspire.Cli/Resources/xlf/DocsCommandStrings.fr.xlf +++ b/src/Aspire.Cli/Resources/xlf/DocsCommandStrings.fr.xlf @@ -3,8 +3,8 @@ - Browse and search Aspire documentation from aspire.dev. - Parcourir et rechercher la documentation Aspire sur aspire.dev. + Browse and search Aspire documentation from aspire.dev + Parcourir et rechercher la documentation Aspire sur aspire.dev. @@ -13,8 +13,8 @@ - Output format (Table or Json). - Format de sortie (Tableau ou JSON). + Output format (Table or Json) + Format de sortie (Tableau ou JSON). @@ -28,8 +28,8 @@ - Get the full content of a documentation page by its slug. - Obtenez le contenu complet d’une page de documentation grâce à son identifiant. + Get the full content of a documentation page by its slug + Obtenez le contenu complet d’une page de documentation grâce à son identifiant. @@ -58,13 +58,13 @@ - Maximum number of search results to return (default: 5, max: 10). - Nombre maximal de résultats de recherche à retourner (par défaut : 5, max : 10). + Maximum number of search results to return (default: 5, max: 10) + Nombre maximal de résultats de recherche à retourner (par défaut : 5, max : 10). - List all available Aspire documentation pages. - Listez toutes les pages de documentation Aspire disponibles. + List all available Aspire documentation pages + Listez toutes les pages de documentation Aspire disponibles. @@ -83,23 +83,23 @@ - The search query. - La requête de recherche. + The search query + La requête de recherche. - Search Aspire documentation by keywords. - Rechercher la documentation Aspire par mots-clés. + Search Aspire documentation by keywords + Rechercher la documentation Aspire par mots-clés. - Return only the specified section of the page. - Retourner uniquement la section spécifiée de la page. + Return only the specified section of the page + Retourner uniquement la section spécifiée de la page. - The slug of the documentation page (e.g., 'redis-integration'). - Identifiant de la page de documentation (par ex., « redis-integration »). + The slug of the documentation page (e.g., 'redis-integration') + Identifiant de la page de documentation (par ex., « redis-integration »). diff --git a/src/Aspire.Cli/Resources/xlf/DocsCommandStrings.it.xlf b/src/Aspire.Cli/Resources/xlf/DocsCommandStrings.it.xlf index 931c309db6a..6c61f2cc3b7 100644 --- a/src/Aspire.Cli/Resources/xlf/DocsCommandStrings.it.xlf +++ b/src/Aspire.Cli/Resources/xlf/DocsCommandStrings.it.xlf @@ -3,8 +3,8 @@ - Browse and search Aspire documentation from aspire.dev. - Esplorare e cercare la documentazione di Aspire su aspire.dev. + Browse and search Aspire documentation from aspire.dev + Esplorare e cercare la documentazione di Aspire su aspire.dev. @@ -13,8 +13,8 @@ - Output format (Table or Json). - Formato di output (Tabella o JSON). + Output format (Table or Json) + Formato di output (Tabella o JSON). @@ -28,8 +28,8 @@ - Get the full content of a documentation page by its slug. - Ottieni il contenuto completo di una pagina della documentazione tramite il suo campo dati dinamico. + Get the full content of a documentation page by its slug + Ottieni il contenuto completo di una pagina della documentazione tramite il suo campo dati dinamico. @@ -58,13 +58,13 @@ - Maximum number of search results to return (default: 5, max: 10). - Numero massimo di risultati della ricerca da restituire (predefinito: 5, massimo: 10). + Maximum number of search results to return (default: 5, max: 10) + Numero massimo di risultati della ricerca da restituire (predefinito: 5, massimo: 10). - List all available Aspire documentation pages. - Elenca tutte le pagine di documentazione Aspire disponibili. + List all available Aspire documentation pages + Elenca tutte le pagine di documentazione Aspire disponibili. @@ -83,23 +83,23 @@ - The search query. - Query di ricerca. + The search query + Query di ricerca. - Search Aspire documentation by keywords. - Cerca nella documentazione Aspire usando parole chiave. + Search Aspire documentation by keywords + Cerca nella documentazione Aspire usando parole chiave. - Return only the specified section of the page. - Restituisci solo la sezione specificata della pagina. + Return only the specified section of the page + Restituisci solo la sezione specificata della pagina. - The slug of the documentation page (e.g., 'redis-integration'). - Campo dati dinamico della pagina della documentazione (ad esempio, 'redis-integration'). + The slug of the documentation page (e.g., 'redis-integration') + Campo dati dinamico della pagina della documentazione (ad esempio, 'redis-integration'). diff --git a/src/Aspire.Cli/Resources/xlf/DocsCommandStrings.ja.xlf b/src/Aspire.Cli/Resources/xlf/DocsCommandStrings.ja.xlf index a8405f5b077..a79c667c39e 100644 --- a/src/Aspire.Cli/Resources/xlf/DocsCommandStrings.ja.xlf +++ b/src/Aspire.Cli/Resources/xlf/DocsCommandStrings.ja.xlf @@ -3,8 +3,8 @@ - Browse and search Aspire documentation from aspire.dev. - aspire.dev から Aspire ドキュメントを参照して検索します。 + Browse and search Aspire documentation from aspire.dev + aspire.dev から Aspire ドキュメントを参照して検索します。 @@ -13,8 +13,8 @@ - Output format (Table or Json). - 出力形式 (テーブルまたは JSON)。 + Output format (Table or Json) + 出力形式 (テーブルまたは JSON)。 @@ -28,8 +28,8 @@ - Get the full content of a documentation page by its slug. - スラッグを指定してドキュメント ページのすべてのコンテンツを取得します。 + Get the full content of a documentation page by its slug + スラッグを指定してドキュメント ページのすべてのコンテンツを取得します。 @@ -58,13 +58,13 @@ - Maximum number of search results to return (default: 5, max: 10). - 返される検索結果の最大数 (既定値: 5、最大値: 10)。 + Maximum number of search results to return (default: 5, max: 10) + 返される検索結果の最大数 (既定値: 5、最大値: 10)。 - List all available Aspire documentation pages. - 利用可能なすべての Aspire ドキュメント ページを一覧表示します。 + List all available Aspire documentation pages + 利用可能なすべての Aspire ドキュメント ページを一覧表示します。 @@ -83,23 +83,23 @@ - The search query. - 検索クエリ。 + The search query + 検索クエリ。 - Search Aspire documentation by keywords. - キーワードを指定して Aspire ドキュメントを検索します。 + Search Aspire documentation by keywords + キーワードを指定して Aspire ドキュメントを検索します。 - Return only the specified section of the page. - ページの指定したセクションのみを返します。 + Return only the specified section of the page + ページの指定したセクションのみを返します。 - The slug of the documentation page (e.g., 'redis-integration'). - ドキュメント ページのスラッグ (例: 'redis-integration')。 + The slug of the documentation page (e.g., 'redis-integration') + ドキュメント ページのスラッグ (例: 'redis-integration')。 diff --git a/src/Aspire.Cli/Resources/xlf/DocsCommandStrings.ko.xlf b/src/Aspire.Cli/Resources/xlf/DocsCommandStrings.ko.xlf index 38c7a15655f..e07312629cd 100644 --- a/src/Aspire.Cli/Resources/xlf/DocsCommandStrings.ko.xlf +++ b/src/Aspire.Cli/Resources/xlf/DocsCommandStrings.ko.xlf @@ -3,8 +3,8 @@ - Browse and search Aspire documentation from aspire.dev. - aspire.dev에서 Aspire 설명서를 찾아보고 검색하세요. + Browse and search Aspire documentation from aspire.dev + aspire.dev에서 Aspire 설명서를 찾아보고 검색하세요. @@ -13,8 +13,8 @@ - Output format (Table or Json). - 출력 형식(테이블 또는 JSON)입니다. + Output format (Table or Json) + 출력 형식(테이블 또는 JSON)입니다. @@ -28,8 +28,8 @@ - Get the full content of a documentation page by its slug. - 슬러그로 설명서 페이지의 전체 내용을 가져옵니다. + Get the full content of a documentation page by its slug + 슬러그로 설명서 페이지의 전체 내용을 가져옵니다. @@ -58,13 +58,13 @@ - Maximum number of search results to return (default: 5, max: 10). - 반환할 최대 검색 결과 수입니다(기본값: 5, 최대: 10). + Maximum number of search results to return (default: 5, max: 10) + 반환할 최대 검색 결과 수입니다(기본값: 5, 최대: 10). - List all available Aspire documentation pages. - 사용 가능한 모든 Aspire 설명서 페이지를 나열합니다. + List all available Aspire documentation pages + 사용 가능한 모든 Aspire 설명서 페이지를 나열합니다. @@ -83,23 +83,23 @@ - The search query. - 검색 쿼리입니다. + The search query + 검색 쿼리입니다. - Search Aspire documentation by keywords. - 키워드로 Aspire 설명서를 검색하세요. + Search Aspire documentation by keywords + 키워드로 Aspire 설명서를 검색하세요. - Return only the specified section of the page. - 페이지의 지정된 섹션만 반환합니다. + Return only the specified section of the page + 페이지의 지정된 섹션만 반환합니다. - The slug of the documentation page (e.g., 'redis-integration'). - 설명서 페이지의 슬러그(예: 'redis-integration')입니다. + The slug of the documentation page (e.g., 'redis-integration') + 설명서 페이지의 슬러그(예: 'redis-integration')입니다. diff --git a/src/Aspire.Cli/Resources/xlf/DocsCommandStrings.pl.xlf b/src/Aspire.Cli/Resources/xlf/DocsCommandStrings.pl.xlf index c608f5e231d..dd6f653bff7 100644 --- a/src/Aspire.Cli/Resources/xlf/DocsCommandStrings.pl.xlf +++ b/src/Aspire.Cli/Resources/xlf/DocsCommandStrings.pl.xlf @@ -3,8 +3,8 @@ - Browse and search Aspire documentation from aspire.dev. - Przeglądaj i przeszukuj dokumentację Aspire z Aspire.dev. + Browse and search Aspire documentation from aspire.dev + Przeglądaj i przeszukuj dokumentację Aspire z Aspire.dev. @@ -13,8 +13,8 @@ - Output format (Table or Json). - Format danych wyjściowych (Tabela lub JSON). + Output format (Table or Json) + Format danych wyjściowych (Tabela lub JSON). @@ -28,8 +28,8 @@ - Get the full content of a documentation page by its slug. - Pobierz pełną zawartość strony dokumentacji przy użyciu jej fragmentu. + Get the full content of a documentation page by its slug + Pobierz pełną zawartość strony dokumentacji przy użyciu jej fragmentu. @@ -58,13 +58,13 @@ - Maximum number of search results to return (default: 5, max: 10). - Maksymalna liczba wyników wyszukiwania do zwrócenia (wartość domyślna: 5, maksimum: 10). + Maximum number of search results to return (default: 5, max: 10) + Maksymalna liczba wyników wyszukiwania do zwrócenia (wartość domyślna: 5, maksimum: 10). - List all available Aspire documentation pages. - Wyświetl listę wszystkich dostępnych stron dokumentacji. + List all available Aspire documentation pages + Wyświetl listę wszystkich dostępnych stron dokumentacji. @@ -83,23 +83,23 @@ - The search query. - Zapytanie wyszukiwania. + The search query + Zapytanie wyszukiwania. - Search Aspire documentation by keywords. - Wyszukaj dokumentację aplikacji Wyszukaj według słów kluczowych. + Search Aspire documentation by keywords + Wyszukaj dokumentację aplikacji Wyszukaj według słów kluczowych. - Return only the specified section of the page. - Zwróć tylko określoną sekcję strony. + Return only the specified section of the page + Zwróć tylko określoną sekcję strony. - The slug of the documentation page (e.g., 'redis-integration'). - Fragment strony dokumentacji (np. „redis-integration”). + The slug of the documentation page (e.g., 'redis-integration') + Fragment strony dokumentacji (np. „redis-integration”). diff --git a/src/Aspire.Cli/Resources/xlf/DocsCommandStrings.pt-BR.xlf b/src/Aspire.Cli/Resources/xlf/DocsCommandStrings.pt-BR.xlf index f167157542f..e85b5063c5c 100644 --- a/src/Aspire.Cli/Resources/xlf/DocsCommandStrings.pt-BR.xlf +++ b/src/Aspire.Cli/Resources/xlf/DocsCommandStrings.pt-BR.xlf @@ -3,8 +3,8 @@ - Browse and search Aspire documentation from aspire.dev. - Navegue e pesquise na documentação do Aspire em aspire.dev. + Browse and search Aspire documentation from aspire.dev + Navegue e pesquise na documentação do Aspire em aspire.dev. @@ -13,8 +13,8 @@ - Output format (Table or Json). - Formato de saída (Tabela ou Json). + Output format (Table or Json) + Formato de saída (Tabela ou Json). @@ -28,8 +28,8 @@ - Get the full content of a documentation page by its slug. - Obtenha o conteúdo completo de uma página de documentação pelo seu slug. + Get the full content of a documentation page by its slug + Obtenha o conteúdo completo de uma página de documentação pelo seu slug. @@ -58,13 +58,13 @@ - Maximum number of search results to return (default: 5, max: 10). - Número máximo de resultados de pesquisa a serem retornados (padrão: 5, máx. 10). + Maximum number of search results to return (default: 5, max: 10) + Número máximo de resultados de pesquisa a serem retornados (padrão: 5, máx. 10). - List all available Aspire documentation pages. - Liste todas as páginas de documentação disponíveis do Aspire. + List all available Aspire documentation pages + Liste todas as páginas de documentação disponíveis do Aspire. @@ -83,23 +83,23 @@ - The search query. - A consulta de pesquisa. + The search query + A consulta de pesquisa. - Search Aspire documentation by keywords. - Pesquise a documentação do Aspire por palavras-chave. + Search Aspire documentation by keywords + Pesquise a documentação do Aspire por palavras-chave. - Return only the specified section of the page. - Retornar apenas a seção especificada da página. + Return only the specified section of the page + Retornar apenas a seção especificada da página. - The slug of the documentation page (e.g., 'redis-integration'). - O slug da página de documentação (por exemplo, 'redis-integration'). + The slug of the documentation page (e.g., 'redis-integration') + O slug da página de documentação (por exemplo, 'redis-integration'). diff --git a/src/Aspire.Cli/Resources/xlf/DocsCommandStrings.ru.xlf b/src/Aspire.Cli/Resources/xlf/DocsCommandStrings.ru.xlf index cee297b7393..fc2d85f1dbb 100644 --- a/src/Aspire.Cli/Resources/xlf/DocsCommandStrings.ru.xlf +++ b/src/Aspire.Cli/Resources/xlf/DocsCommandStrings.ru.xlf @@ -3,8 +3,8 @@ - Browse and search Aspire documentation from aspire.dev. - Просмотр документации Aspire и поиск в ней на aspire.dev. + Browse and search Aspire documentation from aspire.dev + Просмотр документации Aspire и поиск в ней на aspire.dev. @@ -13,8 +13,8 @@ - Output format (Table or Json). - Формат вывода (таблица или JSON). + Output format (Table or Json) + Формат вывода (таблица или JSON). @@ -28,8 +28,8 @@ - Get the full content of a documentation page by its slug. - Получить полное содержимое страницы документации по её динамическому идентификатору. + Get the full content of a documentation page by its slug + Получить полное содержимое страницы документации по её динамическому идентификатору. @@ -58,13 +58,13 @@ - Maximum number of search results to return (default: 5, max: 10). - Максимальное количество результатов поиска, которые следует вернуть (по умолчанию: 5, максимум: 10). + Maximum number of search results to return (default: 5, max: 10) + Максимальное количество результатов поиска, которые следует вернуть (по умолчанию: 5, максимум: 10). - List all available Aspire documentation pages. - Выдать список всех доступных страниц документации по Aspire. + List all available Aspire documentation pages + Выдать список всех доступных страниц документации по Aspire. @@ -83,23 +83,23 @@ - The search query. - Поисковый запрос. + The search query + Поисковый запрос. - Search Aspire documentation by keywords. - Поиск в документации Aspire по ключевым словам. + Search Aspire documentation by keywords + Поиск в документации Aspire по ключевым словам. - Return only the specified section of the page. - Возвращать только указанный раздел страницы. + Return only the specified section of the page + Возвращать только указанный раздел страницы. - The slug of the documentation page (e.g., 'redis-integration'). - Идентификатор страницы документации (например, "redis-integration"). + The slug of the documentation page (e.g., 'redis-integration') + Идентификатор страницы документации (например, "redis-integration"). diff --git a/src/Aspire.Cli/Resources/xlf/DocsCommandStrings.tr.xlf b/src/Aspire.Cli/Resources/xlf/DocsCommandStrings.tr.xlf index c2e56d4c977..b4a5967c1b2 100644 --- a/src/Aspire.Cli/Resources/xlf/DocsCommandStrings.tr.xlf +++ b/src/Aspire.Cli/Resources/xlf/DocsCommandStrings.tr.xlf @@ -3,8 +3,8 @@ - Browse and search Aspire documentation from aspire.dev. - aspire.dev adresinden Aspire belgelerini tarayın ve arayın. + Browse and search Aspire documentation from aspire.dev + aspire.dev adresinden Aspire belgelerini tarayın ve arayın. @@ -13,8 +13,8 @@ - Output format (Table or Json). - Çıktı biçimi (Tablo veya Json). + Output format (Table or Json) + Çıktı biçimi (Tablo veya Json). @@ -28,8 +28,8 @@ - Get the full content of a documentation page by its slug. - Bir belge sayfasının tüm içeriğini özel bilgi alanı ile alın. + Get the full content of a documentation page by its slug + Bir belge sayfasının tüm içeriğini özel bilgi alanı ile alın. @@ -58,13 +58,13 @@ - Maximum number of search results to return (default: 5, max: 10). - Döndürülecek maksimum arama sonucu sayısı (varsayılan: 5, maksimum: 10). + Maximum number of search results to return (default: 5, max: 10) + Döndürülecek maksimum arama sonucu sayısı (varsayılan: 5, maksimum: 10). - List all available Aspire documentation pages. - Mevcut tüm Aspire belge sayfalarını listeleyin. + List all available Aspire documentation pages + Mevcut tüm Aspire belge sayfalarını listeleyin. @@ -83,23 +83,23 @@ - The search query. - Arama sorgusu. + The search query + Arama sorgusu. - Search Aspire documentation by keywords. - Aspire belgelerini anahtar kelimelerle arayın. + Search Aspire documentation by keywords + Aspire belgelerini anahtar kelimelerle arayın. - Return only the specified section of the page. - Sayfanın yalnızca belirtilen bölümünü döndür. + Return only the specified section of the page + Sayfanın yalnızca belirtilen bölümünü döndür. - The slug of the documentation page (e.g., 'redis-integration'). - Belge sayfasının başlığı (örneğin, ‘redis-integration’). + The slug of the documentation page (e.g., 'redis-integration') + Belge sayfasının başlığı (örneğin, ‘redis-integration’). diff --git a/src/Aspire.Cli/Resources/xlf/DocsCommandStrings.zh-Hans.xlf b/src/Aspire.Cli/Resources/xlf/DocsCommandStrings.zh-Hans.xlf index a779bdbdca5..3cc51743356 100644 --- a/src/Aspire.Cli/Resources/xlf/DocsCommandStrings.zh-Hans.xlf +++ b/src/Aspire.Cli/Resources/xlf/DocsCommandStrings.zh-Hans.xlf @@ -3,8 +3,8 @@ - Browse and search Aspire documentation from aspire.dev. - 从 aspire.dev 浏览和搜索 Aspire 文档。 + Browse and search Aspire documentation from aspire.dev + 从 aspire.dev 浏览和搜索 Aspire 文档。 @@ -13,8 +13,8 @@ - Output format (Table or Json). - 输出格式(表格或 Json)。 + Output format (Table or Json) + 输出格式(表格或 Json)。 @@ -28,8 +28,8 @@ - Get the full content of a documentation page by its slug. - 通过短标识获取文档页面的完整内容。 + Get the full content of a documentation page by its slug + 通过短标识获取文档页面的完整内容。 @@ -58,13 +58,13 @@ - Maximum number of search results to return (default: 5, max: 10). - 要返回的最大搜索结果数(默认: 5,上限: 10)。 + Maximum number of search results to return (default: 5, max: 10) + 要返回的最大搜索结果数(默认: 5,上限: 10)。 - List all available Aspire documentation pages. - 列出所有可用的 Aspire 文档页面。 + List all available Aspire documentation pages + 列出所有可用的 Aspire 文档页面。 @@ -83,23 +83,23 @@ - The search query. - 搜索查询。 + The search query + 搜索查询。 - Search Aspire documentation by keywords. - 按关键字搜索 Aspire 文档。 + Search Aspire documentation by keywords + 按关键字搜索 Aspire 文档。 - Return only the specified section of the page. - 仅返回页面的指定部分。 + Return only the specified section of the page + 仅返回页面的指定部分。 - The slug of the documentation page (e.g., 'redis-integration'). - 文档页面的短标识(例如 "redis-integration")。 + The slug of the documentation page (e.g., 'redis-integration') + 文档页面的短标识(例如 "redis-integration")。 diff --git a/src/Aspire.Cli/Resources/xlf/DocsCommandStrings.zh-Hant.xlf b/src/Aspire.Cli/Resources/xlf/DocsCommandStrings.zh-Hant.xlf index 547f4b2d7ac..f16cd118c4f 100644 --- a/src/Aspire.Cli/Resources/xlf/DocsCommandStrings.zh-Hant.xlf +++ b/src/Aspire.Cli/Resources/xlf/DocsCommandStrings.zh-Hant.xlf @@ -3,8 +3,8 @@ - Browse and search Aspire documentation from aspire.dev. - 瀏覽並搜尋 aspire.dev 上的 Aspire 文件。 + Browse and search Aspire documentation from aspire.dev + 瀏覽並搜尋 aspire.dev 上的 Aspire 文件。 @@ -13,8 +13,8 @@ - Output format (Table or Json). - 輸出格式 (資料表或 Json)。 + Output format (Table or Json) + 輸出格式 (資料表或 Json)。 @@ -28,8 +28,8 @@ - Get the full content of a documentation page by its slug. - 依據識別字串取得文件頁面的完整內容。 + Get the full content of a documentation page by its slug + 依據識別字串取得文件頁面的完整內容。 @@ -58,13 +58,13 @@ - Maximum number of search results to return (default: 5, max: 10). - 最多回傳的搜尋結果數量 (預設: 5,最大值: 10)。 + Maximum number of search results to return (default: 5, max: 10) + 最多回傳的搜尋結果數量 (預設: 5,最大值: 10)。 - List all available Aspire documentation pages. - 列出所有可用的 Aspire 文件頁面。 + List all available Aspire documentation pages + 列出所有可用的 Aspire 文件頁面。 @@ -83,23 +83,23 @@ - The search query. - 搜尋查詢。 + The search query + 搜尋查詢。 - Search Aspire documentation by keywords. - 依關鍵字搜尋 Aspire 文件。 + Search Aspire documentation by keywords + 依關鍵字搜尋 Aspire 文件。 - Return only the specified section of the page. - 僅回傳頁面指定的區段。 + Return only the specified section of the page + 僅回傳頁面指定的區段。 - The slug of the documentation page (e.g., 'redis-integration'). - 文件頁面的識別字串 (例如 'redis-integration')。 + The slug of the documentation page (e.g., 'redis-integration') + 文件頁面的識別字串 (例如 'redis-integration')。 diff --git a/src/Aspire.Cli/Resources/xlf/DoctorCommandStrings.cs.xlf b/src/Aspire.Cli/Resources/xlf/DoctorCommandStrings.cs.xlf index c0beebda2e4..d0538bd4061 100644 --- a/src/Aspire.Cli/Resources/xlf/DoctorCommandStrings.cs.xlf +++ b/src/Aspire.Cli/Resources/xlf/DoctorCommandStrings.cs.xlf @@ -13,7 +13,7 @@ - Diagnose Aspire environment issues and verify setup. + Diagnose Aspire environment issues and verify setup Diagnostikovat problémy s prostředím Aspire a ověřit nastavení @@ -123,7 +123,7 @@ - Output format (Table or Json). + Output format (Table or Json) Výstup výsledků ve formátu JSON pro integraci nástrojů diff --git a/src/Aspire.Cli/Resources/xlf/DoctorCommandStrings.de.xlf b/src/Aspire.Cli/Resources/xlf/DoctorCommandStrings.de.xlf index 58351f5d5b2..15913637bd7 100644 --- a/src/Aspire.Cli/Resources/xlf/DoctorCommandStrings.de.xlf +++ b/src/Aspire.Cli/Resources/xlf/DoctorCommandStrings.de.xlf @@ -13,7 +13,7 @@ - Diagnose Aspire environment issues and verify setup. + Diagnose Aspire environment issues and verify setup Diagnose von Aspire-Umgebungsproblemen und Überprüfung der Einrichtung @@ -123,7 +123,7 @@ - Output format (Table or Json). + Output format (Table or Json) Ergebnisse als JSON für die Toolintegration ausgeben diff --git a/src/Aspire.Cli/Resources/xlf/DoctorCommandStrings.es.xlf b/src/Aspire.Cli/Resources/xlf/DoctorCommandStrings.es.xlf index 5edb4aad29f..cf896b939ac 100644 --- a/src/Aspire.Cli/Resources/xlf/DoctorCommandStrings.es.xlf +++ b/src/Aspire.Cli/Resources/xlf/DoctorCommandStrings.es.xlf @@ -13,7 +13,7 @@ - Diagnose Aspire environment issues and verify setup. + Diagnose Aspire environment issues and verify setup Diagnóstico de problemas del entorno de Aspire y comprobación de la configuración @@ -123,7 +123,7 @@ - Output format (Table or Json). + Output format (Table or Json) Resultados de salida como JSON para la integración de herramientas diff --git a/src/Aspire.Cli/Resources/xlf/DoctorCommandStrings.fr.xlf b/src/Aspire.Cli/Resources/xlf/DoctorCommandStrings.fr.xlf index edfaa98defe..bf68a0491cf 100644 --- a/src/Aspire.Cli/Resources/xlf/DoctorCommandStrings.fr.xlf +++ b/src/Aspire.Cli/Resources/xlf/DoctorCommandStrings.fr.xlf @@ -13,7 +13,7 @@ - Diagnose Aspire environment issues and verify setup. + Diagnose Aspire environment issues and verify setup Diagnostiquer les problèmes liés à l’environnement Aspire et vérifier la configuration @@ -123,7 +123,7 @@ - Output format (Table or Json). + Output format (Table or Json) Afficher les résultats au format JSON pour l’intégration des outils diff --git a/src/Aspire.Cli/Resources/xlf/DoctorCommandStrings.it.xlf b/src/Aspire.Cli/Resources/xlf/DoctorCommandStrings.it.xlf index bafbccea4da..c94b9760750 100644 --- a/src/Aspire.Cli/Resources/xlf/DoctorCommandStrings.it.xlf +++ b/src/Aspire.Cli/Resources/xlf/DoctorCommandStrings.it.xlf @@ -13,7 +13,7 @@ - Diagnose Aspire environment issues and verify setup. + Diagnose Aspire environment issues and verify setup Diagnostica i problemi dell'ambiente Aspire e verifica la configurazione @@ -123,7 +123,7 @@ - Output format (Table or Json). + Output format (Table or Json) Esporta i risultati in formato JSON per l'integrazione con gli strumenti diff --git a/src/Aspire.Cli/Resources/xlf/DoctorCommandStrings.ja.xlf b/src/Aspire.Cli/Resources/xlf/DoctorCommandStrings.ja.xlf index 7520f1e9558..cb699d23f32 100644 --- a/src/Aspire.Cli/Resources/xlf/DoctorCommandStrings.ja.xlf +++ b/src/Aspire.Cli/Resources/xlf/DoctorCommandStrings.ja.xlf @@ -13,7 +13,7 @@ - Diagnose Aspire environment issues and verify setup. + Diagnose Aspire environment issues and verify setup Aspire 環境の問題を診断し、セットアップを確認します @@ -123,7 +123,7 @@ - Output format (Table or Json). + Output format (Table or Json) ツール統合の結果を JSON として出力します diff --git a/src/Aspire.Cli/Resources/xlf/DoctorCommandStrings.ko.xlf b/src/Aspire.Cli/Resources/xlf/DoctorCommandStrings.ko.xlf index 915f5fd60d9..e4be515729a 100644 --- a/src/Aspire.Cli/Resources/xlf/DoctorCommandStrings.ko.xlf +++ b/src/Aspire.Cli/Resources/xlf/DoctorCommandStrings.ko.xlf @@ -13,7 +13,7 @@ - Diagnose Aspire environment issues and verify setup. + Diagnose Aspire environment issues and verify setup Aspire 환경 문제 진단 및 설정 확인 @@ -123,7 +123,7 @@ - Output format (Table or Json). + Output format (Table or Json) 도구 통합을 위해 결과를 JSON으로 출력 diff --git a/src/Aspire.Cli/Resources/xlf/DoctorCommandStrings.pl.xlf b/src/Aspire.Cli/Resources/xlf/DoctorCommandStrings.pl.xlf index 8fbf1c1d21d..5c5d1ce3c3b 100644 --- a/src/Aspire.Cli/Resources/xlf/DoctorCommandStrings.pl.xlf +++ b/src/Aspire.Cli/Resources/xlf/DoctorCommandStrings.pl.xlf @@ -13,7 +13,7 @@ - Diagnose Aspire environment issues and verify setup. + Diagnose Aspire environment issues and verify setup Zdiagnozuj problemy ze środowiskiem Aspire i sprawdź konfigurację @@ -123,7 +123,7 @@ - Output format (Table or Json). + Output format (Table or Json) Wyświetl wyniki jako JSON na potrzeby integracji z narzędziami diff --git a/src/Aspire.Cli/Resources/xlf/DoctorCommandStrings.pt-BR.xlf b/src/Aspire.Cli/Resources/xlf/DoctorCommandStrings.pt-BR.xlf index a663bb1376a..527d8c046fe 100644 --- a/src/Aspire.Cli/Resources/xlf/DoctorCommandStrings.pt-BR.xlf +++ b/src/Aspire.Cli/Resources/xlf/DoctorCommandStrings.pt-BR.xlf @@ -13,7 +13,7 @@ - Diagnose Aspire environment issues and verify setup. + Diagnose Aspire environment issues and verify setup Diagnosticar problemas de ambiente do Aspire e verificar a configuração @@ -123,7 +123,7 @@ - Output format (Table or Json). + Output format (Table or Json) Resultados de saída como JSON para integração de ferramentas diff --git a/src/Aspire.Cli/Resources/xlf/DoctorCommandStrings.ru.xlf b/src/Aspire.Cli/Resources/xlf/DoctorCommandStrings.ru.xlf index 2b927c0c784..82068f3f71c 100644 --- a/src/Aspire.Cli/Resources/xlf/DoctorCommandStrings.ru.xlf +++ b/src/Aspire.Cli/Resources/xlf/DoctorCommandStrings.ru.xlf @@ -13,7 +13,7 @@ - Diagnose Aspire environment issues and verify setup. + Diagnose Aspire environment issues and verify setup Диагностика проблем среды Aspire и проверка настройки @@ -123,7 +123,7 @@ - Output format (Table or Json). + Output format (Table or Json) Вывод результатов в формате JSON для интеграции с инструментами diff --git a/src/Aspire.Cli/Resources/xlf/DoctorCommandStrings.tr.xlf b/src/Aspire.Cli/Resources/xlf/DoctorCommandStrings.tr.xlf index 61ef2d30e03..244bfa5b588 100644 --- a/src/Aspire.Cli/Resources/xlf/DoctorCommandStrings.tr.xlf +++ b/src/Aspire.Cli/Resources/xlf/DoctorCommandStrings.tr.xlf @@ -13,7 +13,7 @@ - Diagnose Aspire environment issues and verify setup. + Diagnose Aspire environment issues and verify setup Aspire ortam sorunlarını teşhis edin ve kurulumu doğrulayın @@ -123,7 +123,7 @@ - Output format (Table or Json). + Output format (Table or Json) Araç tümleştirmesi için sonuçları JSON olarak çıktı diff --git a/src/Aspire.Cli/Resources/xlf/DoctorCommandStrings.zh-Hans.xlf b/src/Aspire.Cli/Resources/xlf/DoctorCommandStrings.zh-Hans.xlf index cd85c4cfe89..a992cc61e5f 100644 --- a/src/Aspire.Cli/Resources/xlf/DoctorCommandStrings.zh-Hans.xlf +++ b/src/Aspire.Cli/Resources/xlf/DoctorCommandStrings.zh-Hans.xlf @@ -13,7 +13,7 @@ - Diagnose Aspire environment issues and verify setup. + Diagnose Aspire environment issues and verify setup 诊断 Aspire 环境问题并验证设置 @@ -123,7 +123,7 @@ - Output format (Table or Json). + Output format (Table or Json) 将结果输出为 JSON g格式以便工具集成 diff --git a/src/Aspire.Cli/Resources/xlf/DoctorCommandStrings.zh-Hant.xlf b/src/Aspire.Cli/Resources/xlf/DoctorCommandStrings.zh-Hant.xlf index 3191da8aef2..0bcb232855f 100644 --- a/src/Aspire.Cli/Resources/xlf/DoctorCommandStrings.zh-Hant.xlf +++ b/src/Aspire.Cli/Resources/xlf/DoctorCommandStrings.zh-Hant.xlf @@ -13,7 +13,7 @@ - Diagnose Aspire environment issues and verify setup. + Diagnose Aspire environment issues and verify setup 診斷 Aspire 環境問題並驗證設定 @@ -123,7 +123,7 @@ - Output format (Table or Json). + Output format (Table or Json) 輸出結果為 JSON 以用於工具整合 diff --git a/src/Aspire.Cli/Resources/xlf/ErrorStrings.cs.xlf b/src/Aspire.Cli/Resources/xlf/ErrorStrings.cs.xlf index f3272291c8e..a2b9f687411 100644 --- a/src/Aspire.Cli/Resources/xlf/ErrorStrings.cs.xlf +++ b/src/Aspire.Cli/Resources/xlf/ErrorStrings.cs.xlf @@ -3,18 +3,18 @@ - Already connected to AppHost backchannel. - Již připojeno k vedlejšímu kanálu AppHost. + Already connected to apphost backchannel. + Již připojeno k vedlejšímu kanálu AppHost. - AppHost is incompatible with the CLI. The AppHost must be updated to a version that supports the {0} capability. - AppHost není kompatibilní s rozhraním příkazového řádku. AppHost musí být aktualizován na verzi, která podporuje funkci {0}. + Apphost is incompatible with the CLI. The apphost must be updated to a version that supports the {0} capability. + AppHost není kompatibilní s rozhraním příkazového řádku. AppHost musí být aktualizován na verzi, která podporuje funkci {0}. - AppHost file was specified in '{0}' but it does not exist at '{1}'. - Soubor AppHost byl zadán v {0}, ale v {1} neexistuje. + Apphost file was specified in '{0}' but it does not exist at '{1}'. + Soubor AppHost byl zadán v {0}, ale v {1} neexistuje. {0} is a path @@ -43,8 +43,8 @@ - This command is not yet supported with single file AppHosts. - Tento příkaz zatím není pro funkci AppHost pro jednosouborové scénáře podporován. + This command is not yet supported with single file apphosts. + Tento příkaz zatím není pro funkci AppHost pro jednosouborové scénáře podporován. @@ -158,8 +158,8 @@ - Project file is not an Aspire AppHost project. - Soubor projektu není projekt Aspire AppHost. + Project file is not an Aspire apphost project. + Soubor projektu není projekt Aspire AppHost. @@ -173,8 +173,8 @@ - Single file AppHost feature is not enabled. To use .cs AppHost files, enable the feature using configuration. - Funkce AppHost pro jednosouborové scénáře není povolená. Chcete-li používat .cs soubory AppHost, povolte tuto funkci v konfiguraci + Single file apphost feature is not enabled. To use .cs apphost files, enable the feature using configuration. + Funkce AppHost pro jednosouborové scénáře není povolená. Chcete-li používat .cs soubory AppHost, povolte tuto funkci v konfiguraci diff --git a/src/Aspire.Cli/Resources/xlf/ErrorStrings.de.xlf b/src/Aspire.Cli/Resources/xlf/ErrorStrings.de.xlf index 85bf342f7cb..701c0a4bb35 100644 --- a/src/Aspire.Cli/Resources/xlf/ErrorStrings.de.xlf +++ b/src/Aspire.Cli/Resources/xlf/ErrorStrings.de.xlf @@ -3,18 +3,18 @@ - Already connected to AppHost backchannel. - Bereits mit AppHost-Rückkanal verbunden. + Already connected to apphost backchannel. + Bereits mit AppHost-Rückkanal verbunden. - AppHost is incompatible with the CLI. The AppHost must be updated to a version that supports the {0} capability. - Der AppHost ist nicht mit der CLI kompatibel. Der AppHost muss auf eine Version aktualisiert werden, die die {0}-Funktion unterstützt. + Apphost is incompatible with the CLI. The apphost must be updated to a version that supports the {0} capability. + Der AppHost ist nicht mit der CLI kompatibel. Der AppHost muss auf eine Version aktualisiert werden, die die {0}-Funktion unterstützt. - AppHost file was specified in '{0}' but it does not exist at '{1}'. - Die AppHost-Datei wurde in „{0}“ angegeben, ist aber unter „{1}“ nicht vorhanden. + Apphost file was specified in '{0}' but it does not exist at '{1}'. + Die AppHost-Datei wurde in „{0}“ angegeben, ist aber unter „{1}“ nicht vorhanden. {0} is a path @@ -43,8 +43,8 @@ - This command is not yet supported with single file AppHosts. - Dieser Befehl wird für AppHosts mit einer einzelnen Datei noch nicht unterstützt. + This command is not yet supported with single file apphosts. + Dieser Befehl wird für AppHosts mit einer einzelnen Datei noch nicht unterstützt. @@ -158,8 +158,8 @@ - Project file is not an Aspire AppHost project. - Die Projektdatei ist kein Aspire-AppHost-Projekt. + Project file is not an Aspire apphost project. + Die Projektdatei ist kein Aspire-AppHost-Projekt. @@ -173,8 +173,8 @@ - Single file AppHost feature is not enabled. To use .cs AppHost files, enable the feature using configuration. - Das AppHost-Feature für einzelne Dateien ist nicht aktiviert. Um .cs-AppHost-Dateien zu verwenden, aktivieren Sie das Feature über die Konfiguration. + Single file apphost feature is not enabled. To use .cs apphost files, enable the feature using configuration. + Das AppHost-Feature für einzelne Dateien ist nicht aktiviert. Um .cs-AppHost-Dateien zu verwenden, aktivieren Sie das Feature über die Konfiguration. diff --git a/src/Aspire.Cli/Resources/xlf/ErrorStrings.es.xlf b/src/Aspire.Cli/Resources/xlf/ErrorStrings.es.xlf index c93029fddef..240b9a36fad 100644 --- a/src/Aspire.Cli/Resources/xlf/ErrorStrings.es.xlf +++ b/src/Aspire.Cli/Resources/xlf/ErrorStrings.es.xlf @@ -3,18 +3,18 @@ - Already connected to AppHost backchannel. - Ya está conectado al canal de retroalimentación de AppHost. + Already connected to apphost backchannel. + Ya está conectado al canal de retroalimentación de AppHost. - AppHost is incompatible with the CLI. The AppHost must be updated to a version that supports the {0} capability. - AppHost no es compatible con la CLI. Debe actualizarse a una versión que soporte la funcionalidad {0}. + Apphost is incompatible with the CLI. The apphost must be updated to a version that supports the {0} capability. + AppHost no es compatible con la CLI. Debe actualizarse a una versión que soporte la funcionalidad {0}. - AppHost file was specified in '{0}' but it does not exist at '{1}'. - El archivo AppHost se especificó en '{0}' pero no existe en '{1}'. + Apphost file was specified in '{0}' but it does not exist at '{1}'. + El archivo AppHost se especificó en '{0}' pero no existe en '{1}'. {0} is a path @@ -43,8 +43,8 @@ - This command is not yet supported with single file AppHosts. - Este comando aún no es compatible con AppHosts de un solo archivo. + This command is not yet supported with single file apphosts. + Este comando aún no es compatible con AppHosts de un solo archivo. @@ -158,8 +158,8 @@ - Project file is not an Aspire AppHost project. - El archivo del proyecto no es un proyecto AppHost de Aspire. + Project file is not an Aspire apphost project. + El archivo del proyecto no es un proyecto AppHost de Aspire. @@ -173,8 +173,8 @@ - Single file AppHost feature is not enabled. To use .cs AppHost files, enable the feature using configuration. - La característica AppHost de un solo archivo no está habilitada. Para usar archivos AppHost .cs, habilite la función mediante la configuración. + Single file apphost feature is not enabled. To use .cs apphost files, enable the feature using configuration. + La característica AppHost de un solo archivo no está habilitada. Para usar archivos AppHost .cs, habilite la función mediante la configuración. diff --git a/src/Aspire.Cli/Resources/xlf/ErrorStrings.fr.xlf b/src/Aspire.Cli/Resources/xlf/ErrorStrings.fr.xlf index 6fbf3da2d82..49aa7980ca3 100644 --- a/src/Aspire.Cli/Resources/xlf/ErrorStrings.fr.xlf +++ b/src/Aspire.Cli/Resources/xlf/ErrorStrings.fr.xlf @@ -3,18 +3,18 @@ - Already connected to AppHost backchannel. - Déjà connecté au backchannel AppHost. + Already connected to apphost backchannel. + Déjà connecté au backchannel AppHost. - AppHost is incompatible with the CLI. The AppHost must be updated to a version that supports the {0} capability. - AppHost est incompatible avec l’interface CLI. AppHost doit être mis à jour vers une version qui prend en charge la fonctionnalité {0}. + Apphost is incompatible with the CLI. The apphost must be updated to a version that supports the {0} capability. + AppHost est incompatible avec l’interface CLI. AppHost doit être mis à jour vers une version qui prend en charge la fonctionnalité {0}. - AppHost file was specified in '{0}' but it does not exist at '{1}'. - Le fichier AppHost a été spécifié dans « {0} » mais il n’existe pas dans « {1} ». + Apphost file was specified in '{0}' but it does not exist at '{1}'. + Le fichier AppHost a été spécifié dans « {0} » mais il n’existe pas dans « {1} ». {0} is a path @@ -43,8 +43,8 @@ - This command is not yet supported with single file AppHosts. - Cette commande n’est pas encore prise en charge avec les hôtes d’application à fichier unique. + This command is not yet supported with single file apphosts. + Cette commande n’est pas encore prise en charge avec les hôtes d’application à fichier unique. @@ -158,8 +158,8 @@ - Project file is not an Aspire AppHost project. - Le fichier projet n’est pas un projet Aspire AppHost. + Project file is not an Aspire apphost project. + Le fichier projet n’est pas un projet Aspire AppHost. @@ -173,8 +173,8 @@ - Single file AppHost feature is not enabled. To use .cs AppHost files, enable the feature using configuration. - La fonctionnalité d’hôte d’application à fichier unique n’est pas activée. Pour utiliser les fichiers AppHost .cs, activez la fonctionnalité via la configuration. + Single file apphost feature is not enabled. To use .cs apphost files, enable the feature using configuration. + La fonctionnalité d’hôte d’application à fichier unique n’est pas activée. Pour utiliser les fichiers AppHost .cs, activez la fonctionnalité via la configuration. diff --git a/src/Aspire.Cli/Resources/xlf/ErrorStrings.it.xlf b/src/Aspire.Cli/Resources/xlf/ErrorStrings.it.xlf index 4a0c2a5ad8c..b67c00d82e2 100644 --- a/src/Aspire.Cli/Resources/xlf/ErrorStrings.it.xlf +++ b/src/Aspire.Cli/Resources/xlf/ErrorStrings.it.xlf @@ -3,18 +3,18 @@ - Already connected to AppHost backchannel. - Connessione al backchannel di AppHost già stabilita. + Already connected to apphost backchannel. + Connessione al backchannel di AppHost già stabilita. - AppHost is incompatible with the CLI. The AppHost must be updated to a version that supports the {0} capability. - AppHost non è compatibile con l'interfaccia della riga di comando. AppHost deve essere aggiornato a una versione che supporta la funzionalità {0}. + Apphost is incompatible with the CLI. The apphost must be updated to a version that supports the {0} capability. + AppHost non è compatibile con l'interfaccia della riga di comando. AppHost deve essere aggiornato a una versione che supporta la funzionalità {0}. - AppHost file was specified in '{0}' but it does not exist at '{1}'. - Il file AppHost è stato specificato in '{0}', ma non esiste in '{1}'. + Apphost file was specified in '{0}' but it does not exist at '{1}'. + Il file AppHost è stato specificato in '{0}', ma non esiste in '{1}'. {0} is a path @@ -43,8 +43,8 @@ - This command is not yet supported with single file AppHosts. - Questo comando non è ancora supportato con AppHost a file singolo. + This command is not yet supported with single file apphosts. + Questo comando non è ancora supportato con AppHost a file singolo. @@ -158,8 +158,8 @@ - Project file is not an Aspire AppHost project. - Il file di progetto non è un progetto AppHost Aspire. + Project file is not an Aspire apphost project. + Il file di progetto non è un progetto AppHost Aspire. @@ -173,8 +173,8 @@ - Single file AppHost feature is not enabled. To use .cs AppHost files, enable the feature using configuration. - La funzionalità AppHost a file singolo non è abilitata. Per usare i file AppHost .cs, abilitare la funzionalità tramite la configurazione. + Single file apphost feature is not enabled. To use .cs apphost files, enable the feature using configuration. + La funzionalità AppHost a file singolo non è abilitata. Per usare i file AppHost .cs, abilitare la funzionalità tramite la configurazione. diff --git a/src/Aspire.Cli/Resources/xlf/ErrorStrings.ja.xlf b/src/Aspire.Cli/Resources/xlf/ErrorStrings.ja.xlf index a22756e2242..bf3dd744aa7 100644 --- a/src/Aspire.Cli/Resources/xlf/ErrorStrings.ja.xlf +++ b/src/Aspire.Cli/Resources/xlf/ErrorStrings.ja.xlf @@ -3,18 +3,18 @@ - Already connected to AppHost backchannel. - 既に AppHost バックチャネルに接続済みです。 + Already connected to apphost backchannel. + 既に AppHost バックチャネルに接続済みです。 - AppHost is incompatible with the CLI. The AppHost must be updated to a version that supports the {0} capability. - AppHost に CLI との互換性がありません。AppHost を、{0} 機能がサポートされるバージョンに更新する必要があります。 + Apphost is incompatible with the CLI. The apphost must be updated to a version that supports the {0} capability. + AppHost に CLI との互換性がありません。AppHost を、{0} 機能がサポートされるバージョンに更新する必要があります。 - AppHost file was specified in '{0}' but it does not exist at '{1}'. - AppHost ファイルが '{0}' で指定されましたが、'{1}' に存在していません。 + Apphost file was specified in '{0}' but it does not exist at '{1}'. + AppHost ファイルが '{0}' で指定されましたが、'{1}' に存在していません。 {0} is a path @@ -43,8 +43,8 @@ - This command is not yet supported with single file AppHosts. - このコマンドは、単一ファイルの AppHost ではまだサポートされていません。 + This command is not yet supported with single file apphosts. + このコマンドは、単一ファイルの AppHost ではまだサポートされていません。 @@ -158,8 +158,8 @@ - Project file is not an Aspire AppHost project. - Aspire AppHost プロジェクトではないプロジェクト ファイルです。 + Project file is not an Aspire apphost project. + Aspire AppHost プロジェクトではないプロジェクト ファイルです。 @@ -173,8 +173,8 @@ - Single file AppHost feature is not enabled. To use .cs AppHost files, enable the feature using configuration. - 単一ファイル AppHost 機能が有効になっていません。.cs AppHost ファイルを使用するには、構成を使用して機能を有効にします。 + Single file apphost feature is not enabled. To use .cs apphost files, enable the feature using configuration. + 単一ファイル AppHost 機能が有効になっていません。.cs AppHost ファイルを使用するには、構成を使用して機能を有効にします。 diff --git a/src/Aspire.Cli/Resources/xlf/ErrorStrings.ko.xlf b/src/Aspire.Cli/Resources/xlf/ErrorStrings.ko.xlf index 9d9bc7c1cf3..e89d6027758 100644 --- a/src/Aspire.Cli/Resources/xlf/ErrorStrings.ko.xlf +++ b/src/Aspire.Cli/Resources/xlf/ErrorStrings.ko.xlf @@ -3,18 +3,18 @@ - Already connected to AppHost backchannel. - AppHost 백채널에 이미 연결되었습니다. + Already connected to apphost backchannel. + AppHost 백채널에 이미 연결되었습니다. - AppHost is incompatible with the CLI. The AppHost must be updated to a version that supports the {0} capability. - AppHost가 CLI와 호환되지 않습니다. AppHost를 {0} 기능을 지원하는 버전으로 업데이트해야 합니다. + Apphost is incompatible with the CLI. The apphost must be updated to a version that supports the {0} capability. + AppHost가 CLI와 호환되지 않습니다. AppHost를 {0} 기능을 지원하는 버전으로 업데이트해야 합니다. - AppHost file was specified in '{0}' but it does not exist at '{1}'. - appHost 파일이 '{0}'에 지정되었지만, '{1}'에 존재하지 않습니다. + Apphost file was specified in '{0}' but it does not exist at '{1}'. + appHost 파일이 '{0}'에 지정되었지만, '{1}'에 존재하지 않습니다. {0} is a path @@ -43,8 +43,8 @@ - This command is not yet supported with single file AppHosts. - 이 명령은 단일 파일 AppHosts에서 아직 지원되지 않습니다. + This command is not yet supported with single file apphosts. + 이 명령은 단일 파일 AppHosts에서 아직 지원되지 않습니다. @@ -158,8 +158,8 @@ - Project file is not an Aspire AppHost project. - 프로젝트 파일이 Aspire AppHost 프로젝트가 아닙니다. + Project file is not an Aspire apphost project. + 프로젝트 파일이 Aspire AppHost 프로젝트가 아닙니다. @@ -173,8 +173,8 @@ - Single file AppHost feature is not enabled. To use .cs AppHost files, enable the feature using configuration. - 단일 파일 AppHost 기능을 사용할 수 없습니다. .cs AppHost 파일을 사용하려면 설정을 사용하여 기능을 활성화해야 합니다. + Single file apphost feature is not enabled. To use .cs apphost files, enable the feature using configuration. + 단일 파일 AppHost 기능을 사용할 수 없습니다. .cs AppHost 파일을 사용하려면 설정을 사용하여 기능을 활성화해야 합니다. diff --git a/src/Aspire.Cli/Resources/xlf/ErrorStrings.pl.xlf b/src/Aspire.Cli/Resources/xlf/ErrorStrings.pl.xlf index 955108335f9..3a9f52e9a9b 100644 --- a/src/Aspire.Cli/Resources/xlf/ErrorStrings.pl.xlf +++ b/src/Aspire.Cli/Resources/xlf/ErrorStrings.pl.xlf @@ -3,18 +3,18 @@ - Already connected to AppHost backchannel. - Nawiązano już połączenie z kanałem backchannel hosta aplikacji. + Already connected to apphost backchannel. + Nawiązano już połączenie z kanałem backchannel hosta aplikacji. - AppHost is incompatible with the CLI. The AppHost must be updated to a version that supports the {0} capability. - Host aplikacji jest niezgodny z interfejsem wiersza polecenia. Host aplikacji musi zostać zaktualizowany do wersji obsługującej funkcję {0}. + Apphost is incompatible with the CLI. The apphost must be updated to a version that supports the {0} capability. + Host aplikacji jest niezgodny z interfejsem wiersza polecenia. Host aplikacji musi zostać zaktualizowany do wersji obsługującej funkcję {0}. - AppHost file was specified in '{0}' but it does not exist at '{1}'. - Plik AppHost został określony w ścieżce „{0}”, ale nie istnieje w lokalizacji „{1}”. + Apphost file was specified in '{0}' but it does not exist at '{1}'. + Plik AppHost został określony w ścieżce „{0}”, ale nie istnieje w lokalizacji „{1}”. {0} is a path @@ -43,8 +43,8 @@ - This command is not yet supported with single file AppHosts. - To polecenie nie jest jeszcze obsługiwane w przypadku hostów AppHost z jednym plikiem. + This command is not yet supported with single file apphosts. + To polecenie nie jest jeszcze obsługiwane w przypadku hostów AppHost z jednym plikiem. @@ -158,8 +158,8 @@ - Project file is not an Aspire AppHost project. - Plik projektu nie jest projektem hosta AppHost platformy Aspire. + Project file is not an Aspire apphost project. + Plik projektu nie jest projektem hosta AppHost platformy Aspire. @@ -173,8 +173,8 @@ - Single file AppHost feature is not enabled. To use .cs AppHost files, enable the feature using configuration. - Funkcja hosta AppHost z jednym plikiem nie jest włączona. Aby użyć plików .cs hosta AppHost, włącz tę funkcję przy użyciu konfiguracji. + Single file apphost feature is not enabled. To use .cs apphost files, enable the feature using configuration. + Funkcja hosta AppHost z jednym plikiem nie jest włączona. Aby użyć plików .cs hosta AppHost, włącz tę funkcję przy użyciu konfiguracji. diff --git a/src/Aspire.Cli/Resources/xlf/ErrorStrings.pt-BR.xlf b/src/Aspire.Cli/Resources/xlf/ErrorStrings.pt-BR.xlf index 6cfdcc1c420..8c72675d3f1 100644 --- a/src/Aspire.Cli/Resources/xlf/ErrorStrings.pt-BR.xlf +++ b/src/Aspire.Cli/Resources/xlf/ErrorStrings.pt-BR.xlf @@ -3,18 +3,18 @@ - Already connected to AppHost backchannel. - Já conectado ao backchannel AppHost. + Already connected to apphost backchannel. + Já conectado ao backchannel AppHost. - AppHost is incompatible with the CLI. The AppHost must be updated to a version that supports the {0} capability. - AppHost é incompatível com a CLI. O AppHost deve ser atualizado para uma versão que dê suporte à funcionalidade {0}. + Apphost is incompatible with the CLI. The apphost must be updated to a version that supports the {0} capability. + AppHost é incompatível com a CLI. O AppHost deve ser atualizado para uma versão que dê suporte à funcionalidade {0}. - AppHost file was specified in '{0}' but it does not exist at '{1}'. - O arquivo AppHost foi especificado em ''{0}'', mas não existe em ''{1}''. + Apphost file was specified in '{0}' but it does not exist at '{1}'. + O arquivo AppHost foi especificado em ''{0}'', mas não existe em ''{1}''. {0} is a path @@ -43,8 +43,8 @@ - This command is not yet supported with single file AppHosts. - Este comando ainda não tem suporte para AppHosts de arquivo único. + This command is not yet supported with single file apphosts. + Este comando ainda não tem suporte para AppHosts de arquivo único. @@ -158,8 +158,8 @@ - Project file is not an Aspire AppHost project. - O arquivo de projeto não é um projeto AppHost do Aspire. + Project file is not an Aspire apphost project. + O arquivo de projeto não é um projeto AppHost do Aspire. @@ -173,8 +173,8 @@ - Single file AppHost feature is not enabled. To use .cs AppHost files, enable the feature using configuration. - O recurso AppHost de arquivo único não está habilitado. Para usar arquivos AppHost .cs, habilite o recurso usando a configuração. + Single file apphost feature is not enabled. To use .cs apphost files, enable the feature using configuration. + O recurso AppHost de arquivo único não está habilitado. Para usar arquivos AppHost .cs, habilite o recurso usando a configuração. diff --git a/src/Aspire.Cli/Resources/xlf/ErrorStrings.ru.xlf b/src/Aspire.Cli/Resources/xlf/ErrorStrings.ru.xlf index 1404da5d521..20ffddfee1c 100644 --- a/src/Aspire.Cli/Resources/xlf/ErrorStrings.ru.xlf +++ b/src/Aspire.Cli/Resources/xlf/ErrorStrings.ru.xlf @@ -3,18 +3,18 @@ - Already connected to AppHost backchannel. - Подключение к тайному входу AppHost уже установлено. + Already connected to apphost backchannel. + Подключение к тайному входу AppHost уже установлено. - AppHost is incompatible with the CLI. The AppHost must be updated to a version that supports the {0} capability. - AppHost несовместим с CLI. AppHost необходимо обновить до версии, которая поддерживает возможность {0}. + Apphost is incompatible with the CLI. The apphost must be updated to a version that supports the {0} capability. + AppHost несовместим с CLI. AppHost необходимо обновить до версии, которая поддерживает возможность {0}. - AppHost file was specified in '{0}' but it does not exist at '{1}'. - Файл AppHost указан в "{0}", но не существует в пути "{1}". + Apphost file was specified in '{0}' but it does not exist at '{1}'. + Файл AppHost указан в "{0}", но не существует в пути "{1}". {0} is a path @@ -43,8 +43,8 @@ - This command is not yet supported with single file AppHosts. - Эта команда пока не поддерживается для одиночных файлов AppHost. + This command is not yet supported with single file apphosts. + Эта команда пока не поддерживается для одиночных файлов AppHost. @@ -158,8 +158,8 @@ - Project file is not an Aspire AppHost project. - Файл проекта не является проектом Aspire AppHost. + Project file is not an Aspire apphost project. + Файл проекта не является проектом Aspire AppHost. @@ -173,8 +173,8 @@ - Single file AppHost feature is not enabled. To use .cs AppHost files, enable the feature using configuration. - Функция одиночного файла AppHost не включена. Чтобы использовать CS-файлы AppHost, включите эту функцию с помощью конфигурации. + Single file apphost feature is not enabled. To use .cs apphost files, enable the feature using configuration. + Функция одиночного файла AppHost не включена. Чтобы использовать CS-файлы AppHost, включите эту функцию с помощью конфигурации. diff --git a/src/Aspire.Cli/Resources/xlf/ErrorStrings.tr.xlf b/src/Aspire.Cli/Resources/xlf/ErrorStrings.tr.xlf index 46f6337ae8a..65cc034b724 100644 --- a/src/Aspire.Cli/Resources/xlf/ErrorStrings.tr.xlf +++ b/src/Aspire.Cli/Resources/xlf/ErrorStrings.tr.xlf @@ -3,18 +3,18 @@ - Already connected to AppHost backchannel. - AppHost arka kanala zaten bağlı. + Already connected to apphost backchannel. + AppHost arka kanala zaten bağlı. - AppHost is incompatible with the CLI. The AppHost must be updated to a version that supports the {0} capability. - AppHost, CLI ile uyumsuzdur. AppHost, bu {0} yeteneğini destekleyen bir sürüme güncelleştirilmelidir. + Apphost is incompatible with the CLI. The apphost must be updated to a version that supports the {0} capability. + AppHost, CLI ile uyumsuzdur. AppHost, bu {0} yeteneğini destekleyen bir sürüme güncelleştirilmelidir. - AppHost file was specified in '{0}' but it does not exist at '{1}'. - AppHost dosyası '{0}' dosyasında belirtilmiş ancak '{1}' konumunda mevcut değil. + Apphost file was specified in '{0}' but it does not exist at '{1}'. + AppHost dosyası '{0}' dosyasında belirtilmiş ancak '{1}' konumunda mevcut değil. {0} is a path @@ -43,8 +43,8 @@ - This command is not yet supported with single file AppHosts. - Bu komut, tek dosya Uygulama Ana İşlemlerinde henüz desteklenmemektedir. + This command is not yet supported with single file apphosts. + Bu komut, tek dosya Uygulama Ana İşlemlerinde henüz desteklenmemektedir. @@ -158,8 +158,8 @@ - Project file is not an Aspire AppHost project. - Proje dosyası bir Aspire AppHost projesi değil. + Project file is not an Aspire apphost project. + Proje dosyası bir Aspire AppHost projesi değil. @@ -173,8 +173,8 @@ - Single file AppHost feature is not enabled. To use .cs AppHost files, enable the feature using configuration. - Tek dosya Uygulama Ana İşlemi özelliği etkinleştirilmemiştir. .cs AppHost dosyalarını kullanmak için, yapılandırmaları kullanarak özelliği etkinleştirin. + Single file apphost feature is not enabled. To use .cs apphost files, enable the feature using configuration. + Tek dosya Uygulama Ana İşlemi özelliği etkinleştirilmemiştir. .cs AppHost dosyalarını kullanmak için, yapılandırmaları kullanarak özelliği etkinleştirin. diff --git a/src/Aspire.Cli/Resources/xlf/ErrorStrings.zh-Hans.xlf b/src/Aspire.Cli/Resources/xlf/ErrorStrings.zh-Hans.xlf index 600c2cfa7e3..c62c330ae6d 100644 --- a/src/Aspire.Cli/Resources/xlf/ErrorStrings.zh-Hans.xlf +++ b/src/Aspire.Cli/Resources/xlf/ErrorStrings.zh-Hans.xlf @@ -3,18 +3,18 @@ - Already connected to AppHost backchannel. - 已连接到 AppHost 反向通道。 + Already connected to apphost backchannel. + 已连接到 AppHost 反向通道。 - AppHost is incompatible with the CLI. The AppHost must be updated to a version that supports the {0} capability. - AppHost 与 CLI 不兼容。必须将 AppHost 更新为支持 {0} 功能的版本。 + Apphost is incompatible with the CLI. The apphost must be updated to a version that supports the {0} capability. + AppHost 与 CLI 不兼容。必须将 AppHost 更新为支持 {0} 功能的版本。 - AppHost file was specified in '{0}' but it does not exist at '{1}'. - AppHost 文件是在 ‘{0}’ 中指定的,但它在 ‘{1}’ 中不存在。 + Apphost file was specified in '{0}' but it does not exist at '{1}'. + AppHost 文件是在 ‘{0}’ 中指定的,但它在 ‘{1}’ 中不存在。 {0} is a path @@ -43,8 +43,8 @@ - This command is not yet supported with single file AppHosts. - 单文件应用主机尚不支持此命令。 + This command is not yet supported with single file apphosts. + 单文件应用主机尚不支持此命令。 @@ -158,8 +158,8 @@ - Project file is not an Aspire AppHost project. - 项目文件不是 Aspire AppHost 项目。 + Project file is not an Aspire apphost project. + 项目文件不是 Aspire AppHost 项目。 @@ -173,8 +173,8 @@ - Single file AppHost feature is not enabled. To use .cs AppHost files, enable the feature using configuration. - 未启用单文件应用主机功能。要使用 .cs AppHost 文件,请通过配置启用该功能。 + Single file apphost feature is not enabled. To use .cs apphost files, enable the feature using configuration. + 未启用单文件应用主机功能。要使用 .cs AppHost 文件,请通过配置启用该功能。 diff --git a/src/Aspire.Cli/Resources/xlf/ErrorStrings.zh-Hant.xlf b/src/Aspire.Cli/Resources/xlf/ErrorStrings.zh-Hant.xlf index 610a8d086e5..d7db47f3e19 100644 --- a/src/Aspire.Cli/Resources/xlf/ErrorStrings.zh-Hant.xlf +++ b/src/Aspire.Cli/Resources/xlf/ErrorStrings.zh-Hant.xlf @@ -3,18 +3,18 @@ - Already connected to AppHost backchannel. - 已連線到 AppHost 後通道。 + Already connected to apphost backchannel. + 已連線到 AppHost 後通道。 - AppHost is incompatible with the CLI. The AppHost must be updated to a version that supports the {0} capability. - AppHost 與 CLI 不相容。AppHost 必須更新為支援 {0} 功能的版本。 + Apphost is incompatible with the CLI. The apphost must be updated to a version that supports the {0} capability. + AppHost 與 CLI 不相容。AppHost 必須更新為支援 {0} 功能的版本。 - AppHost file was specified in '{0}' but it does not exist at '{1}'. - 在 '{0}' 中指定了 AppHost 檔案,但在 '{1}' 中不存在。 + Apphost file was specified in '{0}' but it does not exist at '{1}'. + 在 '{0}' 中指定了 AppHost 檔案,但在 '{1}' 中不存在。 {0} is a path @@ -43,8 +43,8 @@ - This command is not yet supported with single file AppHosts. - 單一檔案 AppHost 尚不支援此命令。 + This command is not yet supported with single file apphosts. + 單一檔案 AppHost 尚不支援此命令。 @@ -158,8 +158,8 @@ - Project file is not an Aspire AppHost project. - 專案檔案不是 Aspire AppHost 專案。 + Project file is not an Aspire apphost project. + 專案檔案不是 Aspire AppHost 專案。 @@ -173,8 +173,8 @@ - Single file AppHost feature is not enabled. To use .cs AppHost files, enable the feature using configuration. - 未啟用單一檔案 AppHost 功能。若要使用 .cs AppHost 檔案,請使用設定啟用此功能。 + Single file apphost feature is not enabled. To use .cs apphost files, enable the feature using configuration. + 未啟用單一檔案 AppHost 功能。若要使用 .cs AppHost 檔案,請使用設定啟用此功能。 diff --git a/src/Aspire.Cli/Resources/xlf/ExecCommandStrings.cs.xlf b/src/Aspire.Cli/Resources/xlf/ExecCommandStrings.cs.xlf index 1b2b1f166e8..7936c630909 100644 --- a/src/Aspire.Cli/Resources/xlf/ExecCommandStrings.cs.xlf +++ b/src/Aspire.Cli/Resources/xlf/ExecCommandStrings.cs.xlf @@ -4,18 +4,18 @@ The command to execute in the target resource's context. Commands can be specified directly after options or after a -- separator. - Příkaz, který se má provést v kontextu cílového prostředku. Příkazy lze zadat přímo po parametrech nebo za oddělovačem --. + Příkaz, který se má provést v kontextu cílového prostředku. Příkazy lze zadat přímo po parametrech nebo za oddělovačem --. - Execute commands in the context of an Aspire application resource. Starts the AppHost, waits for resources to initialize, then runs the specified command in the target resource's environment. (Preview) + Execute commands in the context of an Aspire application resource. Starts the apphost, waits for resources to initialize, then runs the specified command in the target resource's environment (Preview) Examples: aspire exec --resource api dotnet build aspire exec --resource api -- dotnet test --logger console aspire exec --start-resource worker pwsh -c "Get-Process" - Umožňuje spouštět příkazy v kontextu prostředku aplikace Aspire. Spustí AppHost, počká na inicializaci prostředků a pak spustí zadaný příkaz v prostředí cílového prostředku. (Preview) + Umožňuje spouštět příkazy v kontextu prostředku aplikace Aspire. Spustí AppHost, počká na inicializaci prostředků a pak spustí zadaný příkaz v prostředí cílového prostředku. (Preview) Příklady: aspire exec --resource api dotnet build @@ -35,8 +35,8 @@ Příklady: - The path to the Aspire AppHost project file. If not specified, searches for a project file in the current directory. - Cesta k souboru projektu Aspire AppHost. Pokud není zadána, vyhledá se soubor projektu v aktuálním adresáři. + The path to the Aspire apphost project file. If not specified, searches for a project file in the current directory. + Cesta k souboru projektu Aspire AppHost. Pokud není zadána, vyhledá se soubor projektu v aktuálním adresáři. @@ -46,7 +46,7 @@ Příklady: The name of the target resource to execute the command against. The command will only be executed after the target resource has successfully started and is running. - Název cílového prostředku, proti kterému má být příkaz proveden. Příkaz se spustí až po úspěšném spuštění cílového prostředku. + Název cílového prostředku, proti kterému má být příkaz proveden. Příkaz se spustí až po úspěšném spuštění cílového prostředku. @@ -55,8 +55,8 @@ Příklady: - The name of the target resource to execute the command against. The command will be executed as soon as the AppHost starts, without waiting for the resource to be ready. - Název cílového prostředku, proti kterému má být příkaz proveden. Příkaz se spustí ihned po spuštění AppHost, aniž by se čekalo, až bude prostředek připravený. + The name of the target resource to execute the command against. The command will be executed as soon as the apphost starts, without waiting for the resource to be ready. + Název cílového prostředku, proti kterému má být příkaz proveden. Příkaz se spustí ihned po spuštění AppHost, aniž by se čekalo, až bude prostředek připravený. @@ -65,8 +65,8 @@ Příklady: - The working directory to execute the command in. - Pracovní adresář, ve kterém se má příkaz spustit + The working directory to execute the command in + Pracovní adresář, ve kterém se má příkaz spustit diff --git a/src/Aspire.Cli/Resources/xlf/ExecCommandStrings.de.xlf b/src/Aspire.Cli/Resources/xlf/ExecCommandStrings.de.xlf index c3ff0a859e7..5203fed02fe 100644 --- a/src/Aspire.Cli/Resources/xlf/ExecCommandStrings.de.xlf +++ b/src/Aspire.Cli/Resources/xlf/ExecCommandStrings.de.xlf @@ -4,18 +4,18 @@ The command to execute in the target resource's context. Commands can be specified directly after options or after a -- separator. - Der Befehl, der im Kontext der Zielressource ausgeführt werden soll. Befehle können direkt nach Optionen oder nach einem -- Trennzeichen angegeben werden. + Der Befehl, der im Kontext der Zielressource ausgeführt werden soll. Befehle können direkt nach Optionen oder nach einem -- Trennzeichen angegeben werden. - Execute commands in the context of an Aspire application resource. Starts the AppHost, waits for resources to initialize, then runs the specified command in the target resource's environment. (Preview) + Execute commands in the context of an Aspire application resource. Starts the apphost, waits for resources to initialize, then runs the specified command in the target resource's environment (Preview) Examples: aspire exec --resource api dotnet build aspire exec --resource api -- dotnet test --logger console aspire exec --start-resource worker pwsh -c "Get-Process" - Führen Sie Befehle im Kontext einer Aspire-Anwendungsressource aus. Startet den AppHost, wartet auf die Initialisierung von Ressourcen und führt dann den angegebenen Befehl in der Umgebung der Zielressource aus. (Vorschau) + Führen Sie Befehle im Kontext einer Aspire-Anwendungsressource aus. Startet den AppHost, wartet auf die Initialisierung von Ressourcen und führt dann den angegebenen Befehl in der Umgebung der Zielressource aus. (Vorschau) Beispiele: aspire exec --resource api dotnet build @@ -35,8 +35,8 @@ Beispiele: - The path to the Aspire AppHost project file. If not specified, searches for a project file in the current directory. - Der Pfad zur Aspire AppHost-Projektdatei. Wenn keine Angabe erfolgt, wird im aktuellen Verzeichnis nach einer Projektdatei gesucht. + The path to the Aspire apphost project file. If not specified, searches for a project file in the current directory. + Der Pfad zur Aspire AppHost-Projektdatei. Wenn keine Angabe erfolgt, wird im aktuellen Verzeichnis nach einer Projektdatei gesucht. @@ -46,7 +46,7 @@ Beispiele: The name of the target resource to execute the command against. The command will only be executed after the target resource has successfully started and is running. - Der Name der Zielressource, für die der Befehl ausgeführt werden soll. Der Befehl wird erst ausgeführt, nachdem die Zielressource erfolgreich gestartet wurde und ausgeführt wird. + Der Name der Zielressource, für die der Befehl ausgeführt werden soll. Der Befehl wird erst ausgeführt, nachdem die Zielressource erfolgreich gestartet wurde und ausgeführt wird. @@ -55,8 +55,8 @@ Beispiele: - The name of the target resource to execute the command against. The command will be executed as soon as the AppHost starts, without waiting for the resource to be ready. - Der Name der Zielressource, für die der Befehl ausgeführt werden soll. Der Befehl wird ausgeführt, sobald der AppHost gestartet wird, ohne darauf zu warten, dass die Ressource bereit ist. + The name of the target resource to execute the command against. The command will be executed as soon as the apphost starts, without waiting for the resource to be ready. + Der Name der Zielressource, für die der Befehl ausgeführt werden soll. Der Befehl wird ausgeführt, sobald der AppHost gestartet wird, ohne darauf zu warten, dass die Ressource bereit ist. @@ -65,8 +65,8 @@ Beispiele: - The working directory to execute the command in. - Das Arbeitsverzeichnis, in dem der Befehl ausgeführt wird. + The working directory to execute the command in + Das Arbeitsverzeichnis, in dem der Befehl ausgeführt wird. diff --git a/src/Aspire.Cli/Resources/xlf/ExecCommandStrings.es.xlf b/src/Aspire.Cli/Resources/xlf/ExecCommandStrings.es.xlf index 5a59af57373..1f6f367a40f 100644 --- a/src/Aspire.Cli/Resources/xlf/ExecCommandStrings.es.xlf +++ b/src/Aspire.Cli/Resources/xlf/ExecCommandStrings.es.xlf @@ -4,18 +4,18 @@ The command to execute in the target resource's context. Commands can be specified directly after options or after a -- separator. - Comando que se va a ejecutar en el contexto del recurso de destino. Los comandos se pueden especificar directamente después de las opciones o después de un separador --. + Comando que se va a ejecutar en el contexto del recurso de destino. Los comandos se pueden especificar directamente después de las opciones o después de un separador --. - Execute commands in the context of an Aspire application resource. Starts the AppHost, waits for resources to initialize, then runs the specified command in the target resource's environment. (Preview) + Execute commands in the context of an Aspire application resource. Starts the apphost, waits for resources to initialize, then runs the specified command in the target resource's environment (Preview) Examples: aspire exec --resource api dotnet build aspire exec --resource api -- dotnet test --logger console aspire exec --start-resource worker pwsh -c "Get-Process" - Ejecute comandos en el contexto de un recurso de aplicación Aspire. Inicie AppHost, espere a que se inicialicen los recursos y a continuación, ejecute el comando especificado en el entorno del recurso de destino. (Versión preliminar) + Ejecute comandos en el contexto de un recurso de aplicación Aspire. Inicie AppHost, espere a que se inicialicen los recursos y a continuación, ejecute el comando especificado en el entorno del recurso de destino. (Versión preliminar) Ejemplos: exec de --resource api dotnet build @@ -35,8 +35,8 @@ Ejemplos: - The path to the Aspire AppHost project file. If not specified, searches for a project file in the current directory. - La ruta de acceso al archivo del proyecto host de la aplicación Aspire. Si no se especifica, se busca un archivo de proyecto en el directorio actual. + The path to the Aspire apphost project file. If not specified, searches for a project file in the current directory. + La ruta de acceso al archivo del proyecto host de la aplicación Aspire. Si no se especifica, se busca un archivo de proyecto en el directorio actual. @@ -46,7 +46,7 @@ Ejemplos: The name of the target resource to execute the command against. The command will only be executed after the target resource has successfully started and is running. - El nombre del recurso de destino en el que se ejecutará el comando. El comando solo se ejecutará después de que el recurso de destino se haya iniciado correctamente y se esté ejecutando. + El nombre del recurso de destino en el que se ejecutará el comando. El comando solo se ejecutará después de que el recurso de destino se haya iniciado correctamente y se esté ejecutando. @@ -55,8 +55,8 @@ Ejemplos: - The name of the target resource to execute the command against. The command will be executed as soon as the AppHost starts, without waiting for the resource to be ready. - El nombre del recurso de destino en el que se ejecutará el comando. El comando se ejecutará en cuanto se inicie AppHost, sin tener que esperar a que el recurso esté listo. + The name of the target resource to execute the command against. The command will be executed as soon as the apphost starts, without waiting for the resource to be ready. + El nombre del recurso de destino en el que se ejecutará el comando. El comando se ejecutará en cuanto se inicie AppHost, sin tener que esperar a que el recurso esté listo. @@ -65,8 +65,8 @@ Ejemplos: - The working directory to execute the command in. - Directorio de trabajo en el que se va a ejecutar el comando. + The working directory to execute the command in + Directorio de trabajo en el que se va a ejecutar el comando. diff --git a/src/Aspire.Cli/Resources/xlf/ExecCommandStrings.fr.xlf b/src/Aspire.Cli/Resources/xlf/ExecCommandStrings.fr.xlf index 0bb557084a0..63650d7f81d 100644 --- a/src/Aspire.Cli/Resources/xlf/ExecCommandStrings.fr.xlf +++ b/src/Aspire.Cli/Resources/xlf/ExecCommandStrings.fr.xlf @@ -4,18 +4,18 @@ The command to execute in the target resource's context. Commands can be specified directly after options or after a -- separator. - Commande à exécuter dans le contexte de la ressource cible. Vous pouvez spécifier les commandes directement après les options ou après un séparateur -- . + Commande à exécuter dans le contexte de la ressource cible. Vous pouvez spécifier les commandes directement après les options ou après un séparateur -- . - Execute commands in the context of an Aspire application resource. Starts the AppHost, waits for resources to initialize, then runs the specified command in the target resource's environment. (Preview) + Execute commands in the context of an Aspire application resource. Starts the apphost, waits for resources to initialize, then runs the specified command in the target resource's environment (Preview) Examples: aspire exec --resource api dotnet build aspire exec --resource api -- dotnet test --logger console aspire exec --start-resource worker pwsh -c "Get-Process" - Exécutez des commandes dans le contexte d’une ressource d’application Aspire. Démarre l’AppHost, attend l’initialisation des ressources, puis exécute la commande spécifiée dans l’environnement de la ressource cible. (Préversion) + Exécutez des commandes dans le contexte d’une ressource d’application Aspire. Démarre l’AppHost, attend l’initialisation des ressources, puis exécute la commande spécifiée dans l’environnement de la ressource cible. (Préversion) Exemples : aspire exec --resource api dotnet build @@ -35,8 +35,8 @@ Exemples : - The path to the Aspire AppHost project file. If not specified, searches for a project file in the current directory. - Chemin d’accès au fichier projet AppHost Aspire. Si rien n’est spécifié, recherche un fichier projet dans le répertoire actif. + The path to the Aspire apphost project file. If not specified, searches for a project file in the current directory. + Chemin d’accès au fichier projet AppHost Aspire. Si rien n’est spécifié, recherche un fichier projet dans le répertoire actif. @@ -46,7 +46,7 @@ Exemples : The name of the target resource to execute the command against. The command will only be executed after the target resource has successfully started and is running. - Nom de la ressource cible sur laquelle exécuter la commande. La commande ne sera exécutée qu’une fois que la ressource cible aura correctement démarré et sera en cours d’exécution. + Nom de la ressource cible sur laquelle exécuter la commande. La commande ne sera exécutée qu’une fois que la ressource cible aura correctement démarré et sera en cours d’exécution. @@ -55,8 +55,8 @@ Exemples : - The name of the target resource to execute the command against. The command will be executed as soon as the AppHost starts, without waiting for the resource to be ready. - Nom de la ressource cible sur laquelle exécuter la commande. La commande est exécutée dès le démarrage de l’AppHost, sans attendre que la ressource soit prête. + The name of the target resource to execute the command against. The command will be executed as soon as the apphost starts, without waiting for the resource to be ready. + Nom de la ressource cible sur laquelle exécuter la commande. La commande est exécutée dès le démarrage de l’AppHost, sans attendre que la ressource soit prête. @@ -65,8 +65,8 @@ Exemples : - The working directory to execute the command in. - Répertoire de travail dans lequel exécuter la commande. + The working directory to execute the command in + Répertoire de travail dans lequel exécuter la commande. diff --git a/src/Aspire.Cli/Resources/xlf/ExecCommandStrings.it.xlf b/src/Aspire.Cli/Resources/xlf/ExecCommandStrings.it.xlf index 29456d53a92..083b17fe3c6 100644 --- a/src/Aspire.Cli/Resources/xlf/ExecCommandStrings.it.xlf +++ b/src/Aspire.Cli/Resources/xlf/ExecCommandStrings.it.xlf @@ -4,18 +4,18 @@ The command to execute in the target resource's context. Commands can be specified directly after options or after a -- separator. - Il comando da eseguire nel contesto della risorsa di destinazione. I comandi possono essere specificati direttamente dopo le opzioni o dopo un separatore --. + Il comando da eseguire nel contesto della risorsa di destinazione. I comandi possono essere specificati direttamente dopo le opzioni o dopo un separatore --. - Execute commands in the context of an Aspire application resource. Starts the AppHost, waits for resources to initialize, then runs the specified command in the target resource's environment. (Preview) + Execute commands in the context of an Aspire application resource. Starts the apphost, waits for resources to initialize, then runs the specified command in the target resource's environment (Preview) Examples: aspire exec --resource api dotnet build aspire exec --resource api -- dotnet test --logger console aspire exec --start-resource worker pwsh -c "Get-Process" - Eseguire comandi nel contesto di una risorsa dell'applicazione Aspire. Avvia AppHost, attende che le risorse si inizializzino, quindi esegue il comando specificato nell'ambiente della risorsa di destinazione. (anteprima) + Eseguire comandi nel contesto di una risorsa dell'applicazione Aspire. Avvia AppHost, attende che le risorse si inizializzino, quindi esegue il comando specificato nell'ambiente della risorsa di destinazione. (anteprima) Esempi: aspire exec --resource api dotnet build @@ -35,8 +35,8 @@ Esempi: - The path to the Aspire AppHost project file. If not specified, searches for a project file in the current directory. - Percorso del file di un progetto AppHost di Aspire. Se non specificato, cerca un file di progetto nella directory corrente. + The path to the Aspire apphost project file. If not specified, searches for a project file in the current directory. + Percorso del file di un progetto AppHost di Aspire. Se non specificato, cerca un file di progetto nella directory corrente. @@ -46,7 +46,7 @@ Esempi: The name of the target resource to execute the command against. The command will only be executed after the target resource has successfully started and is running. - Nome della risorsa di destinazione rispetto al quale eseguire il comando. Il comando verrà eseguito solo dopo che la risorsa di destinazione è stata avviata correttamente ed è in esecuzione. + Nome della risorsa di destinazione rispetto al quale eseguire il comando. Il comando verrà eseguito solo dopo che la risorsa di destinazione è stata avviata correttamente ed è in esecuzione. @@ -55,8 +55,8 @@ Esempi: - The name of the target resource to execute the command against. The command will be executed as soon as the AppHost starts, without waiting for the resource to be ready. - Nome della risorsa di destinazione rispetto al quale eseguire il comando. Il comando verrà eseguito non appena AppHost si avvia, senza attendere che la risorsa sia pronta. + The name of the target resource to execute the command against. The command will be executed as soon as the apphost starts, without waiting for the resource to be ready. + Nome della risorsa di destinazione rispetto al quale eseguire il comando. Il comando verrà eseguito non appena AppHost si avvia, senza attendere che la risorsa sia pronta. @@ -65,8 +65,8 @@ Esempi: - The working directory to execute the command in. - La directory di lavoro in cui eseguire il comando. + The working directory to execute the command in + La directory di lavoro in cui eseguire il comando. diff --git a/src/Aspire.Cli/Resources/xlf/ExecCommandStrings.ja.xlf b/src/Aspire.Cli/Resources/xlf/ExecCommandStrings.ja.xlf index cbdbc1f898d..071540c0552 100644 --- a/src/Aspire.Cli/Resources/xlf/ExecCommandStrings.ja.xlf +++ b/src/Aspire.Cli/Resources/xlf/ExecCommandStrings.ja.xlf @@ -4,18 +4,18 @@ The command to execute in the target resource's context. Commands can be specified directly after options or after a -- separator. - ターゲット リソースのコンテキストで実行するコマンド。コマンドは、オプションの直後または -- 区切り記号の後に指定できます。 + ターゲット リソースのコンテキストで実行するコマンド。コマンドは、オプションの直後または -- 区切り記号の後に指定できます。 - Execute commands in the context of an Aspire application resource. Starts the AppHost, waits for resources to initialize, then runs the specified command in the target resource's environment. (Preview) + Execute commands in the context of an Aspire application resource. Starts the apphost, waits for resources to initialize, then runs the specified command in the target resource's environment (Preview) Examples: aspire exec --resource api dotnet build aspire exec --resource api -- dotnet test --logger console aspire exec --start-resource worker pwsh -c "Get-Process" - Aspire アプリケーション リソースのコンテキストでコマンドを実行します。AppHost を開始し、リソースが初期化されるのを待ってから、ターゲット リソースの環境で指定されたコマンドを実行します。(プレビュー) + Aspire アプリケーション リソースのコンテキストでコマンドを実行します。AppHost を開始し、リソースが初期化されるのを待ってから、ターゲット リソースの環境で指定されたコマンドを実行します。(プレビュー) 例: aspire exec --resource api dotnet build @@ -35,8 +35,8 @@ Examples: - The path to the Aspire AppHost project file. If not specified, searches for a project file in the current directory. - Aspire AppHost プロセス プロジェクト ファイルへのパス。指定しない場合は、現在のディレクトリ内のプロジェクトファイルを検索します。 + The path to the Aspire apphost project file. If not specified, searches for a project file in the current directory. + Aspire AppHost プロセス プロジェクト ファイルへのパス。指定しない場合は、現在のディレクトリ内のプロジェクトファイルを検索します。 @@ -46,7 +46,7 @@ Examples: The name of the target resource to execute the command against. The command will only be executed after the target resource has successfully started and is running. - コマンドを実行するターゲット リソースの名前。このコマンドは、ターゲットリソースが正常に起動し、実行中である後にのみ実行されます。 + コマンドを実行するターゲット リソースの名前。このコマンドは、ターゲットリソースが正常に起動し、実行中である後にのみ実行されます。 @@ -55,8 +55,8 @@ Examples: - The name of the target resource to execute the command against. The command will be executed as soon as the AppHost starts, without waiting for the resource to be ready. - コマンドを実行するターゲット リソースの名前。このコマンドは、リソースの準備が整うのを待たずに、AppHost が起動するとすぐに実行されます。 + The name of the target resource to execute the command against. The command will be executed as soon as the apphost starts, without waiting for the resource to be ready. + コマンドを実行するターゲット リソースの名前。このコマンドは、リソースの準備が整うのを待たずに、AppHost が起動するとすぐに実行されます。 @@ -65,8 +65,8 @@ Examples: - The working directory to execute the command in. - コマンドを実行する作業ディレクトリ。 + The working directory to execute the command in + コマンドを実行する作業ディレクトリ。 diff --git a/src/Aspire.Cli/Resources/xlf/ExecCommandStrings.ko.xlf b/src/Aspire.Cli/Resources/xlf/ExecCommandStrings.ko.xlf index 09d8e144f8f..2c4ea4adf45 100644 --- a/src/Aspire.Cli/Resources/xlf/ExecCommandStrings.ko.xlf +++ b/src/Aspire.Cli/Resources/xlf/ExecCommandStrings.ko.xlf @@ -4,18 +4,18 @@ The command to execute in the target resource's context. Commands can be specified directly after options or after a -- separator. - 대상 리소스의 컨텍스트에서 실행할 명령입니다. 명령은 옵션 뒤에 바로 지정하거나 -- 구분 기호 뒤에 지정할 수 있습니다. + 대상 리소스의 컨텍스트에서 실행할 명령입니다. 명령은 옵션 뒤에 바로 지정하거나 -- 구분 기호 뒤에 지정할 수 있습니다. - Execute commands in the context of an Aspire application resource. Starts the AppHost, waits for resources to initialize, then runs the specified command in the target resource's environment. (Preview) + Execute commands in the context of an Aspire application resource. Starts the apphost, waits for resources to initialize, then runs the specified command in the target resource's environment (Preview) Examples: aspire exec --resource api dotnet build aspire exec --resource api -- dotnet test --logger console aspire exec --start-resource worker pwsh -c "Get-Process" - Aspire 애플리케이션 리소스의 컨텍스트에서 명령을 실행합니다. AppHost를 시작하고 리소스가 초기화될 때까지 기다린 후, 대상 리소스 환경에서 지정된 명령을 실행합니다. (미리 보기) + Aspire 애플리케이션 리소스의 컨텍스트에서 명령을 실행합니다. AppHost를 시작하고 리소스가 초기화될 때까지 기다린 후, 대상 리소스 환경에서 지정된 명령을 실행합니다. (미리 보기) 예: aspire exec --resource api dotnet build @@ -35,8 +35,8 @@ Examples: - The path to the Aspire AppHost project file. If not specified, searches for a project file in the current directory. - Aspire AppHost 프로젝트 파일의 경로입니다. 지정하지 않으면 현재 디렉터리에서 프로젝트 파일을 검색합니다. + The path to the Aspire apphost project file. If not specified, searches for a project file in the current directory. + Aspire AppHost 프로젝트 파일의 경로입니다. 지정하지 않으면 현재 디렉터리에서 프로젝트 파일을 검색합니다. @@ -46,7 +46,7 @@ Examples: The name of the target resource to execute the command against. The command will only be executed after the target resource has successfully started and is running. - 명령을 실행할 대상 리소스의 이름입니다. 명령은 대상 리소스가 성공적으로 시작되고 실행된 후에만 실행됩니다. + 명령을 실행할 대상 리소스의 이름입니다. 명령은 대상 리소스가 성공적으로 시작되고 실행된 후에만 실행됩니다. @@ -55,8 +55,8 @@ Examples: - The name of the target resource to execute the command against. The command will be executed as soon as the AppHost starts, without waiting for the resource to be ready. - 명령을 실행할 대상 리소스의 이름입니다. 명령은 리소스가 준비될 때까지 기다리지 않고 AppHost가 시작되는 즉시 실행됩니다. + The name of the target resource to execute the command against. The command will be executed as soon as the apphost starts, without waiting for the resource to be ready. + 명령을 실행할 대상 리소스의 이름입니다. 명령은 리소스가 준비될 때까지 기다리지 않고 AppHost가 시작되는 즉시 실행됩니다. @@ -65,8 +65,8 @@ Examples: - The working directory to execute the command in. - 명령을 실행할 작업 디렉터리입니다. + The working directory to execute the command in + 명령을 실행할 작업 디렉터리입니다. diff --git a/src/Aspire.Cli/Resources/xlf/ExecCommandStrings.pl.xlf b/src/Aspire.Cli/Resources/xlf/ExecCommandStrings.pl.xlf index 5857454a287..35b5155e777 100644 --- a/src/Aspire.Cli/Resources/xlf/ExecCommandStrings.pl.xlf +++ b/src/Aspire.Cli/Resources/xlf/ExecCommandStrings.pl.xlf @@ -4,18 +4,18 @@ The command to execute in the target resource's context. Commands can be specified directly after options or after a -- separator. - Polecenie do wykonania w kontekście zasobu docelowego. Polecenia można określać bezpośrednio po opcjach lub po separatorze --. + Polecenie do wykonania w kontekście zasobu docelowego. Polecenia można określać bezpośrednio po opcjach lub po separatorze --. - Execute commands in the context of an Aspire application resource. Starts the AppHost, waits for resources to initialize, then runs the specified command in the target resource's environment. (Preview) + Execute commands in the context of an Aspire application resource. Starts the apphost, waits for resources to initialize, then runs the specified command in the target resource's environment (Preview) Examples: aspire exec --resource api dotnet build aspire exec --resource api -- dotnet test --logger console aspire exec --start-resource worker pwsh -c "Get-Process" - Wykonywanie poleceń w kontekście zasobu aplikacji Aspire. Uruchamia usługę AppHost, czeka na zainicjowanie zasobów, a następnie uruchamia określone polecenie w środowisku zasobu docelowego. (Podgląd) + Wykonywanie poleceń w kontekście zasobu aplikacji Aspire. Uruchamia usługę AppHost, czeka na zainicjowanie zasobów, a następnie uruchamia określone polecenie w środowisku zasobu docelowego. (Podgląd) Przykłady: aspire exec --resource api dotnet build @@ -35,8 +35,8 @@ Przykłady: - The path to the Aspire AppHost project file. If not specified, searches for a project file in the current directory. - Ścieżka do pliku projektu AppHost usługi Aspire. Jeżeli nie określono, wyszukuje plik projektu w bieżącym katalogu. + The path to the Aspire apphost project file. If not specified, searches for a project file in the current directory. + Ścieżka do pliku projektu AppHost usługi Aspire. Jeżeli nie określono, wyszukuje plik projektu w bieżącym katalogu. @@ -46,7 +46,7 @@ Przykłady: The name of the target resource to execute the command against. The command will only be executed after the target resource has successfully started and is running. - Nazwa zasobu docelowego, względem którego ma zostać wykonane polecenie. Polecenie zostanie wykonane dopiero po pomyślnym uruchomieniu zasobu docelowego i jego działaniu. + Nazwa zasobu docelowego, względem którego ma zostać wykonane polecenie. Polecenie zostanie wykonane dopiero po pomyślnym uruchomieniu zasobu docelowego i jego działaniu. @@ -55,8 +55,8 @@ Przykłady: - The name of the target resource to execute the command against. The command will be executed as soon as the AppHost starts, without waiting for the resource to be ready. - Nazwa zasobu docelowego, względem którego ma zostać wykonane polecenie. Polecenie zostanie wykonane zaraz po uruchomieniu usługi AppHost, bez oczekiwania na gotowość zasobu. + The name of the target resource to execute the command against. The command will be executed as soon as the apphost starts, without waiting for the resource to be ready. + Nazwa zasobu docelowego, względem którego ma zostać wykonane polecenie. Polecenie zostanie wykonane zaraz po uruchomieniu usługi AppHost, bez oczekiwania na gotowość zasobu. @@ -65,8 +65,8 @@ Przykłady: - The working directory to execute the command in. - Katalog roboczy, w którym ma zostać wykonane polecenie. + The working directory to execute the command in + Katalog roboczy, w którym ma zostać wykonane polecenie. diff --git a/src/Aspire.Cli/Resources/xlf/ExecCommandStrings.pt-BR.xlf b/src/Aspire.Cli/Resources/xlf/ExecCommandStrings.pt-BR.xlf index 231b4ecb772..16e64fca15c 100644 --- a/src/Aspire.Cli/Resources/xlf/ExecCommandStrings.pt-BR.xlf +++ b/src/Aspire.Cli/Resources/xlf/ExecCommandStrings.pt-BR.xlf @@ -4,18 +4,18 @@ The command to execute in the target resource's context. Commands can be specified directly after options or after a -- separator. - O comando a ser executado no contexto do recurso alvo. Os comandos podem ser especificados diretamente após as opções ou após um separador --. + O comando a ser executado no contexto do recurso alvo. Os comandos podem ser especificados diretamente após as opções ou após um separador --. - Execute commands in the context of an Aspire application resource. Starts the AppHost, waits for resources to initialize, then runs the specified command in the target resource's environment. (Preview) + Execute commands in the context of an Aspire application resource. Starts the apphost, waits for resources to initialize, then runs the specified command in the target resource's environment (Preview) Examples: aspire exec --resource api dotnet build aspire exec --resource api -- dotnet test --logger console aspire exec --start-resource worker pwsh -c "Get-Process" - Execute comandos no contexto de um recurso de aplicativo Aspire. Inicia o AppHost, espera os recursos serem inicializados e então executa o comando especificado no ambiente do recurso alvo. (Prévia) + Execute comandos no contexto de um recurso de aplicativo Aspire. Inicia o AppHost, espera os recursos serem inicializados e então executa o comando especificado no ambiente do recurso alvo. (Prévia) Exemplos: aspire exec --resource api dotnet build @@ -35,8 +35,8 @@ Exemplos: - The path to the Aspire AppHost project file. If not specified, searches for a project file in the current directory. - O caminho para o arquivo de projeto Aspire AppHost. Se não especificado, procura por um arquivo de projeto no diretório atual. + The path to the Aspire apphost project file. If not specified, searches for a project file in the current directory. + O caminho para o arquivo de projeto Aspire AppHost. Se não especificado, procura por um arquivo de projeto no diretório atual. @@ -46,7 +46,7 @@ Exemplos: The name of the target resource to execute the command against. The command will only be executed after the target resource has successfully started and is running. - O nome do recurso alvo para executar o comando contra. O comando só será executado após o recurso alvo ter sido iniciado com sucesso e estar em execução. + O nome do recurso alvo para executar o comando contra. O comando só será executado após o recurso alvo ter sido iniciado com sucesso e estar em execução. @@ -55,8 +55,8 @@ Exemplos: - The name of the target resource to execute the command against. The command will be executed as soon as the AppHost starts, without waiting for the resource to be ready. - O nome do recurso alvo para executar o comando contra. O comando será executado assim que o AppHost iniciar, sem esperar que o recurso esteja pronto. + The name of the target resource to execute the command against. The command will be executed as soon as the apphost starts, without waiting for the resource to be ready. + O nome do recurso alvo para executar o comando contra. O comando será executado assim que o AppHost iniciar, sem esperar que o recurso esteja pronto. @@ -65,8 +65,8 @@ Exemplos: - The working directory to execute the command in. - O diretório de trabalho no qual executar o comando. + The working directory to execute the command in + O diretório de trabalho no qual executar o comando. diff --git a/src/Aspire.Cli/Resources/xlf/ExecCommandStrings.ru.xlf b/src/Aspire.Cli/Resources/xlf/ExecCommandStrings.ru.xlf index 33345a5c60c..ba69684d1c4 100644 --- a/src/Aspire.Cli/Resources/xlf/ExecCommandStrings.ru.xlf +++ b/src/Aspire.Cli/Resources/xlf/ExecCommandStrings.ru.xlf @@ -4,18 +4,18 @@ The command to execute in the target resource's context. Commands can be specified directly after options or after a -- separator. - Команда для выполнения в контексте целевого ресурса. Команды можно указывать непосредственно после параметров или после разделителя --. + Команда для выполнения в контексте целевого ресурса. Команды можно указывать непосредственно после параметров или после разделителя --. - Execute commands in the context of an Aspire application resource. Starts the AppHost, waits for resources to initialize, then runs the specified command in the target resource's environment. (Preview) + Execute commands in the context of an Aspire application resource. Starts the apphost, waits for resources to initialize, then runs the specified command in the target resource's environment (Preview) Examples: aspire exec --resource api dotnet build aspire exec --resource api -- dotnet test --logger console aspire exec --start-resource worker pwsh -c "Get-Process" - Выполнение команд в контексте ресурса приложения Aspire. Запускает AppHost, ждет инициализации ресурсов, затем запускает указанную команду в среде целевого ресурса. (Предварительная версия) + Выполнение команд в контексте ресурса приложения Aspire. Запускает AppHost, ждет инициализации ресурсов, затем запускает указанную команду в среде целевого ресурса. (Предварительная версия) Примеры aspire exec --resource api dotnet build @@ -35,8 +35,8 @@ Examples: - The path to the Aspire AppHost project file. If not specified, searches for a project file in the current directory. - Путь к файлу проекта Aspire AppHost. Если не указано иное, ищет файл проекта в текущем каталоге. + The path to the Aspire apphost project file. If not specified, searches for a project file in the current directory. + Путь к файлу проекта Aspire AppHost. Если не указано иное, ищет файл проекта в текущем каталоге. @@ -46,7 +46,7 @@ Examples: The name of the target resource to execute the command against. The command will only be executed after the target resource has successfully started and is running. - Имя целевого ресурса для выполнения команды. Команда будет выполнена только после успешного запуска и работы целевого ресурса. + Имя целевого ресурса для выполнения команды. Команда будет выполнена только после успешного запуска и работы целевого ресурса. @@ -55,8 +55,8 @@ Examples: - The name of the target resource to execute the command against. The command will be executed as soon as the AppHost starts, without waiting for the resource to be ready. - Имя целевого ресурса для выполнения команды. Команда будет выполнена сразу после запуска AppHost, не дожидаясь готовности ресурса. + The name of the target resource to execute the command against. The command will be executed as soon as the apphost starts, without waiting for the resource to be ready. + Имя целевого ресурса для выполнения команды. Команда будет выполнена сразу после запуска AppHost, не дожидаясь готовности ресурса. @@ -65,8 +65,8 @@ Examples: - The working directory to execute the command in. - Рабочий каталог, в котором будет выполнена команда. + The working directory to execute the command in + Рабочий каталог, в котором будет выполнена команда. diff --git a/src/Aspire.Cli/Resources/xlf/ExecCommandStrings.tr.xlf b/src/Aspire.Cli/Resources/xlf/ExecCommandStrings.tr.xlf index 17b0e78b89d..51c9b37fffe 100644 --- a/src/Aspire.Cli/Resources/xlf/ExecCommandStrings.tr.xlf +++ b/src/Aspire.Cli/Resources/xlf/ExecCommandStrings.tr.xlf @@ -4,18 +4,18 @@ The command to execute in the target resource's context. Commands can be specified directly after options or after a -- separator. - Hedef kaynağın bağlamında yürütülecek komut. Komutlar, seçeneklerin hemen ardından veya -- ayırıcısından sonra belirtilebilir. + Hedef kaynağın bağlamında yürütülecek komut. Komutlar, seçeneklerin hemen ardından veya -- ayırıcısından sonra belirtilebilir. - Execute commands in the context of an Aspire application resource. Starts the AppHost, waits for resources to initialize, then runs the specified command in the target resource's environment. (Preview) + Execute commands in the context of an Aspire application resource. Starts the apphost, waits for resources to initialize, then runs the specified command in the target resource's environment (Preview) Examples: aspire exec --resource api dotnet build aspire exec --resource api -- dotnet test --logger console aspire exec --start-resource worker pwsh -c "Get-Process" - Aspire uygulama kaynağı bağlamında komutları yürütün. AppHost'u başlatır, kaynakların başlatılmasını bekler, ardından hedef kaynağın ortamında belirtilen komutu çalıştırır. (Önizleme) + Aspire uygulama kaynağı bağlamında komutları yürütün. AppHost'u başlatır, kaynakların başlatılmasını bekler, ardından hedef kaynağın ortamında belirtilen komutu çalıştırır. (Önizleme) Örnekler: aspire exec --resource api dotnet build @@ -35,8 +35,8 @@ Examples: - The path to the Aspire AppHost project file. If not specified, searches for a project file in the current directory. - Aspire AppHost proje dosyasının yolu. Belirtilmezse, geçerli dizinde bir proje dosyası aranır. + The path to the Aspire apphost project file. If not specified, searches for a project file in the current directory. + Aspire AppHost proje dosyasının yolu. Belirtilmezse, geçerli dizinde bir proje dosyası aranır. @@ -46,7 +46,7 @@ Examples: The name of the target resource to execute the command against. The command will only be executed after the target resource has successfully started and is running. - Komutun yürütüleceği hedef kaynağın adıdır. Komut, yalnızca hedef kaynak başarıyla başlatıldıktan ve çalışmaya başladıktan sonra yürütülür. + Komutun yürütüleceği hedef kaynağın adıdır. Komut, yalnızca hedef kaynak başarıyla başlatıldıktan ve çalışmaya başladıktan sonra yürütülür. @@ -55,8 +55,8 @@ Examples: - The name of the target resource to execute the command against. The command will be executed as soon as the AppHost starts, without waiting for the resource to be ready. - Komutun yürütüleceği hedef kaynağın adıdır. Komut, kaynak hazır olana kadar beklemeden AppHost başlatılır başlatılmaz yürütülür. + The name of the target resource to execute the command against. The command will be executed as soon as the apphost starts, without waiting for the resource to be ready. + Komutun yürütüleceği hedef kaynağın adıdır. Komut, kaynak hazır olana kadar beklemeden AppHost başlatılır başlatılmaz yürütülür. @@ -65,8 +65,8 @@ Examples: - The working directory to execute the command in. - Komutun yürütüleceği çalışma dizini. + The working directory to execute the command in + Komutun yürütüleceği çalışma dizini. diff --git a/src/Aspire.Cli/Resources/xlf/ExecCommandStrings.zh-Hans.xlf b/src/Aspire.Cli/Resources/xlf/ExecCommandStrings.zh-Hans.xlf index e42fb0b0010..e85bcbfdb2f 100644 --- a/src/Aspire.Cli/Resources/xlf/ExecCommandStrings.zh-Hans.xlf +++ b/src/Aspire.Cli/Resources/xlf/ExecCommandStrings.zh-Hans.xlf @@ -4,18 +4,18 @@ The command to execute in the target resource's context. Commands can be specified directly after options or after a -- separator. - 要在目标资源的上下文中执行的命令。可以在选项之后或 -- 分隔符之后直接指定命令。 + 要在目标资源的上下文中执行的命令。可以在选项之后或 -- 分隔符之后直接指定命令。 - Execute commands in the context of an Aspire application resource. Starts the AppHost, waits for resources to initialize, then runs the specified command in the target resource's environment. (Preview) + Execute commands in the context of an Aspire application resource. Starts the apphost, waits for resources to initialize, then runs the specified command in the target resource's environment (Preview) Examples: aspire exec --resource api dotnet build aspire exec --resource api -- dotnet test --logger console aspire exec --start-resource worker pwsh -c "Get-Process" - 在 Aspire 应用程序资源的上下文中执行命令。启动 AppHost,等待资源初始化,然后在目标资源的环境中运行指定的命令。(预览) + 在 Aspire 应用程序资源的上下文中执行命令。启动 AppHost,等待资源初始化,然后在目标资源的环境中运行指定的命令。(预览) 示例: aspire exec --resource api dotnet build @@ -35,8 +35,8 @@ Examples: - The path to the Aspire AppHost project file. If not specified, searches for a project file in the current directory. - Aspire AppHost 项目文件的路径。如果未指定,则在当前目录中搜索项目文件。 + The path to the Aspire apphost project file. If not specified, searches for a project file in the current directory. + Aspire AppHost 项目文件的路径。如果未指定,则在当前目录中搜索项目文件。 @@ -46,7 +46,7 @@ Examples: The name of the target resource to execute the command against. The command will only be executed after the target resource has successfully started and is running. - 要针对其执行命令的目标资源的名称。只有在目标资源成功启动并处于运行状态后,才会执行该命令。 + 要针对其执行命令的目标资源的名称。只有在目标资源成功启动并处于运行状态后,才会执行该命令。 @@ -55,8 +55,8 @@ Examples: - The name of the target resource to execute the command against. The command will be executed as soon as the AppHost starts, without waiting for the resource to be ready. - 要针对其执行命令的目标资源的名称。该命令将在 AppHost 启动后立即执行,而无需等待资源就绪。 + The name of the target resource to execute the command against. The command will be executed as soon as the apphost starts, without waiting for the resource to be ready. + 要针对其执行命令的目标资源的名称。该命令将在 AppHost 启动后立即执行,而无需等待资源就绪。 @@ -65,8 +65,8 @@ Examples: - The working directory to execute the command in. - 要在其中执行命令的工作目录。 + The working directory to execute the command in + 要在其中执行命令的工作目录。 diff --git a/src/Aspire.Cli/Resources/xlf/ExecCommandStrings.zh-Hant.xlf b/src/Aspire.Cli/Resources/xlf/ExecCommandStrings.zh-Hant.xlf index e6dc7d09c23..452cb28ec2a 100644 --- a/src/Aspire.Cli/Resources/xlf/ExecCommandStrings.zh-Hant.xlf +++ b/src/Aspire.Cli/Resources/xlf/ExecCommandStrings.zh-Hant.xlf @@ -4,18 +4,18 @@ The command to execute in the target resource's context. Commands can be specified directly after options or after a -- separator. - 要在目標資源的內容中執行的命令。命令可以直接在選項之後或在 -- 分隔符號之後指定。 + 要在目標資源的內容中執行的命令。命令可以直接在選項之後或在 -- 分隔符號之後指定。 - Execute commands in the context of an Aspire application resource. Starts the AppHost, waits for resources to initialize, then runs the specified command in the target resource's environment. (Preview) + Execute commands in the context of an Aspire application resource. Starts the apphost, waits for resources to initialize, then runs the specified command in the target resource's environment (Preview) Examples: aspire exec --resource api dotnet build aspire exec --resource api -- dotnet test --logger console aspire exec --start-resource worker pwsh -c "Get-Process" - 在 Aspire 應用程式資源的內容中執行命令。啟動 AppHost,等待資源初始化,然後在目標資源的環境中執行指定的命令。(預覽) + 在 Aspire 應用程式資源的內容中執行命令。啟動 AppHost,等待資源初始化,然後在目標資源的環境中執行指定的命令。(預覽) 範例: aspire exec --resource api dotnet build @@ -35,8 +35,8 @@ Examples: - The path to the Aspire AppHost project file. If not specified, searches for a project file in the current directory. - Aspire AppHost 專案檔案的路徑。如果未指定,將在目前目錄中搜尋專案檔案。 + The path to the Aspire apphost project file. If not specified, searches for a project file in the current directory. + Aspire AppHost 專案檔案的路徑。如果未指定,將在目前目錄中搜尋專案檔案。 @@ -46,7 +46,7 @@ Examples: The name of the target resource to execute the command against. The command will only be executed after the target resource has successfully started and is running. - 要執行命令的目標資源名稱。命令僅在目標資源成功啟動並運行後執行。 + 要執行命令的目標資源名稱。命令僅在目標資源成功啟動並運行後執行。 @@ -55,8 +55,8 @@ Examples: - The name of the target resource to execute the command against. The command will be executed as soon as the AppHost starts, without waiting for the resource to be ready. - 要執行命令的目標資源名稱。命令將在 AppHost 啟動後立即執行,而不會等待資源就緒。 + The name of the target resource to execute the command against. The command will be executed as soon as the apphost starts, without waiting for the resource to be ready. + 要執行命令的目標資源名稱。命令將在 AppHost 啟動後立即執行,而不會等待資源就緒。 @@ -65,8 +65,8 @@ Examples: - The working directory to execute the command in. - 執行命令的工作目錄。 + The working directory to execute the command in + 執行命令的工作目錄。 diff --git a/src/Aspire.Cli/Resources/xlf/InitCommandStrings.cs.xlf b/src/Aspire.Cli/Resources/xlf/InitCommandStrings.cs.xlf index 8ae0e9c9df8..e33a53360dc 100644 --- a/src/Aspire.Cli/Resources/xlf/InitCommandStrings.cs.xlf +++ b/src/Aspire.Cli/Resources/xlf/InitCommandStrings.cs.xlf @@ -3,8 +3,8 @@ - Adding AppHost project to solution... - Přidává se projekt AppHost do řešení... + Adding apphost project to solution... + Přidává se projekt AppHost do řešení... @@ -23,8 +23,8 @@ - Creating AppHost project... - Vytváří se projekt AppHost... + Creating apphost project... + Vytváří se projekt AppHost... @@ -33,18 +33,23 @@ - Initialize Aspire in an existing codebase. + Initialize Aspire in an existing codebase Inicializujte podporu Aspire v existujícím řešení nebo vytvořte AppHost s jedním souborem. + + The programming language for the apphost (csharp, typescript) + The programming language for the apphost (csharp, typescript) + + Multiple solution files found. Please select which one to add the Aspire projects to: Bylo nalezeno více souborů řešení. Vyberte, do kterého projektu Aspire chcete přidat: - No solution file found. Creating single-file AppHost... - Nenašel se žádný soubor řešení. Vytváří se AppHost s jedním souborem... + No solution file found. Creating single-file apphost... + Nenašel se žádný soubor řešení. Vytváří se AppHost s jedním souborem... @@ -63,8 +68,8 @@ - The solution file '{0}' and project file '{1}' are in the same directory. The AppHost and ServiceDefaults projects cannot be created inside an existing project directory. Move the solution file to a parent directory or the project file to a subdirectory. - The solution file '{0}' and project file '{1}' are in the same directory. The AppHost and ServiceDefaults projects cannot be created inside an existing project directory. Move the solution file to a parent directory or the project file to a subdirectory. + The solution file '{0}' and project file '{1}' are in the same directory. The apphost and ServiceDefaults projects cannot be created inside an existing project directory. Move the solution file to a parent directory or the project file to a subdirectory. + The solution file '{0}' and project file '{1}' are in the same directory. The apphost and ServiceDefaults projects cannot be created inside an existing project directory. Move the solution file to a parent directory or the project file to a subdirectory. diff --git a/src/Aspire.Cli/Resources/xlf/InitCommandStrings.de.xlf b/src/Aspire.Cli/Resources/xlf/InitCommandStrings.de.xlf index 767e6237565..ba5216ad210 100644 --- a/src/Aspire.Cli/Resources/xlf/InitCommandStrings.de.xlf +++ b/src/Aspire.Cli/Resources/xlf/InitCommandStrings.de.xlf @@ -3,8 +3,8 @@ - Adding AppHost project to solution... - AppHost-Projekt wird der Lösung hinzugefügt … + Adding apphost project to solution... + AppHost-Projekt wird der Lösung hinzugefügt … @@ -23,8 +23,8 @@ - Creating AppHost project... - AppHost-Projekt wird erstellt … + Creating apphost project... + AppHost-Projekt wird erstellt … @@ -33,18 +33,23 @@ - Initialize Aspire in an existing codebase. + Initialize Aspire in an existing codebase Initialisieren der Unterstützung von Aspire in einer vorhandenen Lösung, oder Erstellen einen AppHosts mit nur einer Datei. + + The programming language for the apphost (csharp, typescript) + The programming language for the apphost (csharp, typescript) + + Multiple solution files found. Please select which one to add the Aspire projects to: Es wurden mehrere Lösungsdateien gefunden. Wählen Sie das Projekt aus, dem die Aspire-Projekte hinzugefügt werden sollen: - No solution file found. Creating single-file AppHost... - Keine Lösungsdatei gefunden. AppHost mit einzelner Datei wird erstellt … + No solution file found. Creating single-file apphost... + Keine Lösungsdatei gefunden. AppHost mit einzelner Datei wird erstellt … @@ -63,8 +68,8 @@ - The solution file '{0}' and project file '{1}' are in the same directory. The AppHost and ServiceDefaults projects cannot be created inside an existing project directory. Move the solution file to a parent directory or the project file to a subdirectory. - The solution file '{0}' and project file '{1}' are in the same directory. The AppHost and ServiceDefaults projects cannot be created inside an existing project directory. Move the solution file to a parent directory or the project file to a subdirectory. + The solution file '{0}' and project file '{1}' are in the same directory. The apphost and ServiceDefaults projects cannot be created inside an existing project directory. Move the solution file to a parent directory or the project file to a subdirectory. + The solution file '{0}' and project file '{1}' are in the same directory. The apphost and ServiceDefaults projects cannot be created inside an existing project directory. Move the solution file to a parent directory or the project file to a subdirectory. diff --git a/src/Aspire.Cli/Resources/xlf/InitCommandStrings.es.xlf b/src/Aspire.Cli/Resources/xlf/InitCommandStrings.es.xlf index b6ed5d391ed..28a5a5721dc 100644 --- a/src/Aspire.Cli/Resources/xlf/InitCommandStrings.es.xlf +++ b/src/Aspire.Cli/Resources/xlf/InitCommandStrings.es.xlf @@ -3,8 +3,8 @@ - Adding AppHost project to solution... - Agregando el proyecto AppHost a la solución... + Adding apphost project to solution... + Agregando el proyecto AppHost a la solución... @@ -23,8 +23,8 @@ - Creating AppHost project... - Creando proyecto AppHost... + Creating apphost project... + Creando proyecto AppHost... @@ -33,18 +33,23 @@ - Initialize Aspire in an existing codebase. + Initialize Aspire in an existing codebase Inicializa la compatibilidad con Initialize en una solución existente o crea un AppHost de un solo archivo. + + The programming language for the apphost (csharp, typescript) + The programming language for the apphost (csharp, typescript) + + Multiple solution files found. Please select which one to add the Aspire projects to: Se encontraron varios archivos de solución. Seleccione a cuál desea agregar los proyectos de Aspire: - No solution file found. Creating single-file AppHost... - No se encontró ningún archivo de solución. Creando AppHost de un solo archivo... + No solution file found. Creating single-file apphost... + No se encontró ningún archivo de solución. Creando AppHost de un solo archivo... @@ -63,8 +68,8 @@ - The solution file '{0}' and project file '{1}' are in the same directory. The AppHost and ServiceDefaults projects cannot be created inside an existing project directory. Move the solution file to a parent directory or the project file to a subdirectory. - The solution file '{0}' and project file '{1}' are in the same directory. The AppHost and ServiceDefaults projects cannot be created inside an existing project directory. Move the solution file to a parent directory or the project file to a subdirectory. + The solution file '{0}' and project file '{1}' are in the same directory. The apphost and ServiceDefaults projects cannot be created inside an existing project directory. Move the solution file to a parent directory or the project file to a subdirectory. + The solution file '{0}' and project file '{1}' are in the same directory. The apphost and ServiceDefaults projects cannot be created inside an existing project directory. Move the solution file to a parent directory or the project file to a subdirectory. diff --git a/src/Aspire.Cli/Resources/xlf/InitCommandStrings.fr.xlf b/src/Aspire.Cli/Resources/xlf/InitCommandStrings.fr.xlf index 8101a7735d4..ab5391e4fda 100644 --- a/src/Aspire.Cli/Resources/xlf/InitCommandStrings.fr.xlf +++ b/src/Aspire.Cli/Resources/xlf/InitCommandStrings.fr.xlf @@ -3,8 +3,8 @@ - Adding AppHost project to solution... - Ajout du projet AppHost à la solution... + Adding apphost project to solution... + Ajout du projet AppHost à la solution... @@ -23,8 +23,8 @@ - Creating AppHost project... - Création du projet AppHost... + Creating apphost project... + Création du projet AppHost... @@ -33,18 +33,23 @@ - Initialize Aspire in an existing codebase. + Initialize Aspire in an existing codebase Initialisez la prise en charge d’Aspire dans une solution existante ou créez un AppHost à fichier unique. + + The programming language for the apphost (csharp, typescript) + The programming language for the apphost (csharp, typescript) + + Multiple solution files found. Please select which one to add the Aspire projects to: Plusieurs fichiers solution ont été trouvés. Sélectionnez celui auquel ajouter les projets Aspire : - No solution file found. Creating single-file AppHost... - Fichier de solution introuvable. Création d’un AppHost à fichier unique... + No solution file found. Creating single-file apphost... + Fichier de solution introuvable. Création d’un AppHost à fichier unique... @@ -63,8 +68,8 @@ - The solution file '{0}' and project file '{1}' are in the same directory. The AppHost and ServiceDefaults projects cannot be created inside an existing project directory. Move the solution file to a parent directory or the project file to a subdirectory. - The solution file '{0}' and project file '{1}' are in the same directory. The AppHost and ServiceDefaults projects cannot be created inside an existing project directory. Move the solution file to a parent directory or the project file to a subdirectory. + The solution file '{0}' and project file '{1}' are in the same directory. The apphost and ServiceDefaults projects cannot be created inside an existing project directory. Move the solution file to a parent directory or the project file to a subdirectory. + The solution file '{0}' and project file '{1}' are in the same directory. The apphost and ServiceDefaults projects cannot be created inside an existing project directory. Move the solution file to a parent directory or the project file to a subdirectory. diff --git a/src/Aspire.Cli/Resources/xlf/InitCommandStrings.it.xlf b/src/Aspire.Cli/Resources/xlf/InitCommandStrings.it.xlf index 4457c9abdae..993566a91fd 100644 --- a/src/Aspire.Cli/Resources/xlf/InitCommandStrings.it.xlf +++ b/src/Aspire.Cli/Resources/xlf/InitCommandStrings.it.xlf @@ -3,8 +3,8 @@ - Adding AppHost project to solution... - Aggiunta del progetto AppHost alla soluzione in corso... + Adding apphost project to solution... + Aggiunta del progetto AppHost alla soluzione in corso... @@ -23,8 +23,8 @@ - Creating AppHost project... - Creazione del progetto AppHost in corso... + Creating apphost project... + Creazione del progetto AppHost in corso... @@ -33,18 +33,23 @@ - Initialize Aspire in an existing codebase. + Initialize Aspire in an existing codebase Inizializzare il supporto Aspire in una soluzione esistente o creare un AppHost a file singolo. + + The programming language for the apphost (csharp, typescript) + The programming language for the apphost (csharp, typescript) + + Multiple solution files found. Please select which one to add the Aspire projects to: Trovati più file di soluzione. Selezionare a quale aggiungere i progetti Aspire: - No solution file found. Creating single-file AppHost... - Nessun file di soluzione trovato. Creazione di AppHost a file singolo in corso... + No solution file found. Creating single-file apphost... + Nessun file di soluzione trovato. Creazione di AppHost a file singolo in corso... @@ -63,8 +68,8 @@ - The solution file '{0}' and project file '{1}' are in the same directory. The AppHost and ServiceDefaults projects cannot be created inside an existing project directory. Move the solution file to a parent directory or the project file to a subdirectory. - The solution file '{0}' and project file '{1}' are in the same directory. The AppHost and ServiceDefaults projects cannot be created inside an existing project directory. Move the solution file to a parent directory or the project file to a subdirectory. + The solution file '{0}' and project file '{1}' are in the same directory. The apphost and ServiceDefaults projects cannot be created inside an existing project directory. Move the solution file to a parent directory or the project file to a subdirectory. + The solution file '{0}' and project file '{1}' are in the same directory. The apphost and ServiceDefaults projects cannot be created inside an existing project directory. Move the solution file to a parent directory or the project file to a subdirectory. diff --git a/src/Aspire.Cli/Resources/xlf/InitCommandStrings.ja.xlf b/src/Aspire.Cli/Resources/xlf/InitCommandStrings.ja.xlf index a968a2da8c7..4324c2fd4b1 100644 --- a/src/Aspire.Cli/Resources/xlf/InitCommandStrings.ja.xlf +++ b/src/Aspire.Cli/Resources/xlf/InitCommandStrings.ja.xlf @@ -3,8 +3,8 @@ - Adding AppHost project to solution... - AppHost プロジェクトをソリューションに追加しています... + Adding apphost project to solution... + AppHost プロジェクトをソリューションに追加しています... @@ -23,8 +23,8 @@ - Creating AppHost project... - AppHost プロジェクトを作成しています... + Creating apphost project... + AppHost プロジェクトを作成しています... @@ -33,18 +33,23 @@ - Initialize Aspire in an existing codebase. + Initialize Aspire in an existing codebase 既存のソリューションで Aspire サポートを初期化するか、単一ファイルの AppHost を作成します。 + + The programming language for the apphost (csharp, typescript) + The programming language for the apphost (csharp, typescript) + + Multiple solution files found. Please select which one to add the Aspire projects to: 複数のソリューション ファイルが見つかりました。Aspire プロジェクトを追加するプロジェクトを選択してください。 - No solution file found. Creating single-file AppHost... - ソリューション ファイルが見つかりません。単一ファイルの AppHost を作成しています... + No solution file found. Creating single-file apphost... + ソリューション ファイルが見つかりません。単一ファイルの AppHost を作成しています... @@ -63,8 +68,8 @@ - The solution file '{0}' and project file '{1}' are in the same directory. The AppHost and ServiceDefaults projects cannot be created inside an existing project directory. Move the solution file to a parent directory or the project file to a subdirectory. - The solution file '{0}' and project file '{1}' are in the same directory. The AppHost and ServiceDefaults projects cannot be created inside an existing project directory. Move the solution file to a parent directory or the project file to a subdirectory. + The solution file '{0}' and project file '{1}' are in the same directory. The apphost and ServiceDefaults projects cannot be created inside an existing project directory. Move the solution file to a parent directory or the project file to a subdirectory. + The solution file '{0}' and project file '{1}' are in the same directory. The apphost and ServiceDefaults projects cannot be created inside an existing project directory. Move the solution file to a parent directory or the project file to a subdirectory. diff --git a/src/Aspire.Cli/Resources/xlf/InitCommandStrings.ko.xlf b/src/Aspire.Cli/Resources/xlf/InitCommandStrings.ko.xlf index 2490d2a0128..e9619930078 100644 --- a/src/Aspire.Cli/Resources/xlf/InitCommandStrings.ko.xlf +++ b/src/Aspire.Cli/Resources/xlf/InitCommandStrings.ko.xlf @@ -3,8 +3,8 @@ - Adding AppHost project to solution... - 솔루션에 AppHost 프로젝트를 추가하는 중... + Adding apphost project to solution... + 솔루션에 AppHost 프로젝트를 추가하는 중... @@ -23,8 +23,8 @@ - Creating AppHost project... - AppHost 프로젝트를 만드는 중... + Creating apphost project... + AppHost 프로젝트를 만드는 중... @@ -33,18 +33,23 @@ - Initialize Aspire in an existing codebase. + Initialize Aspire in an existing codebase 기존 솔루션에서 Aspire 지원을 초기화하거나 단일 파일 AppHost를 만듭니다. + + The programming language for the apphost (csharp, typescript) + The programming language for the apphost (csharp, typescript) + + Multiple solution files found. Please select which one to add the Aspire projects to: 여러 솔루션 파일을 찾았습니다. Aspire 프로젝트를 추가할 항목을 선택하세요. - No solution file found. Creating single-file AppHost... - 솔루션 파일을 찾을 수 없습니다. 단일 파일 AppHost를 만드는 중... + No solution file found. Creating single-file apphost... + 솔루션 파일을 찾을 수 없습니다. 단일 파일 AppHost를 만드는 중... @@ -63,8 +68,8 @@ - The solution file '{0}' and project file '{1}' are in the same directory. The AppHost and ServiceDefaults projects cannot be created inside an existing project directory. Move the solution file to a parent directory or the project file to a subdirectory. - The solution file '{0}' and project file '{1}' are in the same directory. The AppHost and ServiceDefaults projects cannot be created inside an existing project directory. Move the solution file to a parent directory or the project file to a subdirectory. + The solution file '{0}' and project file '{1}' are in the same directory. The apphost and ServiceDefaults projects cannot be created inside an existing project directory. Move the solution file to a parent directory or the project file to a subdirectory. + The solution file '{0}' and project file '{1}' are in the same directory. The apphost and ServiceDefaults projects cannot be created inside an existing project directory. Move the solution file to a parent directory or the project file to a subdirectory. diff --git a/src/Aspire.Cli/Resources/xlf/InitCommandStrings.pl.xlf b/src/Aspire.Cli/Resources/xlf/InitCommandStrings.pl.xlf index c78303f19f8..894fed25189 100644 --- a/src/Aspire.Cli/Resources/xlf/InitCommandStrings.pl.xlf +++ b/src/Aspire.Cli/Resources/xlf/InitCommandStrings.pl.xlf @@ -3,8 +3,8 @@ - Adding AppHost project to solution... - Trwa dodawanie projektu AppHost do rozwiązania... + Adding apphost project to solution... + Trwa dodawanie projektu AppHost do rozwiązania... @@ -23,8 +23,8 @@ - Creating AppHost project... - Trwa tworzenie projektu AppHost... + Creating apphost project... + Trwa tworzenie projektu AppHost... @@ -33,18 +33,23 @@ - Initialize Aspire in an existing codebase. + Initialize Aspire in an existing codebase Zainicjuj obsługę Aspire w istniejącym rozwiązaniu lub utwórz AppHost składający się z jednego pliku. + + The programming language for the apphost (csharp, typescript) + The programming language for the apphost (csharp, typescript) + + Multiple solution files found. Please select which one to add the Aspire projects to: Znaleziono wiele plików rozwiązań. Wybierz projekt, do którego ma zostać dodany projekt Prześlij projekty: - No solution file found. Creating single-file AppHost... - Nie znaleziono pliku rozwiązania. Trwa tworzenie hosta aplikacji (AppHost) z jednym plikiem... + No solution file found. Creating single-file apphost... + Nie znaleziono pliku rozwiązania. Trwa tworzenie hosta aplikacji (AppHost) z jednym plikiem... @@ -63,8 +68,8 @@ - The solution file '{0}' and project file '{1}' are in the same directory. The AppHost and ServiceDefaults projects cannot be created inside an existing project directory. Move the solution file to a parent directory or the project file to a subdirectory. - The solution file '{0}' and project file '{1}' are in the same directory. The AppHost and ServiceDefaults projects cannot be created inside an existing project directory. Move the solution file to a parent directory or the project file to a subdirectory. + The solution file '{0}' and project file '{1}' are in the same directory. The apphost and ServiceDefaults projects cannot be created inside an existing project directory. Move the solution file to a parent directory or the project file to a subdirectory. + The solution file '{0}' and project file '{1}' are in the same directory. The apphost and ServiceDefaults projects cannot be created inside an existing project directory. Move the solution file to a parent directory or the project file to a subdirectory. diff --git a/src/Aspire.Cli/Resources/xlf/InitCommandStrings.pt-BR.xlf b/src/Aspire.Cli/Resources/xlf/InitCommandStrings.pt-BR.xlf index 6454571eaa7..2728e672311 100644 --- a/src/Aspire.Cli/Resources/xlf/InitCommandStrings.pt-BR.xlf +++ b/src/Aspire.Cli/Resources/xlf/InitCommandStrings.pt-BR.xlf @@ -3,8 +3,8 @@ - Adding AppHost project to solution... - Adicionando o projeto AppHost à solução... + Adding apphost project to solution... + Adicionando o projeto AppHost à solução... @@ -23,8 +23,8 @@ - Creating AppHost project... - Criando o projeto AppHost... + Creating apphost project... + Criando o projeto AppHost... @@ -33,18 +33,23 @@ - Initialize Aspire in an existing codebase. + Initialize Aspire in an existing codebase Ative o suporte ao Aspire em uma solução existente ou crie um AppHost de arquivo único. + + The programming language for the apphost (csharp, typescript) + The programming language for the apphost (csharp, typescript) + + Multiple solution files found. Please select which one to add the Aspire projects to: Vários arquivos de solução foram encontrados. Selecione a qual deles você quer adicionar os projetos do Aspire: - No solution file found. Creating single-file AppHost... - Não há arquivos de solução abertos. Criando o AppHost de arquivo único... + No solution file found. Creating single-file apphost... + Não há arquivos de solução abertos. Criando o AppHost de arquivo único... @@ -63,8 +68,8 @@ - The solution file '{0}' and project file '{1}' are in the same directory. The AppHost and ServiceDefaults projects cannot be created inside an existing project directory. Move the solution file to a parent directory or the project file to a subdirectory. - The solution file '{0}' and project file '{1}' are in the same directory. The AppHost and ServiceDefaults projects cannot be created inside an existing project directory. Move the solution file to a parent directory or the project file to a subdirectory. + The solution file '{0}' and project file '{1}' are in the same directory. The apphost and ServiceDefaults projects cannot be created inside an existing project directory. Move the solution file to a parent directory or the project file to a subdirectory. + The solution file '{0}' and project file '{1}' are in the same directory. The apphost and ServiceDefaults projects cannot be created inside an existing project directory. Move the solution file to a parent directory or the project file to a subdirectory. diff --git a/src/Aspire.Cli/Resources/xlf/InitCommandStrings.ru.xlf b/src/Aspire.Cli/Resources/xlf/InitCommandStrings.ru.xlf index d641ad48b9a..80ae20905b2 100644 --- a/src/Aspire.Cli/Resources/xlf/InitCommandStrings.ru.xlf +++ b/src/Aspire.Cli/Resources/xlf/InitCommandStrings.ru.xlf @@ -3,8 +3,8 @@ - Adding AppHost project to solution... - Добавление проекта AppHost в решение... + Adding apphost project to solution... + Добавление проекта AppHost в решение... @@ -23,8 +23,8 @@ - Creating AppHost project... - Создание проекта AppHost... + Creating apphost project... + Создание проекта AppHost... @@ -33,18 +33,23 @@ - Initialize Aspire in an existing codebase. + Initialize Aspire in an existing codebase Инициализируйте поддержку Aspire в существующем решении или создайте однофайловый AppHost. + + The programming language for the apphost (csharp, typescript) + The programming language for the apphost (csharp, typescript) + + Multiple solution files found. Please select which one to add the Aspire projects to: Найдено несколько файлов решений. Выберите, к какому из них добавить проекты Aspire: - No solution file found. Creating single-file AppHost... - Файл решения не найден. Создание однофайлового AppHost... + No solution file found. Creating single-file apphost... + Файл решения не найден. Создание однофайлового AppHost... @@ -63,8 +68,8 @@ - The solution file '{0}' and project file '{1}' are in the same directory. The AppHost and ServiceDefaults projects cannot be created inside an existing project directory. Move the solution file to a parent directory or the project file to a subdirectory. - The solution file '{0}' and project file '{1}' are in the same directory. The AppHost and ServiceDefaults projects cannot be created inside an existing project directory. Move the solution file to a parent directory or the project file to a subdirectory. + The solution file '{0}' and project file '{1}' are in the same directory. The apphost and ServiceDefaults projects cannot be created inside an existing project directory. Move the solution file to a parent directory or the project file to a subdirectory. + The solution file '{0}' and project file '{1}' are in the same directory. The apphost and ServiceDefaults projects cannot be created inside an existing project directory. Move the solution file to a parent directory or the project file to a subdirectory. diff --git a/src/Aspire.Cli/Resources/xlf/InitCommandStrings.tr.xlf b/src/Aspire.Cli/Resources/xlf/InitCommandStrings.tr.xlf index a4ba3e381ad..a4a1eea7786 100644 --- a/src/Aspire.Cli/Resources/xlf/InitCommandStrings.tr.xlf +++ b/src/Aspire.Cli/Resources/xlf/InitCommandStrings.tr.xlf @@ -3,8 +3,8 @@ - Adding AppHost project to solution... - AppHost projesi çözüme ekleniyor... + Adding apphost project to solution... + AppHost projesi çözüme ekleniyor... @@ -23,8 +23,8 @@ - Creating AppHost project... - AppHost projesi oluşturuluyor... + Creating apphost project... + AppHost projesi oluşturuluyor... @@ -33,18 +33,23 @@ - Initialize Aspire in an existing codebase. + Initialize Aspire in an existing codebase Mevcut bir çözümde Aspire desteğini başlatın veya tek dosyalı bir AppHost oluşturun. + + The programming language for the apphost (csharp, typescript) + The programming language for the apphost (csharp, typescript) + + Multiple solution files found. Please select which one to add the Aspire projects to: Birden çok çözüm dosyası bulundu. Lütfen Aspire projelerinin ekleneceği dosyayı seçin: - No solution file found. Creating single-file AppHost... - Çözüm dosyası bulunamadı. Tek dosyalı AppHost oluşturuluyor... + No solution file found. Creating single-file apphost... + Çözüm dosyası bulunamadı. Tek dosyalı AppHost oluşturuluyor... @@ -63,8 +68,8 @@ - The solution file '{0}' and project file '{1}' are in the same directory. The AppHost and ServiceDefaults projects cannot be created inside an existing project directory. Move the solution file to a parent directory or the project file to a subdirectory. - The solution file '{0}' and project file '{1}' are in the same directory. The AppHost and ServiceDefaults projects cannot be created inside an existing project directory. Move the solution file to a parent directory or the project file to a subdirectory. + The solution file '{0}' and project file '{1}' are in the same directory. The apphost and ServiceDefaults projects cannot be created inside an existing project directory. Move the solution file to a parent directory or the project file to a subdirectory. + The solution file '{0}' and project file '{1}' are in the same directory. The apphost and ServiceDefaults projects cannot be created inside an existing project directory. Move the solution file to a parent directory or the project file to a subdirectory. diff --git a/src/Aspire.Cli/Resources/xlf/InitCommandStrings.zh-Hans.xlf b/src/Aspire.Cli/Resources/xlf/InitCommandStrings.zh-Hans.xlf index aa2bf214d15..dbe4de6802c 100644 --- a/src/Aspire.Cli/Resources/xlf/InitCommandStrings.zh-Hans.xlf +++ b/src/Aspire.Cli/Resources/xlf/InitCommandStrings.zh-Hans.xlf @@ -3,8 +3,8 @@ - Adding AppHost project to solution... - 正在将 AppHost 项目添加到解决方案中... + Adding apphost project to solution... + 正在将 AppHost 项目添加到解决方案中... @@ -23,8 +23,8 @@ - Creating AppHost project... - 正在创建 AppHost 项目... + Creating apphost project... + 正在创建 AppHost 项目... @@ -33,18 +33,23 @@ - Initialize Aspire in an existing codebase. + Initialize Aspire in an existing codebase 在现有解决方案中初始化 Aspire 支持,或创建单文件 AppHost。 + + The programming language for the apphost (csharp, typescript) + The programming language for the apphost (csharp, typescript) + + Multiple solution files found. Please select which one to add the Aspire projects to: 找到多个解决方案文件。请选择要将 Aspire 项目添加到哪个解决方案: - No solution file found. Creating single-file AppHost... - 找不到解决方案文件。正在创建单文件 AppHost... + No solution file found. Creating single-file apphost... + 找不到解决方案文件。正在创建单文件 AppHost... @@ -63,8 +68,8 @@ - The solution file '{0}' and project file '{1}' are in the same directory. The AppHost and ServiceDefaults projects cannot be created inside an existing project directory. Move the solution file to a parent directory or the project file to a subdirectory. - The solution file '{0}' and project file '{1}' are in the same directory. The AppHost and ServiceDefaults projects cannot be created inside an existing project directory. Move the solution file to a parent directory or the project file to a subdirectory. + The solution file '{0}' and project file '{1}' are in the same directory. The apphost and ServiceDefaults projects cannot be created inside an existing project directory. Move the solution file to a parent directory or the project file to a subdirectory. + The solution file '{0}' and project file '{1}' are in the same directory. The apphost and ServiceDefaults projects cannot be created inside an existing project directory. Move the solution file to a parent directory or the project file to a subdirectory. diff --git a/src/Aspire.Cli/Resources/xlf/InitCommandStrings.zh-Hant.xlf b/src/Aspire.Cli/Resources/xlf/InitCommandStrings.zh-Hant.xlf index 74b78591ba1..6784dd436fb 100644 --- a/src/Aspire.Cli/Resources/xlf/InitCommandStrings.zh-Hant.xlf +++ b/src/Aspire.Cli/Resources/xlf/InitCommandStrings.zh-Hant.xlf @@ -3,8 +3,8 @@ - Adding AppHost project to solution... - 正在將 AppHost 專案新增至解決方案... + Adding apphost project to solution... + 正在將 AppHost 專案新增至解決方案... @@ -23,8 +23,8 @@ - Creating AppHost project... - 正在建立 AppHost 專案... + Creating apphost project... + 正在建立 AppHost 專案... @@ -33,18 +33,23 @@ - Initialize Aspire in an existing codebase. + Initialize Aspire in an existing codebase 將現有解決方案中的 Aspire 支援初始化,或建立單一檔案 AppHost。 + + The programming language for the apphost (csharp, typescript) + The programming language for the apphost (csharp, typescript) + + Multiple solution files found. Please select which one to add the Aspire projects to: 找到多個解決方案檔案。請選取要新增 Aspire 專案的項目: - No solution file found. Creating single-file AppHost... - 找不到解決方案檔案。正在建立單一檔案 AppHost... + No solution file found. Creating single-file apphost... + 找不到解決方案檔案。正在建立單一檔案 AppHost... @@ -63,8 +68,8 @@ - The solution file '{0}' and project file '{1}' are in the same directory. The AppHost and ServiceDefaults projects cannot be created inside an existing project directory. Move the solution file to a parent directory or the project file to a subdirectory. - The solution file '{0}' and project file '{1}' are in the same directory. The AppHost and ServiceDefaults projects cannot be created inside an existing project directory. Move the solution file to a parent directory or the project file to a subdirectory. + The solution file '{0}' and project file '{1}' are in the same directory. The apphost and ServiceDefaults projects cannot be created inside an existing project directory. Move the solution file to a parent directory or the project file to a subdirectory. + The solution file '{0}' and project file '{1}' are in the same directory. The apphost and ServiceDefaults projects cannot be created inside an existing project directory. Move the solution file to a parent directory or the project file to a subdirectory. diff --git a/src/Aspire.Cli/Resources/xlf/InteractionServiceStrings.cs.xlf b/src/Aspire.Cli/Resources/xlf/InteractionServiceStrings.cs.xlf index 371bf167b83..d360fc1dd5b 100644 --- a/src/Aspire.Cli/Resources/xlf/InteractionServiceStrings.cs.xlf +++ b/src/Aspire.Cli/Resources/xlf/InteractionServiceStrings.cs.xlf @@ -8,8 +8,8 @@ - The AppHost version is not compatible. Please upgrade the apphost or Aspire CLI. - Verze AppHost není kompatibilní. Upgradujte prosím hostitele aplikací nebo rozhraní příkazového řádku Aspire. + The apphost version is not compatible. Please upgrade the apphost or Aspire CLI. + Verze AppHost není kompatibilní. Upgradujte prosím hostitele aplikací nebo rozhraní příkazového řádku Aspire. @@ -138,8 +138,8 @@ - The specified project file is not an Aspire AppHost project. - Zadaný soubor projektu není projekt Aspire AppHost. + The specified project file is not an Aspire apphost project. + Zadaný soubor projektu není projekt Aspire AppHost. diff --git a/src/Aspire.Cli/Resources/xlf/InteractionServiceStrings.de.xlf b/src/Aspire.Cli/Resources/xlf/InteractionServiceStrings.de.xlf index aaa3e9cbca3..d3813d780c2 100644 --- a/src/Aspire.Cli/Resources/xlf/InteractionServiceStrings.de.xlf +++ b/src/Aspire.Cli/Resources/xlf/InteractionServiceStrings.de.xlf @@ -8,8 +8,8 @@ - The AppHost version is not compatible. Please upgrade the apphost or Aspire CLI. - Die AppHost-Version ist nicht kompatibel. Aktualisieren Sie den AppHost oder die Aspire-CLI. + The apphost version is not compatible. Please upgrade the apphost or Aspire CLI. + Die AppHost-Version ist nicht kompatibel. Aktualisieren Sie den AppHost oder die Aspire-CLI. @@ -138,8 +138,8 @@ - The specified project file is not an Aspire AppHost project. - Die angegebene Projektdatei ist kein Aspire-AppHost-Projekt. + The specified project file is not an Aspire apphost project. + Die angegebene Projektdatei ist kein Aspire-AppHost-Projekt. diff --git a/src/Aspire.Cli/Resources/xlf/InteractionServiceStrings.es.xlf b/src/Aspire.Cli/Resources/xlf/InteractionServiceStrings.es.xlf index 162b79913c0..982157132e0 100644 --- a/src/Aspire.Cli/Resources/xlf/InteractionServiceStrings.es.xlf +++ b/src/Aspire.Cli/Resources/xlf/InteractionServiceStrings.es.xlf @@ -8,8 +8,8 @@ - The AppHost version is not compatible. Please upgrade the apphost or Aspire CLI. - La versión de AppHost no es compatible. Actualice el apphost o la CLI de Aspire. + The apphost version is not compatible. Please upgrade the apphost or Aspire CLI. + La versión de AppHost no es compatible. Actualice el apphost o la CLI de Aspire. @@ -138,8 +138,8 @@ - The specified project file is not an Aspire AppHost project. - El archivo de proyecto especificado no es un proyecto AppHost d Aspire. + The specified project file is not an Aspire apphost project. + El archivo de proyecto especificado no es un proyecto AppHost d Aspire. diff --git a/src/Aspire.Cli/Resources/xlf/InteractionServiceStrings.fr.xlf b/src/Aspire.Cli/Resources/xlf/InteractionServiceStrings.fr.xlf index 44edb56c26f..efc6b6bfe78 100644 --- a/src/Aspire.Cli/Resources/xlf/InteractionServiceStrings.fr.xlf +++ b/src/Aspire.Cli/Resources/xlf/InteractionServiceStrings.fr.xlf @@ -8,8 +8,8 @@ - The AppHost version is not compatible. Please upgrade the apphost or Aspire CLI. - La version de l’AppHost n’est pas compatible. Veuillez mettre à jour l’AppHost ou l’interface CLI Aspire. + The apphost version is not compatible. Please upgrade the apphost or Aspire CLI. + La version de l’AppHost n’est pas compatible. Veuillez mettre à jour l’AppHost ou l’interface CLI Aspire. @@ -138,8 +138,8 @@ - The specified project file is not an Aspire AppHost project. - Le fichier projet spécifié n’est pas un projet Aspire AppHost. + The specified project file is not an Aspire apphost project. + Le fichier projet spécifié n’est pas un projet Aspire AppHost. diff --git a/src/Aspire.Cli/Resources/xlf/InteractionServiceStrings.it.xlf b/src/Aspire.Cli/Resources/xlf/InteractionServiceStrings.it.xlf index 57832b26d6e..87fb959659c 100644 --- a/src/Aspire.Cli/Resources/xlf/InteractionServiceStrings.it.xlf +++ b/src/Aspire.Cli/Resources/xlf/InteractionServiceStrings.it.xlf @@ -8,8 +8,8 @@ - The AppHost version is not compatible. Please upgrade the apphost or Aspire CLI. - La versione di AppHost non è compatibile. Aggiornare AppHost o l'interfaccia della riga di comando di Aspire. + The apphost version is not compatible. Please upgrade the apphost or Aspire CLI. + La versione di AppHost non è compatibile. Aggiornare AppHost o l'interfaccia della riga di comando di Aspire. @@ -138,8 +138,8 @@ - The specified project file is not an Aspire AppHost project. - Il file di progetto specificato non è un progetto AppHost Aspire. + The specified project file is not an Aspire apphost project. + Il file di progetto specificato non è un progetto AppHost Aspire. diff --git a/src/Aspire.Cli/Resources/xlf/InteractionServiceStrings.ja.xlf b/src/Aspire.Cli/Resources/xlf/InteractionServiceStrings.ja.xlf index 80f0d36b942..a12909dd6ed 100644 --- a/src/Aspire.Cli/Resources/xlf/InteractionServiceStrings.ja.xlf +++ b/src/Aspire.Cli/Resources/xlf/InteractionServiceStrings.ja.xlf @@ -8,8 +8,8 @@ - The AppHost version is not compatible. Please upgrade the apphost or Aspire CLI. - AppHost のバージョンに互換性がありません。AppHost または Aspire CLI をアップグレードしてください。 + The apphost version is not compatible. Please upgrade the apphost or Aspire CLI. + AppHost のバージョンに互換性がありません。AppHost または Aspire CLI をアップグレードしてください。 @@ -138,8 +138,8 @@ - The specified project file is not an Aspire AppHost project. - 指定されたプロジェクト ファイルは、Aspire AppHost のプロジェクトではありません。 + The specified project file is not an Aspire apphost project. + 指定されたプロジェクト ファイルは、Aspire AppHost のプロジェクトではありません。 diff --git a/src/Aspire.Cli/Resources/xlf/InteractionServiceStrings.ko.xlf b/src/Aspire.Cli/Resources/xlf/InteractionServiceStrings.ko.xlf index 5c4db472669..a0da6e95d88 100644 --- a/src/Aspire.Cli/Resources/xlf/InteractionServiceStrings.ko.xlf +++ b/src/Aspire.Cli/Resources/xlf/InteractionServiceStrings.ko.xlf @@ -8,8 +8,8 @@ - The AppHost version is not compatible. Please upgrade the apphost or Aspire CLI. - AppHost 버전이 호환되지 않습니다. AppHost 또는 Aspire CLI를 업그레이드해 주세요. + The apphost version is not compatible. Please upgrade the apphost or Aspire CLI. + AppHost 버전이 호환되지 않습니다. AppHost 또는 Aspire CLI를 업그레이드해 주세요. @@ -138,8 +138,8 @@ - The specified project file is not an Aspire AppHost project. - 지정한 프로젝트 파일은 Aspire AppHost 프로젝트가 아닙니다. + The specified project file is not an Aspire apphost project. + 지정한 프로젝트 파일은 Aspire AppHost 프로젝트가 아닙니다. diff --git a/src/Aspire.Cli/Resources/xlf/InteractionServiceStrings.pl.xlf b/src/Aspire.Cli/Resources/xlf/InteractionServiceStrings.pl.xlf index bb9f08e8191..879ea125e22 100644 --- a/src/Aspire.Cli/Resources/xlf/InteractionServiceStrings.pl.xlf +++ b/src/Aspire.Cli/Resources/xlf/InteractionServiceStrings.pl.xlf @@ -8,8 +8,8 @@ - The AppHost version is not compatible. Please upgrade the apphost or Aspire CLI. - Wersja hosta AppHost jest niezgodna. Uaktualnij hosta AppHost lub interfejs wiersza polecenia platformy Aspire. + The apphost version is not compatible. Please upgrade the apphost or Aspire CLI. + Wersja hosta AppHost jest niezgodna. Uaktualnij hosta AppHost lub interfejs wiersza polecenia platformy Aspire. @@ -138,8 +138,8 @@ - The specified project file is not an Aspire AppHost project. - Określony plik projektu nie jest projektem hosta AppHost platformy Aspire. + The specified project file is not an Aspire apphost project. + Określony plik projektu nie jest projektem hosta AppHost platformy Aspire. diff --git a/src/Aspire.Cli/Resources/xlf/InteractionServiceStrings.pt-BR.xlf b/src/Aspire.Cli/Resources/xlf/InteractionServiceStrings.pt-BR.xlf index 65d56ac36ce..c1e1c1fc147 100644 --- a/src/Aspire.Cli/Resources/xlf/InteractionServiceStrings.pt-BR.xlf +++ b/src/Aspire.Cli/Resources/xlf/InteractionServiceStrings.pt-BR.xlf @@ -8,8 +8,8 @@ - The AppHost version is not compatible. Please upgrade the apphost or Aspire CLI. - A versão do AppHost não é compatível. Atualize o apphost ou o Aspire CLI. + The apphost version is not compatible. Please upgrade the apphost or Aspire CLI. + A versão do AppHost não é compatível. Atualize o apphost ou o Aspire CLI. @@ -138,8 +138,8 @@ - The specified project file is not an Aspire AppHost project. - O arquivo de projeto especificado não é um projeto Aspire AppHost. + The specified project file is not an Aspire apphost project. + O arquivo de projeto especificado não é um projeto Aspire AppHost. diff --git a/src/Aspire.Cli/Resources/xlf/InteractionServiceStrings.ru.xlf b/src/Aspire.Cli/Resources/xlf/InteractionServiceStrings.ru.xlf index 781f15ffb85..e411dcd9d43 100644 --- a/src/Aspire.Cli/Resources/xlf/InteractionServiceStrings.ru.xlf +++ b/src/Aspire.Cli/Resources/xlf/InteractionServiceStrings.ru.xlf @@ -8,8 +8,8 @@ - The AppHost version is not compatible. Please upgrade the apphost or Aspire CLI. - Версия AppHost несовместима. Обновите хост приложений или Aspire CLI. + The apphost version is not compatible. Please upgrade the apphost or Aspire CLI. + Версия AppHost несовместима. Обновите хост приложений или Aspire CLI. @@ -138,8 +138,8 @@ - The specified project file is not an Aspire AppHost project. - Указанный файл проекта не является проектом Aspire AppHost. + The specified project file is not an Aspire apphost project. + Указанный файл проекта не является проектом Aspire AppHost. diff --git a/src/Aspire.Cli/Resources/xlf/InteractionServiceStrings.tr.xlf b/src/Aspire.Cli/Resources/xlf/InteractionServiceStrings.tr.xlf index cc7e76f9933..a2c5dcd70fb 100644 --- a/src/Aspire.Cli/Resources/xlf/InteractionServiceStrings.tr.xlf +++ b/src/Aspire.Cli/Resources/xlf/InteractionServiceStrings.tr.xlf @@ -8,8 +8,8 @@ - The AppHost version is not compatible. Please upgrade the apphost or Aspire CLI. - AppHost sürümü uyumlu değil. Lütfen AppHost veya Aspire CLI'yı yükseltin. + The apphost version is not compatible. Please upgrade the apphost or Aspire CLI. + AppHost sürümü uyumlu değil. Lütfen AppHost veya Aspire CLI'yı yükseltin. @@ -138,8 +138,8 @@ - The specified project file is not an Aspire AppHost project. - Belirtilen proje dosyası bir Aspire AppHost projesi değil. + The specified project file is not an Aspire apphost project. + Belirtilen proje dosyası bir Aspire AppHost projesi değil. diff --git a/src/Aspire.Cli/Resources/xlf/InteractionServiceStrings.zh-Hans.xlf b/src/Aspire.Cli/Resources/xlf/InteractionServiceStrings.zh-Hans.xlf index 1ffd21bbf83..3f57c4dbabb 100644 --- a/src/Aspire.Cli/Resources/xlf/InteractionServiceStrings.zh-Hans.xlf +++ b/src/Aspire.Cli/Resources/xlf/InteractionServiceStrings.zh-Hans.xlf @@ -8,8 +8,8 @@ - The AppHost version is not compatible. Please upgrade the apphost or Aspire CLI. - AppHost 版本不兼容。请升级应用主机或 Aspire CLI。 + The apphost version is not compatible. Please upgrade the apphost or Aspire CLI. + AppHost 版本不兼容。请升级应用主机或 Aspire CLI。 @@ -138,8 +138,8 @@ - The specified project file is not an Aspire AppHost project. - 指定的项目文件不是 Aspire AppHost 项目。 + The specified project file is not an Aspire apphost project. + 指定的项目文件不是 Aspire AppHost 项目。 diff --git a/src/Aspire.Cli/Resources/xlf/InteractionServiceStrings.zh-Hant.xlf b/src/Aspire.Cli/Resources/xlf/InteractionServiceStrings.zh-Hant.xlf index 79791c5554a..ed9de878af4 100644 --- a/src/Aspire.Cli/Resources/xlf/InteractionServiceStrings.zh-Hant.xlf +++ b/src/Aspire.Cli/Resources/xlf/InteractionServiceStrings.zh-Hant.xlf @@ -8,8 +8,8 @@ - The AppHost version is not compatible. Please upgrade the apphost or Aspire CLI. - 應用程式主機版本不相容。請升級應用程式主機或 Aspire CLI。 + The apphost version is not compatible. Please upgrade the apphost or Aspire CLI. + 應用程式主機版本不相容。請升級應用程式主機或 Aspire CLI。 @@ -138,8 +138,8 @@ - The specified project file is not an Aspire AppHost project. - 指定的專案檔案不是 Aspire 應用程式主機專案。 + The specified project file is not an Aspire apphost project. + 指定的專案檔案不是 Aspire 應用程式主機專案。 diff --git a/src/Aspire.Cli/Resources/xlf/LogsCommandStrings.cs.xlf b/src/Aspire.Cli/Resources/xlf/LogsCommandStrings.cs.xlf index 67d6766cf59..54d05d993b9 100644 --- a/src/Aspire.Cli/Resources/xlf/LogsCommandStrings.cs.xlf +++ b/src/Aspire.Cli/Resources/xlf/LogsCommandStrings.cs.xlf @@ -3,17 +3,17 @@ - Display logs from resources in a running apphost. + Display logs from resources in a running apphost Umožňuje zobrazit protokoly z prostředků v běžícím hostiteli aplikací Aspire. - Stream logs in real-time as they are written. - Streamujte protokoly v reálném čase při jejich zápisu. + Stream logs in real-time as they are written + Streamujte protokoly v reálném čase při jejich zápisu. - Output format (Table or Json). + Output format (Table or Json) Výstupní protokoly ve formátu JSON (NDJSON). @@ -24,7 +24,7 @@ The name of the resource to get logs for. If not specified, logs from all resources are shown. - Název prostředku, pro který se mají načíst protokoly. Pokud se nezadá, zobrazí se protokoly ze všech prostředků. + Název prostředku, pro který se mají načíst protokoly. Pokud se nezadá, zobrazí se protokoly ze všech prostředků. @@ -48,8 +48,8 @@ - Number of lines to show from the end of logs (default: all). - Počet řádků, které se mají zobrazit od konce protokolů (výchozí: vše). + Number of lines to show from the end of logs (default: all) + Počet řádků, které se mají zobrazit od konce protokolů (výchozí: vše). @@ -58,8 +58,8 @@ - Show timestamps for each log line. - Show timestamps for each log line. + Show timestamps for each log line + Show timestamps for each log line diff --git a/src/Aspire.Cli/Resources/xlf/LogsCommandStrings.de.xlf b/src/Aspire.Cli/Resources/xlf/LogsCommandStrings.de.xlf index e519cd90962..8514a6cd05a 100644 --- a/src/Aspire.Cli/Resources/xlf/LogsCommandStrings.de.xlf +++ b/src/Aspire.Cli/Resources/xlf/LogsCommandStrings.de.xlf @@ -3,17 +3,17 @@ - Display logs from resources in a running apphost. + Display logs from resources in a running apphost Protokolle von Ressourcen in einem laufenden Aspire-AppHost anzeigen. - Stream logs in real-time as they are written. - Streamen Sie Protokolle in Echtzeit, während sie geschrieben werden. + Stream logs in real-time as they are written + Streamen Sie Protokolle in Echtzeit, während sie geschrieben werden. - Output format (Table or Json). + Output format (Table or Json) Protokolle im JSON-Format (NDJSON) ausgeben. @@ -24,7 +24,7 @@ The name of the resource to get logs for. If not specified, logs from all resources are shown. - Name der Ressource, für die Protokolle abgerufen werden sollen. Wenn keine Angabe erfolgt, werden Protokolle von allen Ressourcen angezeigt. + Name der Ressource, für die Protokolle abgerufen werden sollen. Wenn keine Angabe erfolgt, werden Protokolle von allen Ressourcen angezeigt. @@ -48,8 +48,8 @@ - Number of lines to show from the end of logs (default: all). - Anzahl der Zeilen, die vom Ende der Protokolle angezeigt werden sollen (Standard: alle). + Number of lines to show from the end of logs (default: all) + Anzahl der Zeilen, die vom Ende der Protokolle angezeigt werden sollen (Standard: alle). @@ -58,8 +58,8 @@ - Show timestamps for each log line. - Show timestamps for each log line. + Show timestamps for each log line + Show timestamps for each log line diff --git a/src/Aspire.Cli/Resources/xlf/LogsCommandStrings.es.xlf b/src/Aspire.Cli/Resources/xlf/LogsCommandStrings.es.xlf index e96ac5783d1..16a18dce1e6 100644 --- a/src/Aspire.Cli/Resources/xlf/LogsCommandStrings.es.xlf +++ b/src/Aspire.Cli/Resources/xlf/LogsCommandStrings.es.xlf @@ -3,17 +3,17 @@ - Display logs from resources in a running apphost. + Display logs from resources in a running apphost Muestra los registros de los recursos en un host de aplicaciones Aspire en ejecución. - Stream logs in real-time as they are written. - Transmita los registros en tiempo real a medida que se escriben. + Stream logs in real-time as they are written + Transmita los registros en tiempo real a medida que se escriben. - Output format (Table or Json). + Output format (Table or Json) Registros de salida en formato JSON (NDJSON). @@ -24,7 +24,7 @@ The name of the resource to get logs for. If not specified, logs from all resources are shown. - Nombre del recurso para el que se van a obtener registros. Si no se especifica, se muestran los registros de todos los recursos. + Nombre del recurso para el que se van a obtener registros. Si no se especifica, se muestran los registros de todos los recursos. @@ -48,8 +48,8 @@ - Number of lines to show from the end of logs (default: all). - Número de líneas que se mostrarán desde el final de los registros (valor predeterminado: todos). + Number of lines to show from the end of logs (default: all) + Número de líneas que se mostrarán desde el final de los registros (valor predeterminado: todos). @@ -58,8 +58,8 @@ - Show timestamps for each log line. - Show timestamps for each log line. + Show timestamps for each log line + Show timestamps for each log line diff --git a/src/Aspire.Cli/Resources/xlf/LogsCommandStrings.fr.xlf b/src/Aspire.Cli/Resources/xlf/LogsCommandStrings.fr.xlf index 009e69daa04..fa4a94617b8 100644 --- a/src/Aspire.Cli/Resources/xlf/LogsCommandStrings.fr.xlf +++ b/src/Aspire.Cli/Resources/xlf/LogsCommandStrings.fr.xlf @@ -3,17 +3,17 @@ - Display logs from resources in a running apphost. + Display logs from resources in a running apphost Afficher les journaux des ressources dans un Apphost Aspire en cours d’exécution. - Stream logs in real-time as they are written. - Diffuser les journaux en temps réel au fur et à mesure de leur écriture. + Stream logs in real-time as they are written + Diffuser les journaux en temps réel au fur et à mesure de leur écriture. - Output format (Table or Json). + Output format (Table or Json) Générer les journaux au format JSON (NDJSON). @@ -24,7 +24,7 @@ The name of the resource to get logs for. If not specified, logs from all resources are shown. - Le nom de la ressource pour laquelle obtenir les journaux. Si aucun nom n’est spécifié, les journaux d’activité de toutes les ressources sont affichées. + Le nom de la ressource pour laquelle obtenir les journaux. Si aucun nom n’est spécifié, les journaux d’activité de toutes les ressources sont affichées. @@ -48,8 +48,8 @@ - Number of lines to show from the end of logs (default: all). - Nombre de lignes à afficher à partir de la fin des journaux (par défaut : toutes). + Number of lines to show from the end of logs (default: all) + Nombre de lignes à afficher à partir de la fin des journaux (par défaut : toutes). @@ -58,8 +58,8 @@ - Show timestamps for each log line. - Show timestamps for each log line. + Show timestamps for each log line + Show timestamps for each log line diff --git a/src/Aspire.Cli/Resources/xlf/LogsCommandStrings.it.xlf b/src/Aspire.Cli/Resources/xlf/LogsCommandStrings.it.xlf index d6a13cd2331..d51ac4ca41b 100644 --- a/src/Aspire.Cli/Resources/xlf/LogsCommandStrings.it.xlf +++ b/src/Aspire.Cli/Resources/xlf/LogsCommandStrings.it.xlf @@ -3,17 +3,17 @@ - Display logs from resources in a running apphost. + Display logs from resources in a running apphost Consente di visualizzare i log delle risorse in un apphost Aspire in esecuzione. - Stream logs in real-time as they are written. - Consente di trasmettere i log in tempo reale man mano che vengono scritti. + Stream logs in real-time as they are written + Consente di trasmettere i log in tempo reale man mano che vengono scritti. - Output format (Table or Json). + Output format (Table or Json) Log di output in formato JSON (NDJSON). @@ -24,7 +24,7 @@ The name of the resource to get logs for. If not specified, logs from all resources are shown. - Nome della risorsa per cui ottenere i log. Se non specificato, vengono visualizzati i log di tutte le risorse. + Nome della risorsa per cui ottenere i log. Se non specificato, vengono visualizzati i log di tutte le risorse. @@ -48,8 +48,8 @@ - Number of lines to show from the end of logs (default: all). - Numero di righe da visualizzare dalla fine dei log (impostazione predefinita: all). + Number of lines to show from the end of logs (default: all) + Numero di righe da visualizzare dalla fine dei log (impostazione predefinita: all). @@ -58,8 +58,8 @@ - Show timestamps for each log line. - Show timestamps for each log line. + Show timestamps for each log line + Show timestamps for each log line diff --git a/src/Aspire.Cli/Resources/xlf/LogsCommandStrings.ja.xlf b/src/Aspire.Cli/Resources/xlf/LogsCommandStrings.ja.xlf index 582903296d4..2dc43d140a5 100644 --- a/src/Aspire.Cli/Resources/xlf/LogsCommandStrings.ja.xlf +++ b/src/Aspire.Cli/Resources/xlf/LogsCommandStrings.ja.xlf @@ -3,17 +3,17 @@ - Display logs from resources in a running apphost. + Display logs from resources in a running apphost 実行中の Aspire apphost のリソースからログを表示します。 - Stream logs in real-time as they are written. - ログが書き込まれると同時にリアルタイムでストリームします。 + Stream logs in real-time as they are written + ログが書き込まれると同時にリアルタイムでストリームします。 - Output format (Table or Json). + Output format (Table or Json) ログを JSON 形式 (NDJSON) で出力します。 @@ -24,7 +24,7 @@ The name of the resource to get logs for. If not specified, logs from all resources are shown. - ログ取得の対象とするリソースの名前。指定しない場合は、すべてのリソースのログが表示されます。 + ログ取得の対象とするリソースの名前。指定しない場合は、すべてのリソースのログが表示されます。 @@ -48,8 +48,8 @@ - Number of lines to show from the end of logs (default: all). - 表示するログの行数を、ログの末尾から数えた行数で指定します (既定値: すべて)。 + Number of lines to show from the end of logs (default: all) + 表示するログの行数を、ログの末尾から数えた行数で指定します (既定値: すべて)。 @@ -58,8 +58,8 @@ - Show timestamps for each log line. - Show timestamps for each log line. + Show timestamps for each log line + Show timestamps for each log line diff --git a/src/Aspire.Cli/Resources/xlf/LogsCommandStrings.ko.xlf b/src/Aspire.Cli/Resources/xlf/LogsCommandStrings.ko.xlf index 68988321e95..ce897420516 100644 --- a/src/Aspire.Cli/Resources/xlf/LogsCommandStrings.ko.xlf +++ b/src/Aspire.Cli/Resources/xlf/LogsCommandStrings.ko.xlf @@ -3,17 +3,17 @@ - Display logs from resources in a running apphost. + Display logs from resources in a running apphost 실행 중인 Aspire AppHost에서 리소스의 로그를 표시합니다. - Stream logs in real-time as they are written. - 로그가 기록되는 대로 실시간으로 스트리밍합니다. + Stream logs in real-time as they are written + 로그가 기록되는 대로 실시간으로 스트리밍합니다. - Output format (Table or Json). + Output format (Table or Json) JSON 형식(NDJSON)으로 로그를 출력합니다. @@ -24,7 +24,7 @@ The name of the resource to get logs for. If not specified, logs from all resources are shown. - 로그를 가져올 리소스의 이름입니다. 지정하지 않으면 모든 리소스의 로그가 표시됩니다. + 로그를 가져올 리소스의 이름입니다. 지정하지 않으면 모든 리소스의 로그가 표시됩니다. @@ -48,8 +48,8 @@ - Number of lines to show from the end of logs (default: all). - 로그 끝에서 표시할 줄 수입니다(기본값: 모두). + Number of lines to show from the end of logs (default: all) + 로그 끝에서 표시할 줄 수입니다(기본값: 모두). @@ -58,8 +58,8 @@ - Show timestamps for each log line. - Show timestamps for each log line. + Show timestamps for each log line + Show timestamps for each log line diff --git a/src/Aspire.Cli/Resources/xlf/LogsCommandStrings.pl.xlf b/src/Aspire.Cli/Resources/xlf/LogsCommandStrings.pl.xlf index 4d895bf5e8b..3a4179d0ab6 100644 --- a/src/Aspire.Cli/Resources/xlf/LogsCommandStrings.pl.xlf +++ b/src/Aspire.Cli/Resources/xlf/LogsCommandStrings.pl.xlf @@ -3,17 +3,17 @@ - Display logs from resources in a running apphost. + Display logs from resources in a running apphost Wyświetl dzienniki z zasobów w działającym hoście usługi Aspire. - Stream logs in real-time as they are written. - Przesyłaj dzienniki w czasie rzeczywistym podczas ich zapisywania. + Stream logs in real-time as they are written + Przesyłaj dzienniki w czasie rzeczywistym podczas ich zapisywania. - Output format (Table or Json). + Output format (Table or Json) Dzienniki wyjściowe w formacie JSON (NDJSON). @@ -24,7 +24,7 @@ The name of the resource to get logs for. If not specified, logs from all resources are shown. - Nazwa zasobu, którego dzienniki mają zostać pobrane. Jeśli nie podasz nazwy, pokażą się dzienniki ze wszystkich zasobów. + Nazwa zasobu, którego dzienniki mają zostać pobrane. Jeśli nie podasz nazwy, pokażą się dzienniki ze wszystkich zasobów. @@ -48,8 +48,8 @@ - Number of lines to show from the end of logs (default: all). - Liczba linii wyświetlanych od końca dzienników (domyślnie: wszystkie). + Number of lines to show from the end of logs (default: all) + Liczba linii wyświetlanych od końca dzienników (domyślnie: wszystkie). @@ -58,8 +58,8 @@ - Show timestamps for each log line. - Show timestamps for each log line. + Show timestamps for each log line + Show timestamps for each log line diff --git a/src/Aspire.Cli/Resources/xlf/LogsCommandStrings.pt-BR.xlf b/src/Aspire.Cli/Resources/xlf/LogsCommandStrings.pt-BR.xlf index 5f9c70a8456..f3a75a25f48 100644 --- a/src/Aspire.Cli/Resources/xlf/LogsCommandStrings.pt-BR.xlf +++ b/src/Aspire.Cli/Resources/xlf/LogsCommandStrings.pt-BR.xlf @@ -3,17 +3,17 @@ - Display logs from resources in a running apphost. + Display logs from resources in a running apphost Exiba logs de recursos em um apphost do Aspire em execução. - Stream logs in real-time as they are written. - Transmita logs em tempo real conforme eles são gravados. + Stream logs in real-time as they are written + Transmita logs em tempo real conforme eles são gravados. - Output format (Table or Json). + Output format (Table or Json) Logs de saída no formato JSON (NDJSON). @@ -24,7 +24,7 @@ The name of the resource to get logs for. If not specified, logs from all resources are shown. - O nome do recurso para o qual obter logs. Se não for especificado, os logs de todos os recursos serão mostrados. + O nome do recurso para o qual obter logs. Se não for especificado, os logs de todos os recursos serão mostrados. @@ -48,8 +48,8 @@ - Number of lines to show from the end of logs (default: all). - Número de linhas a serem mostradas a partir do final dos logs (padrão: todos). + Number of lines to show from the end of logs (default: all) + Número de linhas a serem mostradas a partir do final dos logs (padrão: todos). @@ -58,8 +58,8 @@ - Show timestamps for each log line. - Show timestamps for each log line. + Show timestamps for each log line + Show timestamps for each log line diff --git a/src/Aspire.Cli/Resources/xlf/LogsCommandStrings.ru.xlf b/src/Aspire.Cli/Resources/xlf/LogsCommandStrings.ru.xlf index 966b4c07907..bf519f50248 100644 --- a/src/Aspire.Cli/Resources/xlf/LogsCommandStrings.ru.xlf +++ b/src/Aspire.Cli/Resources/xlf/LogsCommandStrings.ru.xlf @@ -3,17 +3,17 @@ - Display logs from resources in a running apphost. + Display logs from resources in a running apphost Отображать журналы ресурсов в запущенном хосте приложений Aspire. - Stream logs in real-time as they are written. - Потоковая передача журналов в реальном времени по мере их записи. + Stream logs in real-time as they are written + Потоковая передача журналов в реальном времени по мере их записи. - Output format (Table or Json). + Output format (Table or Json) Вывод журналов в формате JSON (NDJSON). @@ -24,7 +24,7 @@ The name of the resource to get logs for. If not specified, logs from all resources are shown. - Имя ресурса, для которого нужно получить журналы. Если не указано, отображаются журналы из всех ресурсов. + Имя ресурса, для которого нужно получить журналы. Если не указано, отображаются журналы из всех ресурсов. @@ -48,8 +48,8 @@ - Number of lines to show from the end of logs (default: all). - Количество строк, отображаемых с конца журналов (по умолчанию: все). + Number of lines to show from the end of logs (default: all) + Количество строк, отображаемых с конца журналов (по умолчанию: все). @@ -58,8 +58,8 @@ - Show timestamps for each log line. - Show timestamps for each log line. + Show timestamps for each log line + Show timestamps for each log line diff --git a/src/Aspire.Cli/Resources/xlf/LogsCommandStrings.tr.xlf b/src/Aspire.Cli/Resources/xlf/LogsCommandStrings.tr.xlf index 58f8e75e661..c3fb9ceba2f 100644 --- a/src/Aspire.Cli/Resources/xlf/LogsCommandStrings.tr.xlf +++ b/src/Aspire.Cli/Resources/xlf/LogsCommandStrings.tr.xlf @@ -3,17 +3,17 @@ - Display logs from resources in a running apphost. + Display logs from resources in a running apphost Çalışan bir Aspire apphost'taki kaynakların günlüklerini görüntüle. - Stream logs in real-time as they are written. - Günlükleri yazıldıkça gerçek zamanlı olarak akışla aktar. + Stream logs in real-time as they are written + Günlükleri yazıldıkça gerçek zamanlı olarak akışla aktar. - Output format (Table or Json). + Output format (Table or Json) Günlükleri JSON biçiminde (NDJSON) çıkar. @@ -24,7 +24,7 @@ The name of the resource to get logs for. If not specified, logs from all resources are shown. - Günlükleri alınacak kaynağın adı. Belirtilmezse tüm kaynakların günlükleri gösterilir. + Günlükleri alınacak kaynağın adı. Belirtilmezse tüm kaynakların günlükleri gösterilir. @@ -48,8 +48,8 @@ - Number of lines to show from the end of logs (default: all). - Günlüklerin sonundan gösterilecek satır sayısı (varsayılan: tümü). + Number of lines to show from the end of logs (default: all) + Günlüklerin sonundan gösterilecek satır sayısı (varsayılan: tümü). @@ -58,8 +58,8 @@ - Show timestamps for each log line. - Show timestamps for each log line. + Show timestamps for each log line + Show timestamps for each log line diff --git a/src/Aspire.Cli/Resources/xlf/LogsCommandStrings.zh-Hans.xlf b/src/Aspire.Cli/Resources/xlf/LogsCommandStrings.zh-Hans.xlf index cc34ed0ff0f..d454f30c77c 100644 --- a/src/Aspire.Cli/Resources/xlf/LogsCommandStrings.zh-Hans.xlf +++ b/src/Aspire.Cli/Resources/xlf/LogsCommandStrings.zh-Hans.xlf @@ -3,17 +3,17 @@ - Display logs from resources in a running apphost. + Display logs from resources in a running apphost 显示正在运行的 Aspire 应用主机中资源的日志。 - Stream logs in real-time as they are written. - 在写入日志时实时流式传输这些日志。 + Stream logs in real-time as they are written + 在写入日志时实时流式传输这些日志。 - Output format (Table or Json). + Output format (Table or Json) 以 JSON 格式输出日志(NDJSON)。 @@ -24,7 +24,7 @@ The name of the resource to get logs for. If not specified, logs from all resources are shown. - 要获取其日志的资源的名称。如果未指定,则显示所有资源的日志。 + 要获取其日志的资源的名称。如果未指定,则显示所有资源的日志。 @@ -48,8 +48,8 @@ - Number of lines to show from the end of logs (default: all). - 要在日志末尾显示的行数(默认: 全部)。 + Number of lines to show from the end of logs (default: all) + 要在日志末尾显示的行数(默认: 全部)。 @@ -58,8 +58,8 @@ - Show timestamps for each log line. - Show timestamps for each log line. + Show timestamps for each log line + Show timestamps for each log line diff --git a/src/Aspire.Cli/Resources/xlf/LogsCommandStrings.zh-Hant.xlf b/src/Aspire.Cli/Resources/xlf/LogsCommandStrings.zh-Hant.xlf index 0847f19d6c0..dd0105a5f3c 100644 --- a/src/Aspire.Cli/Resources/xlf/LogsCommandStrings.zh-Hant.xlf +++ b/src/Aspire.Cli/Resources/xlf/LogsCommandStrings.zh-Hant.xlf @@ -3,17 +3,17 @@ - Display logs from resources in a running apphost. + Display logs from resources in a running apphost 顯示正在執行 Aspire Apphost 中的資源記錄。 - Stream logs in real-time as they are written. - 在寫入記錄時即時串流這些記錄。 + Stream logs in real-time as they are written + 在寫入記錄時即時串流這些記錄。 - Output format (Table or Json). + Output format (Table or Json) 輸出記錄採用 JSON 格式 (NDJSON)。 @@ -24,7 +24,7 @@ The name of the resource to get logs for. If not specified, logs from all resources are shown. - 要取得其記錄的資源名稱。如果未指定,則顯示所有資源的記錄。 + 要取得其記錄的資源名稱。如果未指定,則顯示所有資源的記錄。 @@ -48,8 +48,8 @@ - Number of lines to show from the end of logs (default: all). - 從記錄末端顯示的行數 (預設: 全部)。 + Number of lines to show from the end of logs (default: all) + 從記錄末端顯示的行數 (預設: 全部)。 @@ -58,8 +58,8 @@ - Show timestamps for each log line. - Show timestamps for each log line. + Show timestamps for each log line + Show timestamps for each log line diff --git a/src/Aspire.Cli/Resources/xlf/McpCommandStrings.cs.xlf b/src/Aspire.Cli/Resources/xlf/McpCommandStrings.cs.xlf index 289873bc3d7..fb32b518edc 100644 --- a/src/Aspire.Cli/Resources/xlf/McpCommandStrings.cs.xlf +++ b/src/Aspire.Cli/Resources/xlf/McpCommandStrings.cs.xlf @@ -2,13 +2,33 @@ + + Call an MCP tool on a running resource + Call an MCP tool on a running resource + + + + JSON input to pass to the tool + JSON input to pass to the tool + + + + The name of the resource that exposes the MCP tool + The name of the resource that exposes the MCP tool + + + + The name of the MCP tool to call + The name of the MCP tool to call + + Warning: 'aspire mcp' commands are deprecated and will be removed in a future release. Please use 'aspire agent' instead. Upozornění: Příkazy „aspire mcp“ jsou zastaralé a v budoucí verzi se odeberou. Použijte místo toho „aspire agent“. - Interact with MCP (Model Context Protocol) tools exposed by Aspire resources. + Interact with MCP (Model Context Protocol) tools exposed by Aspire resources Spravujte server MCP (Model Context Protocol). (zastaralé, použijte „agent“) @@ -38,8 +58,8 @@ - Initialize MCP server configuration for detected agent environments. (deprecated, use 'agent init') - Inicializujte konfiguraci serveru MCP pro detekovaná prostředí agentů. (zastaralé, použijte „agent init“) + Initialize MCP server configuration for detected agent environments (deprecated, use 'agent init') + Inicializujte konfiguraci serveru MCP pro detekovaná prostředí agentů. (zastaralé, použijte „agent init“) @@ -68,8 +88,18 @@ - Start the MCP (Model Context Protocol) server. (deprecated, use 'agent mcp') - Spusťte server MCP (Model Context Protocol). (zastaralé, použijte „agent mcp“) + Start the MCP (Model Context Protocol) server (deprecated, use 'agent mcp') + Spusťte server MCP (Model Context Protocol). (zastaralé, použijte „agent mcp“) + + + + List MCP tools exposed by running resources + List MCP tools exposed by running resources + + + + Output format (Table or Json) + Output format (Table or Json) diff --git a/src/Aspire.Cli/Resources/xlf/McpCommandStrings.de.xlf b/src/Aspire.Cli/Resources/xlf/McpCommandStrings.de.xlf index 09c429c5ac2..d4b61907c28 100644 --- a/src/Aspire.Cli/Resources/xlf/McpCommandStrings.de.xlf +++ b/src/Aspire.Cli/Resources/xlf/McpCommandStrings.de.xlf @@ -2,13 +2,33 @@ + + Call an MCP tool on a running resource + Call an MCP tool on a running resource + + + + JSON input to pass to the tool + JSON input to pass to the tool + + + + The name of the resource that exposes the MCP tool + The name of the resource that exposes the MCP tool + + + + The name of the MCP tool to call + The name of the MCP tool to call + + Warning: 'aspire mcp' commands are deprecated and will be removed in a future release. Please use 'aspire agent' instead. Warnung: Die Befehle „aspire mcp“ sind veraltet und werden in einer zukünftigen Version entfernt. Bitte verwenden Sie stattdessen „aspire agent“. - Interact with MCP (Model Context Protocol) tools exposed by Aspire resources. + Interact with MCP (Model Context Protocol) tools exposed by Aspire resources Verwalten Sie den MCP-Server (Model Context Protocol). (Veraltet, stattdessen „agent“ verwenden) @@ -38,8 +58,8 @@ - Initialize MCP server configuration for detected agent environments. (deprecated, use 'agent init') - Initialisieren Sie die MCP-Serverkonfiguration für erkannte agentische Umgebungen. (veraltet, stattdessen „agent init“ verwenden) + Initialize MCP server configuration for detected agent environments (deprecated, use 'agent init') + Initialisieren Sie die MCP-Serverkonfiguration für erkannte agentische Umgebungen. (veraltet, stattdessen „agent init“ verwenden) @@ -68,8 +88,18 @@ - Start the MCP (Model Context Protocol) server. (deprecated, use 'agent mcp') - Starten Sie den MCP-Server (Model Context Protocol). (veraltet, stattdessen „agent mcp“ verwenden) + Start the MCP (Model Context Protocol) server (deprecated, use 'agent mcp') + Starten Sie den MCP-Server (Model Context Protocol). (veraltet, stattdessen „agent mcp“ verwenden) + + + + List MCP tools exposed by running resources + List MCP tools exposed by running resources + + + + Output format (Table or Json) + Output format (Table or Json) diff --git a/src/Aspire.Cli/Resources/xlf/McpCommandStrings.es.xlf b/src/Aspire.Cli/Resources/xlf/McpCommandStrings.es.xlf index b32784f9e47..a0c49650ce1 100644 --- a/src/Aspire.Cli/Resources/xlf/McpCommandStrings.es.xlf +++ b/src/Aspire.Cli/Resources/xlf/McpCommandStrings.es.xlf @@ -2,13 +2,33 @@ + + Call an MCP tool on a running resource + Call an MCP tool on a running resource + + + + JSON input to pass to the tool + JSON input to pass to the tool + + + + The name of the resource that exposes the MCP tool + The name of the resource that exposes the MCP tool + + + + The name of the MCP tool to call + The name of the MCP tool to call + + Warning: 'aspire mcp' commands are deprecated and will be removed in a future release. Please use 'aspire agent' instead. Advertencia: los comandos "mcp" están en desuso y se quitarán en una versión futura. En su lugar, use "agente aspire" en su lugar. - Interact with MCP (Model Context Protocol) tools exposed by Aspire resources. + Interact with MCP (Model Context Protocol) tools exposed by Aspire resources Administrar el servidor MCP (protocolo de contexto de modelo). (en desuso, use ''agent'') @@ -38,8 +58,8 @@ - Initialize MCP server configuration for detected agent environments. (deprecated, use 'agent init') - Inicialice la configuración del servidor MCP para los entornos de agentes detectados. (en desuso, use ''agent init'') + Initialize MCP server configuration for detected agent environments (deprecated, use 'agent init') + Inicialice la configuración del servidor MCP para los entornos de agentes detectados. (en desuso, use ''agent init'') @@ -68,8 +88,18 @@ - Start the MCP (Model Context Protocol) server. (deprecated, use 'agent mcp') - Inicie el servidor MCP (protocolo de contexto de modelo). (en desuso, use "agent mcp") + Start the MCP (Model Context Protocol) server (deprecated, use 'agent mcp') + Inicie el servidor MCP (protocolo de contexto de modelo). (en desuso, use "agent mcp") + + + + List MCP tools exposed by running resources + List MCP tools exposed by running resources + + + + Output format (Table or Json) + Output format (Table or Json) diff --git a/src/Aspire.Cli/Resources/xlf/McpCommandStrings.fr.xlf b/src/Aspire.Cli/Resources/xlf/McpCommandStrings.fr.xlf index 57bdd8932f3..69f6a706fe8 100644 --- a/src/Aspire.Cli/Resources/xlf/McpCommandStrings.fr.xlf +++ b/src/Aspire.Cli/Resources/xlf/McpCommandStrings.fr.xlf @@ -2,13 +2,33 @@ + + Call an MCP tool on a running resource + Call an MCP tool on a running resource + + + + JSON input to pass to the tool + JSON input to pass to the tool + + + + The name of the resource that exposes the MCP tool + The name of the resource that exposes the MCP tool + + + + The name of the MCP tool to call + The name of the MCP tool to call + + Warning: 'aspire mcp' commands are deprecated and will be removed in a future release. Please use 'aspire agent' instead. Avertissement : les commandes « aspire mcp » sont obsolètes et seront supprimées dans une prochaine version. Veuillez utiliser « aspire agent » à la place. - Interact with MCP (Model Context Protocol) tools exposed by Aspire resources. + Interact with MCP (Model Context Protocol) tools exposed by Aspire resources Gérez le serveur MCP (Model Context Protocol). (obsolète, utilisez « agent ») @@ -38,8 +58,8 @@ - Initialize MCP server configuration for detected agent environments. (deprecated, use 'agent init') - Initialiser la configuration du serveur MCP pour les environnements d’agent détectés. (obsolète, utilisez « agent init ») + Initialize MCP server configuration for detected agent environments (deprecated, use 'agent init') + Initialiser la configuration du serveur MCP pour les environnements d’agent détectés. (obsolète, utilisez « agent init ») @@ -68,8 +88,18 @@ - Start the MCP (Model Context Protocol) server. (deprecated, use 'agent mcp') - Démarrer le serveur MCP (Model Context Protocol). (obsolète, utilisez « agent mcp ») + Start the MCP (Model Context Protocol) server (deprecated, use 'agent mcp') + Démarrer le serveur MCP (Model Context Protocol). (obsolète, utilisez « agent mcp ») + + + + List MCP tools exposed by running resources + List MCP tools exposed by running resources + + + + Output format (Table or Json) + Output format (Table or Json) diff --git a/src/Aspire.Cli/Resources/xlf/McpCommandStrings.it.xlf b/src/Aspire.Cli/Resources/xlf/McpCommandStrings.it.xlf index 41f71372578..47996968f73 100644 --- a/src/Aspire.Cli/Resources/xlf/McpCommandStrings.it.xlf +++ b/src/Aspire.Cli/Resources/xlf/McpCommandStrings.it.xlf @@ -2,13 +2,33 @@ + + Call an MCP tool on a running resource + Call an MCP tool on a running resource + + + + JSON input to pass to the tool + JSON input to pass to the tool + + + + The name of the resource that exposes the MCP tool + The name of the resource that exposes the MCP tool + + + + The name of the MCP tool to call + The name of the MCP tool to call + + Warning: 'aspire mcp' commands are deprecated and will be removed in a future release. Please use 'aspire agent' instead. Avviso: i comandi "aspire mcp" sono deprecati e verranno rimossi in una versione futura. In alternativa, usare "aspire agent". - Interact with MCP (Model Context Protocol) tools exposed by Aspire resources. + Interact with MCP (Model Context Protocol) tools exposed by Aspire resources Consente di gestire il server MCP (Model Context Protocol). (deprecato, usare "agent") @@ -38,8 +58,8 @@ - Initialize MCP server configuration for detected agent environments. (deprecated, use 'agent init') - Consente di inizializzare la configurazione del server MCP per gli ambienti agente rilevati. (deprecato, usare "agent init") + Initialize MCP server configuration for detected agent environments (deprecated, use 'agent init') + Consente di inizializzare la configurazione del server MCP per gli ambienti agente rilevati. (deprecato, usare "agent init") @@ -68,8 +88,18 @@ - Start the MCP (Model Context Protocol) server. (deprecated, use 'agent mcp') - Consente di avviare il server MCP (Model Context Protocol). (deprecato, usare "agent mcp") + Start the MCP (Model Context Protocol) server (deprecated, use 'agent mcp') + Consente di avviare il server MCP (Model Context Protocol). (deprecato, usare "agent mcp") + + + + List MCP tools exposed by running resources + List MCP tools exposed by running resources + + + + Output format (Table or Json) + Output format (Table or Json) diff --git a/src/Aspire.Cli/Resources/xlf/McpCommandStrings.ja.xlf b/src/Aspire.Cli/Resources/xlf/McpCommandStrings.ja.xlf index 229ffd5a82c..2ce5ee9cc79 100644 --- a/src/Aspire.Cli/Resources/xlf/McpCommandStrings.ja.xlf +++ b/src/Aspire.Cli/Resources/xlf/McpCommandStrings.ja.xlf @@ -2,13 +2,33 @@ + + Call an MCP tool on a running resource + Call an MCP tool on a running resource + + + + JSON input to pass to the tool + JSON input to pass to the tool + + + + The name of the resource that exposes the MCP tool + The name of the resource that exposes the MCP tool + + + + The name of the MCP tool to call + The name of the MCP tool to call + + Warning: 'aspire mcp' commands are deprecated and will be removed in a future release. Please use 'aspire agent' instead. 警告: 'aspire mcp' コマンドは非推奨扱いになっており、将来のリリースで削除される予定です。代わりに 'aspire agent' を使用してください。 - Interact with MCP (Model Context Protocol) tools exposed by Aspire resources. + Interact with MCP (Model Context Protocol) tools exposed by Aspire resources MCP (モデル コンテキスト プロトコル) サーバーを管理します。(非推奨です。'agent' を使用してください) @@ -38,8 +58,8 @@ - Initialize MCP server configuration for detected agent environments. (deprecated, use 'agent init') - 検出されたエージェント環境の MCP サーバー構成を初期化します。(非推奨です。'agent init' を使用してください) + Initialize MCP server configuration for detected agent environments (deprecated, use 'agent init') + 検出されたエージェント環境の MCP サーバー構成を初期化します。(非推奨です。'agent init' を使用してください) @@ -68,8 +88,18 @@ - Start the MCP (Model Context Protocol) server. (deprecated, use 'agent mcp') - MCP (モデル コンテキスト プロトコル) サーバーを起動します。(非推奨です。'agent mcp' を使用してください) + Start the MCP (Model Context Protocol) server (deprecated, use 'agent mcp') + MCP (モデル コンテキスト プロトコル) サーバーを起動します。(非推奨です。'agent mcp' を使用してください) + + + + List MCP tools exposed by running resources + List MCP tools exposed by running resources + + + + Output format (Table or Json) + Output format (Table or Json) diff --git a/src/Aspire.Cli/Resources/xlf/McpCommandStrings.ko.xlf b/src/Aspire.Cli/Resources/xlf/McpCommandStrings.ko.xlf index 4866f9fae11..8822d1b3190 100644 --- a/src/Aspire.Cli/Resources/xlf/McpCommandStrings.ko.xlf +++ b/src/Aspire.Cli/Resources/xlf/McpCommandStrings.ko.xlf @@ -2,13 +2,33 @@ + + Call an MCP tool on a running resource + Call an MCP tool on a running resource + + + + JSON input to pass to the tool + JSON input to pass to the tool + + + + The name of the resource that exposes the MCP tool + The name of the resource that exposes the MCP tool + + + + The name of the MCP tool to call + The name of the MCP tool to call + + Warning: 'aspire mcp' commands are deprecated and will be removed in a future release. Please use 'aspire agent' instead. 경고: 'aspire mcp' 명령은 더 이상 사용되지 않으며 향후 릴리스에서 제거될 예정입니다. 대신 'aspire agent'를 사용하세요. - Interact with MCP (Model Context Protocol) tools exposed by Aspire resources. + Interact with MCP (Model Context Protocol) tools exposed by Aspire resources MCP(모델 컨텍스트 프로토콜) 서버를 관리합니다. (더 이상 사용되지 않음, 'agent' 사용) @@ -38,8 +58,8 @@ - Initialize MCP server configuration for detected agent environments. (deprecated, use 'agent init') - 검색된 에이전트 환경에 대한 MCP 서버 구성을 초기화합니다. (더 이상 사용되지 않음, 'agent init' 사용) + Initialize MCP server configuration for detected agent environments (deprecated, use 'agent init') + 검색된 에이전트 환경에 대한 MCP 서버 구성을 초기화합니다. (더 이상 사용되지 않음, 'agent init' 사용) @@ -68,8 +88,18 @@ - Start the MCP (Model Context Protocol) server. (deprecated, use 'agent mcp') - MCP(모델 컨텍스트 프로토콜) 서버를 시작합니다. (더 이상 사용되지 않음, 'agent mcp' 사용) + Start the MCP (Model Context Protocol) server (deprecated, use 'agent mcp') + MCP(모델 컨텍스트 프로토콜) 서버를 시작합니다. (더 이상 사용되지 않음, 'agent mcp' 사용) + + + + List MCP tools exposed by running resources + List MCP tools exposed by running resources + + + + Output format (Table or Json) + Output format (Table or Json) diff --git a/src/Aspire.Cli/Resources/xlf/McpCommandStrings.pl.xlf b/src/Aspire.Cli/Resources/xlf/McpCommandStrings.pl.xlf index 3649123176f..c0387ff7176 100644 --- a/src/Aspire.Cli/Resources/xlf/McpCommandStrings.pl.xlf +++ b/src/Aspire.Cli/Resources/xlf/McpCommandStrings.pl.xlf @@ -2,13 +2,33 @@ + + Call an MCP tool on a running resource + Call an MCP tool on a running resource + + + + JSON input to pass to the tool + JSON input to pass to the tool + + + + The name of the resource that exposes the MCP tool + The name of the resource that exposes the MCP tool + + + + The name of the MCP tool to call + The name of the MCP tool to call + + Warning: 'aspire mcp' commands are deprecated and will be removed in a future release. Please use 'aspire agent' instead. Ostrzeżenie: polecenia „aspire mcp” są przestarzałe i zostaną usunięte w przyszłym wydaniu. Użyj zamiast nich polecenia „aspire agent”. - Interact with MCP (Model Context Protocol) tools exposed by Aspire resources. + Interact with MCP (Model Context Protocol) tools exposed by Aspire resources Zarządzaj serwerem MCP (Model Context Protocol). (przestarzałe, użyj polecenia „agent”) @@ -38,8 +58,8 @@ - Initialize MCP server configuration for detected agent environments. (deprecated, use 'agent init') - Zainicjuj konfigurację serwera MCP dla wykrytych środowisk agentów. (przestarzałe, użyj polecenia „agent init”) + Initialize MCP server configuration for detected agent environments (deprecated, use 'agent init') + Zainicjuj konfigurację serwera MCP dla wykrytych środowisk agentów. (przestarzałe, użyj polecenia „agent init”) @@ -68,8 +88,18 @@ - Start the MCP (Model Context Protocol) server. (deprecated, use 'agent mcp') - Uruchom serwer MCP (Model Context Protocol). (przestarzałe, użyj polecenia „agent mcp”) + Start the MCP (Model Context Protocol) server (deprecated, use 'agent mcp') + Uruchom serwer MCP (Model Context Protocol). (przestarzałe, użyj polecenia „agent mcp”) + + + + List MCP tools exposed by running resources + List MCP tools exposed by running resources + + + + Output format (Table or Json) + Output format (Table or Json) diff --git a/src/Aspire.Cli/Resources/xlf/McpCommandStrings.pt-BR.xlf b/src/Aspire.Cli/Resources/xlf/McpCommandStrings.pt-BR.xlf index 98b1cee133d..9011c6990ef 100644 --- a/src/Aspire.Cli/Resources/xlf/McpCommandStrings.pt-BR.xlf +++ b/src/Aspire.Cli/Resources/xlf/McpCommandStrings.pt-BR.xlf @@ -2,13 +2,33 @@ + + Call an MCP tool on a running resource + Call an MCP tool on a running resource + + + + JSON input to pass to the tool + JSON input to pass to the tool + + + + The name of the resource that exposes the MCP tool + The name of the resource that exposes the MCP tool + + + + The name of the MCP tool to call + The name of the MCP tool to call + + Warning: 'aspire mcp' commands are deprecated and will be removed in a future release. Please use 'aspire agent' instead. Aviso: os comandos "aspire mcp" estão obsoletos e serão removidos em uma versão futura. Use "aspire agent" em vez disso. - Interact with MCP (Model Context Protocol) tools exposed by Aspire resources. + Interact with MCP (Model Context Protocol) tools exposed by Aspire resources Gerencie o servidor MCP (Protocolo de Contexto de Modelo). (obsoleto, usar "agent") @@ -38,8 +58,8 @@ - Initialize MCP server configuration for detected agent environments. (deprecated, use 'agent init') - Inicialize a configuração do servidor MCP para ambientes de agente detectados. (obsoleto, usar "agent init") + Initialize MCP server configuration for detected agent environments (deprecated, use 'agent init') + Inicialize a configuração do servidor MCP para ambientes de agente detectados. (obsoleto, usar "agent init") @@ -68,8 +88,18 @@ - Start the MCP (Model Context Protocol) server. (deprecated, use 'agent mcp') - Inicie o servidor MCP (Protocolo de Contexto de Modelo). (obsoleto, usar "agent mcp") + Start the MCP (Model Context Protocol) server (deprecated, use 'agent mcp') + Inicie o servidor MCP (Protocolo de Contexto de Modelo). (obsoleto, usar "agent mcp") + + + + List MCP tools exposed by running resources + List MCP tools exposed by running resources + + + + Output format (Table or Json) + Output format (Table or Json) diff --git a/src/Aspire.Cli/Resources/xlf/McpCommandStrings.ru.xlf b/src/Aspire.Cli/Resources/xlf/McpCommandStrings.ru.xlf index f6122d050ba..2398af52b0f 100644 --- a/src/Aspire.Cli/Resources/xlf/McpCommandStrings.ru.xlf +++ b/src/Aspire.Cli/Resources/xlf/McpCommandStrings.ru.xlf @@ -2,13 +2,33 @@ + + Call an MCP tool on a running resource + Call an MCP tool on a running resource + + + + JSON input to pass to the tool + JSON input to pass to the tool + + + + The name of the resource that exposes the MCP tool + The name of the resource that exposes the MCP tool + + + + The name of the MCP tool to call + The name of the MCP tool to call + + Warning: 'aspire mcp' commands are deprecated and will be removed in a future release. Please use 'aspire agent' instead. Внимание: команды "aspire mcp" являются нерекомендуемыми и будут удалены в будущем выпуске. Используйте вместо них "aspire agent". - Interact with MCP (Model Context Protocol) tools exposed by Aspire resources. + Interact with MCP (Model Context Protocol) tools exposed by Aspire resources Управление сервером MCP. (не рекомендуется, используйте "agent"") @@ -38,8 +58,8 @@ - Initialize MCP server configuration for detected agent environments. (deprecated, use 'agent init') - Инициализация конфигурации сервера MCP для обнаруженных сред агентов. (не рекомендуется, используйте "agent init") + Initialize MCP server configuration for detected agent environments (deprecated, use 'agent init') + Инициализация конфигурации сервера MCP для обнаруженных сред агентов. (не рекомендуется, используйте "agent init") @@ -68,8 +88,18 @@ - Start the MCP (Model Context Protocol) server. (deprecated, use 'agent mcp') - Запуск сервера MCP. (не рекомендуется, используйте "agent mcp") + Start the MCP (Model Context Protocol) server (deprecated, use 'agent mcp') + Запуск сервера MCP. (не рекомендуется, используйте "agent mcp") + + + + List MCP tools exposed by running resources + List MCP tools exposed by running resources + + + + Output format (Table or Json) + Output format (Table or Json) diff --git a/src/Aspire.Cli/Resources/xlf/McpCommandStrings.tr.xlf b/src/Aspire.Cli/Resources/xlf/McpCommandStrings.tr.xlf index 09d4c308313..dd991b7dc1f 100644 --- a/src/Aspire.Cli/Resources/xlf/McpCommandStrings.tr.xlf +++ b/src/Aspire.Cli/Resources/xlf/McpCommandStrings.tr.xlf @@ -2,13 +2,33 @@ + + Call an MCP tool on a running resource + Call an MCP tool on a running resource + + + + JSON input to pass to the tool + JSON input to pass to the tool + + + + The name of the resource that exposes the MCP tool + The name of the resource that exposes the MCP tool + + + + The name of the MCP tool to call + The name of the MCP tool to call + + Warning: 'aspire mcp' commands are deprecated and will be removed in a future release. Please use 'aspire agent' instead. Uyarı: 'aspire mcp' komutları kullanım dışıdır ve gelecekteki bir sürümde kaldırılacaktır. Lütfen bunun yerine 'aspire agent' kullanın. - Interact with MCP (Model Context Protocol) tools exposed by Aspire resources. + Interact with MCP (Model Context Protocol) tools exposed by Aspire resources MCP (Model Bağlam Protokolü) sunucusunu yönetin. (kullanım dışı, 'agent' kullanın) @@ -38,8 +58,8 @@ - Initialize MCP server configuration for detected agent environments. (deprecated, use 'agent init') - Algılanan aracı ortamları için MCP sunucu yapılandırmasını başlatın. (kullanım dışı, 'agent init' kullanın) + Initialize MCP server configuration for detected agent environments (deprecated, use 'agent init') + Algılanan aracı ortamları için MCP sunucu yapılandırmasını başlatın. (kullanım dışı, 'agent init' kullanın) @@ -68,8 +88,18 @@ - Start the MCP (Model Context Protocol) server. (deprecated, use 'agent mcp') - MCP (Model Bağlam Protokolü) sunucusunu başlat. (kullanım dışı, 'agent mcp' kullanın) + Start the MCP (Model Context Protocol) server (deprecated, use 'agent mcp') + MCP (Model Bağlam Protokolü) sunucusunu başlat. (kullanım dışı, 'agent mcp' kullanın) + + + + List MCP tools exposed by running resources + List MCP tools exposed by running resources + + + + Output format (Table or Json) + Output format (Table or Json) diff --git a/src/Aspire.Cli/Resources/xlf/McpCommandStrings.zh-Hans.xlf b/src/Aspire.Cli/Resources/xlf/McpCommandStrings.zh-Hans.xlf index f5b504797a8..8edeabfc063 100644 --- a/src/Aspire.Cli/Resources/xlf/McpCommandStrings.zh-Hans.xlf +++ b/src/Aspire.Cli/Resources/xlf/McpCommandStrings.zh-Hans.xlf @@ -2,13 +2,33 @@ + + Call an MCP tool on a running resource + Call an MCP tool on a running resource + + + + JSON input to pass to the tool + JSON input to pass to the tool + + + + The name of the resource that exposes the MCP tool + The name of the resource that exposes the MCP tool + + + + The name of the MCP tool to call + The name of the MCP tool to call + + Warning: 'aspire mcp' commands are deprecated and will be removed in a future release. Please use 'aspire agent' instead. 警告: "aspire mcp" 命令已弃用,将在未来版本中移除。请改用 "aspire agent"。 - Interact with MCP (Model Context Protocol) tools exposed by Aspire resources. + Interact with MCP (Model Context Protocol) tools exposed by Aspire resources 管理 MCP (模型上下文协议)服务器。(已弃用,请使用 "agent") @@ -38,8 +58,8 @@ - Initialize MCP server configuration for detected agent environments. (deprecated, use 'agent init') - 初始化检测到的智能体环境的 MCP 服务器配置。(已弃用,请使用 "agent init") + Initialize MCP server configuration for detected agent environments (deprecated, use 'agent init') + 初始化检测到的智能体环境的 MCP 服务器配置。(已弃用,请使用 "agent init") @@ -68,8 +88,18 @@ - Start the MCP (Model Context Protocol) server. (deprecated, use 'agent mcp') - 启动 MCP (模型上下文协议)服务器。(已弃用,请使用 "agent mcp") + Start the MCP (Model Context Protocol) server (deprecated, use 'agent mcp') + 启动 MCP (模型上下文协议)服务器。(已弃用,请使用 "agent mcp") + + + + List MCP tools exposed by running resources + List MCP tools exposed by running resources + + + + Output format (Table or Json) + Output format (Table or Json) diff --git a/src/Aspire.Cli/Resources/xlf/McpCommandStrings.zh-Hant.xlf b/src/Aspire.Cli/Resources/xlf/McpCommandStrings.zh-Hant.xlf index 40698fdd8f0..94ed2bf6732 100644 --- a/src/Aspire.Cli/Resources/xlf/McpCommandStrings.zh-Hant.xlf +++ b/src/Aspire.Cli/Resources/xlf/McpCommandStrings.zh-Hant.xlf @@ -2,13 +2,33 @@ + + Call an MCP tool on a running resource + Call an MCP tool on a running resource + + + + JSON input to pass to the tool + JSON input to pass to the tool + + + + The name of the resource that exposes the MCP tool + The name of the resource that exposes the MCP tool + + + + The name of the MCP tool to call + The name of the MCP tool to call + + Warning: 'aspire mcp' commands are deprecated and will be removed in a future release. Please use 'aspire agent' instead. 警告: 'aspire mcp' 命令已棄用,並將於未來版本中移除。請改用 'aspire agent'。 - Interact with MCP (Model Context Protocol) tools exposed by Aspire resources. + Interact with MCP (Model Context Protocol) tools exposed by Aspire resources 管理 MCP (模型內容通訊協定) 伺服器。(已棄用,請使用 'agent') @@ -38,8 +58,8 @@ - Initialize MCP server configuration for detected agent environments. (deprecated, use 'agent init') - 為偵測到的代理程式環境初始化 MCP 伺服器設定。(已棄用,請使用 'agent init') + Initialize MCP server configuration for detected agent environments (deprecated, use 'agent init') + 為偵測到的代理程式環境初始化 MCP 伺服器設定。(已棄用,請使用 'agent init') @@ -68,8 +88,18 @@ - Start the MCP (Model Context Protocol) server. (deprecated, use 'agent mcp') - 啟動 MCP (模型內容通訊協定) 伺服器。(已棄用,請使用 'agent mcp') + Start the MCP (Model Context Protocol) server (deprecated, use 'agent mcp') + 啟動 MCP (模型內容通訊協定) 伺服器。(已棄用,請使用 'agent mcp') + + + + List MCP tools exposed by running resources + List MCP tools exposed by running resources + + + + Output format (Table or Json) + Output format (Table or Json) diff --git a/src/Aspire.Cli/Resources/xlf/NewCommandStrings.cs.xlf b/src/Aspire.Cli/Resources/xlf/NewCommandStrings.cs.xlf index 1dee98c90ce..34d0ad6adbf 100644 --- a/src/Aspire.Cli/Resources/xlf/NewCommandStrings.cs.xlf +++ b/src/Aspire.Cli/Resources/xlf/NewCommandStrings.cs.xlf @@ -13,7 +13,7 @@ - Create a new app from an Aspire starter template. + Create a new app from an Aspire starter template Vytvořte nový projekt Aspire. @@ -33,18 +33,18 @@ - The programming language for the AppHost. - The programming language for the AppHost. + The programming language for the apphost + The programming language for the apphost - The name of the project to create. - Název projektu, který se má vytvořit + The name of the project to create + Název projektu, který se má vytvořit - The output path for the project. - Výstupní cesta pro projekt + The output path for the project + Výstupní cesta pro projekt @@ -63,8 +63,8 @@ - The NuGet source to use for the project templates. - Zdroj NuGet, který se má použít pro šablony projektu + The NuGet source to use for the project templates + Zdroj NuGet, který se má použít pro šablony projektu @@ -73,8 +73,8 @@ - The version of the project templates to use. - Verze šablon projektu, která se má použít + The version of the project templates to use + Verze šablon projektu, která se má použít diff --git a/src/Aspire.Cli/Resources/xlf/NewCommandStrings.de.xlf b/src/Aspire.Cli/Resources/xlf/NewCommandStrings.de.xlf index a73f7f00c31..d4b723772a8 100644 --- a/src/Aspire.Cli/Resources/xlf/NewCommandStrings.de.xlf +++ b/src/Aspire.Cli/Resources/xlf/NewCommandStrings.de.xlf @@ -13,7 +13,7 @@ - Create a new app from an Aspire starter template. + Create a new app from an Aspire starter template Erstellen Sie ein neues Aspire-Projekt. @@ -33,18 +33,18 @@ - The programming language for the AppHost. - The programming language for the AppHost. + The programming language for the apphost + The programming language for the apphost - The name of the project to create. - Der Name des zu erstellenden Projekts. + The name of the project to create + Der Name des zu erstellenden Projekts. - The output path for the project. - Der Ausgabepfad für das Projekt. + The output path for the project + Der Ausgabepfad für das Projekt. @@ -63,8 +63,8 @@ - The NuGet source to use for the project templates. - Die NuGet-Quelle, die für die Projektvorlagen verwendet werden soll. + The NuGet source to use for the project templates + Die NuGet-Quelle, die für die Projektvorlagen verwendet werden soll. @@ -73,8 +73,8 @@ - The version of the project templates to use. - Die Version der zu verwendenden Projektvorlagen. + The version of the project templates to use + Die Version der zu verwendenden Projektvorlagen. diff --git a/src/Aspire.Cli/Resources/xlf/NewCommandStrings.es.xlf b/src/Aspire.Cli/Resources/xlf/NewCommandStrings.es.xlf index 57e8810217a..e1a1f1cc27a 100644 --- a/src/Aspire.Cli/Resources/xlf/NewCommandStrings.es.xlf +++ b/src/Aspire.Cli/Resources/xlf/NewCommandStrings.es.xlf @@ -13,7 +13,7 @@ - Create a new app from an Aspire starter template. + Create a new app from an Aspire starter template Crear un nuevo proyecto Aspire. @@ -33,18 +33,18 @@ - The programming language for the AppHost. - The programming language for the AppHost. + The programming language for the apphost + The programming language for the apphost - The name of the project to create. - El nombre del proyecto que se va a crear. + The name of the project to create + El nombre del proyecto que se va a crear. - The output path for the project. - La ruta de salida del proyecto. + The output path for the project + La ruta de salida del proyecto. @@ -63,8 +63,8 @@ - The NuGet source to use for the project templates. - El origen de NuGet que se va a usar para las plantillas de proyecto. + The NuGet source to use for the project templates + El origen de NuGet que se va a usar para las plantillas de proyecto. @@ -73,8 +73,8 @@ - The version of the project templates to use. - La versión de las plantillas de proyecto que se van a usar. + The version of the project templates to use + La versión de las plantillas de proyecto que se van a usar. diff --git a/src/Aspire.Cli/Resources/xlf/NewCommandStrings.fr.xlf b/src/Aspire.Cli/Resources/xlf/NewCommandStrings.fr.xlf index 2f10e65de44..c91372cdcc7 100644 --- a/src/Aspire.Cli/Resources/xlf/NewCommandStrings.fr.xlf +++ b/src/Aspire.Cli/Resources/xlf/NewCommandStrings.fr.xlf @@ -13,7 +13,7 @@ - Create a new app from an Aspire starter template. + Create a new app from an Aspire starter template Créez un nouveau projet Aspire. @@ -33,18 +33,18 @@ - The programming language for the AppHost. - The programming language for the AppHost. + The programming language for the apphost + The programming language for the apphost - The name of the project to create. - Nom du projet à créer. + The name of the project to create + Nom du projet à créer. - The output path for the project. - Le chemin de sortie du projet. + The output path for the project + Le chemin de sortie du projet. @@ -63,8 +63,8 @@ - The NuGet source to use for the project templates. - La source NuGet à utiliser pour les modèles de projet. + The NuGet source to use for the project templates + La source NuGet à utiliser pour les modèles de projet. @@ -73,8 +73,8 @@ - The version of the project templates to use. - Version des modèles de projet à utiliser. + The version of the project templates to use + Version des modèles de projet à utiliser. diff --git a/src/Aspire.Cli/Resources/xlf/NewCommandStrings.it.xlf b/src/Aspire.Cli/Resources/xlf/NewCommandStrings.it.xlf index b8ff47e57b4..4ff8dee47b8 100644 --- a/src/Aspire.Cli/Resources/xlf/NewCommandStrings.it.xlf +++ b/src/Aspire.Cli/Resources/xlf/NewCommandStrings.it.xlf @@ -13,7 +13,7 @@ - Create a new app from an Aspire starter template. + Create a new app from an Aspire starter template Creare un nuovo progetto Aspire. @@ -33,18 +33,18 @@ - The programming language for the AppHost. - The programming language for the AppHost. + The programming language for the apphost + The programming language for the apphost - The name of the project to create. - Nome del progetto da creare. + The name of the project to create + Nome del progetto da creare. - The output path for the project. - Percorso di output per il progetto. + The output path for the project + Percorso di output per il progetto. @@ -63,8 +63,8 @@ - The NuGet source to use for the project templates. - Origine NuGet da utilizzare per i modelli di progetto. + The NuGet source to use for the project templates + Origine NuGet da utilizzare per i modelli di progetto. @@ -73,8 +73,8 @@ - The version of the project templates to use. - Versione dei modelli di progetto da utilizzare. + The version of the project templates to use + Versione dei modelli di progetto da utilizzare. diff --git a/src/Aspire.Cli/Resources/xlf/NewCommandStrings.ja.xlf b/src/Aspire.Cli/Resources/xlf/NewCommandStrings.ja.xlf index afe7e863c4f..34c66000b14 100644 --- a/src/Aspire.Cli/Resources/xlf/NewCommandStrings.ja.xlf +++ b/src/Aspire.Cli/Resources/xlf/NewCommandStrings.ja.xlf @@ -13,7 +13,7 @@ - Create a new app from an Aspire starter template. + Create a new app from an Aspire starter template 新しい Aspire プロジェクトを作成します。 @@ -33,18 +33,18 @@ - The programming language for the AppHost. - The programming language for the AppHost. + The programming language for the apphost + The programming language for the apphost - The name of the project to create. - 作成するプロジェクトの名前。 + The name of the project to create + 作成するプロジェクトの名前。 - The output path for the project. - プロジェクトの出力パス。 + The output path for the project + プロジェクトの出力パス。 @@ -63,8 +63,8 @@ - The NuGet source to use for the project templates. - プロジェクト テンプレートに使用する NuGet ソース。 + The NuGet source to use for the project templates + プロジェクト テンプレートに使用する NuGet ソース。 @@ -73,8 +73,8 @@ - The version of the project templates to use. - 使用するプロジェクト テンプレートのバージョン。 + The version of the project templates to use + 使用するプロジェクト テンプレートのバージョン。 diff --git a/src/Aspire.Cli/Resources/xlf/NewCommandStrings.ko.xlf b/src/Aspire.Cli/Resources/xlf/NewCommandStrings.ko.xlf index 642ff5fd584..65d95f9a1d9 100644 --- a/src/Aspire.Cli/Resources/xlf/NewCommandStrings.ko.xlf +++ b/src/Aspire.Cli/Resources/xlf/NewCommandStrings.ko.xlf @@ -13,7 +13,7 @@ - Create a new app from an Aspire starter template. + Create a new app from an Aspire starter template 새 Aspire 프로젝트를 만듭니다. @@ -33,18 +33,18 @@ - The programming language for the AppHost. - The programming language for the AppHost. + The programming language for the apphost + The programming language for the apphost - The name of the project to create. - 만들 프로젝트의 이름입니다. + The name of the project to create + 만들 프로젝트의 이름입니다. - The output path for the project. - 프로젝트의 출력 경로입니다. + The output path for the project + 프로젝트의 출력 경로입니다. @@ -63,8 +63,8 @@ - The NuGet source to use for the project templates. - 프로젝트 템플릿에 사용할 NuGet 소스입니다. + The NuGet source to use for the project templates + 프로젝트 템플릿에 사용할 NuGet 소스입니다. @@ -73,8 +73,8 @@ - The version of the project templates to use. - 사용할 프로젝트 템플릿의 버전입니다. + The version of the project templates to use + 사용할 프로젝트 템플릿의 버전입니다. diff --git a/src/Aspire.Cli/Resources/xlf/NewCommandStrings.pl.xlf b/src/Aspire.Cli/Resources/xlf/NewCommandStrings.pl.xlf index c4c4d219d27..efb48f6fb1d 100644 --- a/src/Aspire.Cli/Resources/xlf/NewCommandStrings.pl.xlf +++ b/src/Aspire.Cli/Resources/xlf/NewCommandStrings.pl.xlf @@ -13,7 +13,7 @@ - Create a new app from an Aspire starter template. + Create a new app from an Aspire starter template Utwórz nowy projekt usługi Aspire. @@ -33,18 +33,18 @@ - The programming language for the AppHost. - The programming language for the AppHost. + The programming language for the apphost + The programming language for the apphost - The name of the project to create. - Nazwa projektu do utworzenia. + The name of the project to create + Nazwa projektu do utworzenia. - The output path for the project. - Ścieżka wyjściowa projektu. + The output path for the project + Ścieżka wyjściowa projektu. @@ -63,8 +63,8 @@ - The NuGet source to use for the project templates. - Źródło NuGet, które ma być używane dla szablonów projektu. + The NuGet source to use for the project templates + Źródło NuGet, które ma być używane dla szablonów projektu. @@ -73,8 +73,8 @@ - The version of the project templates to use. - Wersja szablonów projektu do użycia. + The version of the project templates to use + Wersja szablonów projektu do użycia. diff --git a/src/Aspire.Cli/Resources/xlf/NewCommandStrings.pt-BR.xlf b/src/Aspire.Cli/Resources/xlf/NewCommandStrings.pt-BR.xlf index c9f92b65143..9b6248d522c 100644 --- a/src/Aspire.Cli/Resources/xlf/NewCommandStrings.pt-BR.xlf +++ b/src/Aspire.Cli/Resources/xlf/NewCommandStrings.pt-BR.xlf @@ -13,7 +13,7 @@ - Create a new app from an Aspire starter template. + Create a new app from an Aspire starter template Criar um projeto Aspire. @@ -33,18 +33,18 @@ - The programming language for the AppHost. - The programming language for the AppHost. + The programming language for the apphost + The programming language for the apphost - The name of the project to create. - O nome do projeto a ser criado. + The name of the project to create + O nome do projeto a ser criado. - The output path for the project. - O caminho de saída para o projeto. + The output path for the project + O caminho de saída para o projeto. @@ -63,8 +63,8 @@ - The NuGet source to use for the project templates. - A origem do NuGet a ser usada para os modelos de projeto. + The NuGet source to use for the project templates + A origem do NuGet a ser usada para os modelos de projeto. @@ -73,8 +73,8 @@ - The version of the project templates to use. - A versão dos modelos de projeto a serem usados. + The version of the project templates to use + A versão dos modelos de projeto a serem usados. diff --git a/src/Aspire.Cli/Resources/xlf/NewCommandStrings.ru.xlf b/src/Aspire.Cli/Resources/xlf/NewCommandStrings.ru.xlf index 565d95d41a4..c85bf55662d 100644 --- a/src/Aspire.Cli/Resources/xlf/NewCommandStrings.ru.xlf +++ b/src/Aspire.Cli/Resources/xlf/NewCommandStrings.ru.xlf @@ -13,7 +13,7 @@ - Create a new app from an Aspire starter template. + Create a new app from an Aspire starter template Создайте новый проект Aspire. @@ -33,18 +33,18 @@ - The programming language for the AppHost. - The programming language for the AppHost. + The programming language for the apphost + The programming language for the apphost - The name of the project to create. - Имя создаваемого проекта. + The name of the project to create + Имя создаваемого проекта. - The output path for the project. - Выходной путь для проекта. + The output path for the project + Выходной путь для проекта. @@ -63,8 +63,8 @@ - The NuGet source to use for the project templates. - Источник NuGet для использования в шаблонах проекта. + The NuGet source to use for the project templates + Источник NuGet для использования в шаблонах проекта. @@ -73,8 +73,8 @@ - The version of the project templates to use. - Версия шаблонов проекта, которую следует использовать. + The version of the project templates to use + Версия шаблонов проекта, которую следует использовать. diff --git a/src/Aspire.Cli/Resources/xlf/NewCommandStrings.tr.xlf b/src/Aspire.Cli/Resources/xlf/NewCommandStrings.tr.xlf index e6acd270a36..044bf5c0175 100644 --- a/src/Aspire.Cli/Resources/xlf/NewCommandStrings.tr.xlf +++ b/src/Aspire.Cli/Resources/xlf/NewCommandStrings.tr.xlf @@ -13,7 +13,7 @@ - Create a new app from an Aspire starter template. + Create a new app from an Aspire starter template Yeni bir Aspire projesi oluşturun. @@ -33,18 +33,18 @@ - The programming language for the AppHost. - The programming language for the AppHost. + The programming language for the apphost + The programming language for the apphost - The name of the project to create. - Oluşturulacak projenin adı. + The name of the project to create + Oluşturulacak projenin adı. - The output path for the project. - Projenin çıkış yolu. + The output path for the project + Projenin çıkış yolu. @@ -63,8 +63,8 @@ - The NuGet source to use for the project templates. - Proje şablonları için kullanılacak NuGet kaynağı. + The NuGet source to use for the project templates + Proje şablonları için kullanılacak NuGet kaynağı. @@ -73,8 +73,8 @@ - The version of the project templates to use. - Kullanılacak proje şablonlarının sürümü. + The version of the project templates to use + Kullanılacak proje şablonlarının sürümü. diff --git a/src/Aspire.Cli/Resources/xlf/NewCommandStrings.zh-Hans.xlf b/src/Aspire.Cli/Resources/xlf/NewCommandStrings.zh-Hans.xlf index 96c2fd5b7b4..302d33aef3a 100644 --- a/src/Aspire.Cli/Resources/xlf/NewCommandStrings.zh-Hans.xlf +++ b/src/Aspire.Cli/Resources/xlf/NewCommandStrings.zh-Hans.xlf @@ -13,7 +13,7 @@ - Create a new app from an Aspire starter template. + Create a new app from an Aspire starter template 创建新的 Aspire 项目。 @@ -33,18 +33,18 @@ - The programming language for the AppHost. - The programming language for the AppHost. + The programming language for the apphost + The programming language for the apphost - The name of the project to create. - 要创建的项目的名称。 + The name of the project to create + 要创建的项目的名称。 - The output path for the project. - 项目的输出路径。 + The output path for the project + 项目的输出路径。 @@ -63,8 +63,8 @@ - The NuGet source to use for the project templates. - 要用于项目模板的 NuGet 源。 + The NuGet source to use for the project templates + 要用于项目模板的 NuGet 源。 @@ -73,8 +73,8 @@ - The version of the project templates to use. - 要使用的项目模板的版本。 + The version of the project templates to use + 要使用的项目模板的版本。 diff --git a/src/Aspire.Cli/Resources/xlf/NewCommandStrings.zh-Hant.xlf b/src/Aspire.Cli/Resources/xlf/NewCommandStrings.zh-Hant.xlf index ef3b7c51bbc..120109c98d3 100644 --- a/src/Aspire.Cli/Resources/xlf/NewCommandStrings.zh-Hant.xlf +++ b/src/Aspire.Cli/Resources/xlf/NewCommandStrings.zh-Hant.xlf @@ -13,7 +13,7 @@ - Create a new app from an Aspire starter template. + Create a new app from an Aspire starter template 建立新的 Aspire 專案。 @@ -33,18 +33,18 @@ - The programming language for the AppHost. - The programming language for the AppHost. + The programming language for the apphost + The programming language for the apphost - The name of the project to create. - 要建立專案之名稱。 + The name of the project to create + 要建立專案之名稱。 - The output path for the project. - 專案的輸出路徑。 + The output path for the project + 專案的輸出路徑。 @@ -63,8 +63,8 @@ - The NuGet source to use for the project templates. - 要用於專案範本的 NuGet 來源。 + The NuGet source to use for the project templates + 要用於專案範本的 NuGet 來源。 @@ -73,8 +73,8 @@ - The version of the project templates to use. - 要使用的專案範本版本。 + The version of the project templates to use + 要使用的專案範本版本。 diff --git a/src/Aspire.Cli/Resources/xlf/PsCommandStrings.cs.xlf b/src/Aspire.Cli/Resources/xlf/PsCommandStrings.cs.xlf index 39c34d4d693..1c8968c9207 100644 --- a/src/Aspire.Cli/Resources/xlf/PsCommandStrings.cs.xlf +++ b/src/Aspire.Cli/Resources/xlf/PsCommandStrings.cs.xlf @@ -3,7 +3,7 @@ - List running apphosts. + List running apphosts Vypíše spuštěné hostitele aplikací Aspire. @@ -28,13 +28,13 @@ - Output format (Table or Json). + Output format (Table or Json) Výstup ve formátu JSON - Include resource details for each running app host. Only applies to JSON output. - Include resource details for each running app host. Only applies to JSON output. + Include resource details for each running apphost. Only applies to JSON output. + Include resource details for each running apphost. Only applies to JSON output. diff --git a/src/Aspire.Cli/Resources/xlf/PsCommandStrings.de.xlf b/src/Aspire.Cli/Resources/xlf/PsCommandStrings.de.xlf index 534d1b9d94a..3f3cd9c1c51 100644 --- a/src/Aspire.Cli/Resources/xlf/PsCommandStrings.de.xlf +++ b/src/Aspire.Cli/Resources/xlf/PsCommandStrings.de.xlf @@ -3,7 +3,7 @@ - List running apphosts. + List running apphosts Listet die laufenden Aspire-Apphosts auf. @@ -28,13 +28,13 @@ - Output format (Table or Json). + Output format (Table or Json) Ausgabe im JSON-Format. - Include resource details for each running app host. Only applies to JSON output. - Include resource details for each running app host. Only applies to JSON output. + Include resource details for each running apphost. Only applies to JSON output. + Include resource details for each running apphost. Only applies to JSON output. diff --git a/src/Aspire.Cli/Resources/xlf/PsCommandStrings.es.xlf b/src/Aspire.Cli/Resources/xlf/PsCommandStrings.es.xlf index 003d06b0cd0..90ec998996c 100644 --- a/src/Aspire.Cli/Resources/xlf/PsCommandStrings.es.xlf +++ b/src/Aspire.Cli/Resources/xlf/PsCommandStrings.es.xlf @@ -3,7 +3,7 @@ - List running apphosts. + List running apphosts Lista de host de aplicaciones Aspire en ejecución. @@ -28,13 +28,13 @@ - Output format (Table or Json). + Output format (Table or Json) Salida en formato JSON. - Include resource details for each running app host. Only applies to JSON output. - Include resource details for each running app host. Only applies to JSON output. + Include resource details for each running apphost. Only applies to JSON output. + Include resource details for each running apphost. Only applies to JSON output. diff --git a/src/Aspire.Cli/Resources/xlf/PsCommandStrings.fr.xlf b/src/Aspire.Cli/Resources/xlf/PsCommandStrings.fr.xlf index 3160adcc49a..ccb5a465c43 100644 --- a/src/Aspire.Cli/Resources/xlf/PsCommandStrings.fr.xlf +++ b/src/Aspire.Cli/Resources/xlf/PsCommandStrings.fr.xlf @@ -3,7 +3,7 @@ - List running apphosts. + List running apphosts Liste des hôtes d’application Aspire en cours d’exécution. @@ -28,13 +28,13 @@ - Output format (Table or Json). + Output format (Table or Json) Sortie au format JSON. - Include resource details for each running app host. Only applies to JSON output. - Include resource details for each running app host. Only applies to JSON output. + Include resource details for each running apphost. Only applies to JSON output. + Include resource details for each running apphost. Only applies to JSON output. diff --git a/src/Aspire.Cli/Resources/xlf/PsCommandStrings.it.xlf b/src/Aspire.Cli/Resources/xlf/PsCommandStrings.it.xlf index d7be12356f4..1a218e5f144 100644 --- a/src/Aspire.Cli/Resources/xlf/PsCommandStrings.it.xlf +++ b/src/Aspire.Cli/Resources/xlf/PsCommandStrings.it.xlf @@ -3,7 +3,7 @@ - List running apphosts. + List running apphosts Elenca apphost Aspire in esecuzione. @@ -28,13 +28,13 @@ - Output format (Table or Json). + Output format (Table or Json) Output in formato JSON. - Include resource details for each running app host. Only applies to JSON output. - Include resource details for each running app host. Only applies to JSON output. + Include resource details for each running apphost. Only applies to JSON output. + Include resource details for each running apphost. Only applies to JSON output. diff --git a/src/Aspire.Cli/Resources/xlf/PsCommandStrings.ja.xlf b/src/Aspire.Cli/Resources/xlf/PsCommandStrings.ja.xlf index a2925182c55..f55d68b42ce 100644 --- a/src/Aspire.Cli/Resources/xlf/PsCommandStrings.ja.xlf +++ b/src/Aspire.Cli/Resources/xlf/PsCommandStrings.ja.xlf @@ -3,7 +3,7 @@ - List running apphosts. + List running apphosts 実行中の Aspire apphost を一覧表示します。 @@ -28,13 +28,13 @@ - Output format (Table or Json). + Output format (Table or Json) JSON 形式で出力します。 - Include resource details for each running app host. Only applies to JSON output. - Include resource details for each running app host. Only applies to JSON output. + Include resource details for each running apphost. Only applies to JSON output. + Include resource details for each running apphost. Only applies to JSON output. diff --git a/src/Aspire.Cli/Resources/xlf/PsCommandStrings.ko.xlf b/src/Aspire.Cli/Resources/xlf/PsCommandStrings.ko.xlf index 65022c77332..a81439b7f13 100644 --- a/src/Aspire.Cli/Resources/xlf/PsCommandStrings.ko.xlf +++ b/src/Aspire.Cli/Resources/xlf/PsCommandStrings.ko.xlf @@ -3,7 +3,7 @@ - List running apphosts. + List running apphosts 실행 중인 Aspire AppHost를 나열합니다. @@ -28,13 +28,13 @@ - Output format (Table or Json). + Output format (Table or Json) JSON 형식의 출력입니다. - Include resource details for each running app host. Only applies to JSON output. - Include resource details for each running app host. Only applies to JSON output. + Include resource details for each running apphost. Only applies to JSON output. + Include resource details for each running apphost. Only applies to JSON output. diff --git a/src/Aspire.Cli/Resources/xlf/PsCommandStrings.pl.xlf b/src/Aspire.Cli/Resources/xlf/PsCommandStrings.pl.xlf index 79db808550c..bf096c7f9ac 100644 --- a/src/Aspire.Cli/Resources/xlf/PsCommandStrings.pl.xlf +++ b/src/Aspire.Cli/Resources/xlf/PsCommandStrings.pl.xlf @@ -3,7 +3,7 @@ - List running apphosts. + List running apphosts Wyświetl listę uruchomionych hostów aplikacji Aspire. @@ -28,13 +28,13 @@ - Output format (Table or Json). + Output format (Table or Json) Wynik w formacie JSON. - Include resource details for each running app host. Only applies to JSON output. - Include resource details for each running app host. Only applies to JSON output. + Include resource details for each running apphost. Only applies to JSON output. + Include resource details for each running apphost. Only applies to JSON output. diff --git a/src/Aspire.Cli/Resources/xlf/PsCommandStrings.pt-BR.xlf b/src/Aspire.Cli/Resources/xlf/PsCommandStrings.pt-BR.xlf index 4945980cd1e..cf17c269a40 100644 --- a/src/Aspire.Cli/Resources/xlf/PsCommandStrings.pt-BR.xlf +++ b/src/Aspire.Cli/Resources/xlf/PsCommandStrings.pt-BR.xlf @@ -3,7 +3,7 @@ - List running apphosts. + List running apphosts Listar os apphosts Aspire em execução. @@ -28,13 +28,13 @@ - Output format (Table or Json). + Output format (Table or Json) Saída no formato JSON. - Include resource details for each running app host. Only applies to JSON output. - Include resource details for each running app host. Only applies to JSON output. + Include resource details for each running apphost. Only applies to JSON output. + Include resource details for each running apphost. Only applies to JSON output. diff --git a/src/Aspire.Cli/Resources/xlf/PsCommandStrings.ru.xlf b/src/Aspire.Cli/Resources/xlf/PsCommandStrings.ru.xlf index f51aea77cca..69abb122d08 100644 --- a/src/Aspire.Cli/Resources/xlf/PsCommandStrings.ru.xlf +++ b/src/Aspire.Cli/Resources/xlf/PsCommandStrings.ru.xlf @@ -3,7 +3,7 @@ - List running apphosts. + List running apphosts Перечислить запущенные apphosts Aspire. @@ -28,13 +28,13 @@ - Output format (Table or Json). + Output format (Table or Json) Вывод в формате JSON. - Include resource details for each running app host. Only applies to JSON output. - Include resource details for each running app host. Only applies to JSON output. + Include resource details for each running apphost. Only applies to JSON output. + Include resource details for each running apphost. Only applies to JSON output. diff --git a/src/Aspire.Cli/Resources/xlf/PsCommandStrings.tr.xlf b/src/Aspire.Cli/Resources/xlf/PsCommandStrings.tr.xlf index b833073e1d9..c87e5c26a0b 100644 --- a/src/Aspire.Cli/Resources/xlf/PsCommandStrings.tr.xlf +++ b/src/Aspire.Cli/Resources/xlf/PsCommandStrings.tr.xlf @@ -3,7 +3,7 @@ - List running apphosts. + List running apphosts Çalışan bir Aspire uygulama ana işlemlerini listeleyin. @@ -28,13 +28,13 @@ - Output format (Table or Json). + Output format (Table or Json) Çıkışı JSON biçiminde oluşturun. - Include resource details for each running app host. Only applies to JSON output. - Include resource details for each running app host. Only applies to JSON output. + Include resource details for each running apphost. Only applies to JSON output. + Include resource details for each running apphost. Only applies to JSON output. diff --git a/src/Aspire.Cli/Resources/xlf/PsCommandStrings.zh-Hans.xlf b/src/Aspire.Cli/Resources/xlf/PsCommandStrings.zh-Hans.xlf index 53eb64872fa..d3281624f57 100644 --- a/src/Aspire.Cli/Resources/xlf/PsCommandStrings.zh-Hans.xlf +++ b/src/Aspire.Cli/Resources/xlf/PsCommandStrings.zh-Hans.xlf @@ -3,7 +3,7 @@ - List running apphosts. + List running apphosts 列出正在运行的 Aspire AppHost。 @@ -28,13 +28,13 @@ - Output format (Table or Json). + Output format (Table or Json) 以 JSON 格式输出。 - Include resource details for each running app host. Only applies to JSON output. - Include resource details for each running app host. Only applies to JSON output. + Include resource details for each running apphost. Only applies to JSON output. + Include resource details for each running apphost. Only applies to JSON output. diff --git a/src/Aspire.Cli/Resources/xlf/PsCommandStrings.zh-Hant.xlf b/src/Aspire.Cli/Resources/xlf/PsCommandStrings.zh-Hant.xlf index 6f85e14c536..cdfc3f5e56c 100644 --- a/src/Aspire.Cli/Resources/xlf/PsCommandStrings.zh-Hant.xlf +++ b/src/Aspire.Cli/Resources/xlf/PsCommandStrings.zh-Hant.xlf @@ -3,7 +3,7 @@ - List running apphosts. + List running apphosts 列出正在執行的 Aspire apphost。 @@ -28,13 +28,13 @@ - Output format (Table or Json). + Output format (Table or Json) 以 JSON 格式輸出。 - Include resource details for each running app host. Only applies to JSON output. - Include resource details for each running app host. Only applies to JSON output. + Include resource details for each running apphost. Only applies to JSON output. + Include resource details for each running apphost. Only applies to JSON output. diff --git a/src/Aspire.Cli/Resources/xlf/PublishCommandStrings.cs.xlf b/src/Aspire.Cli/Resources/xlf/PublishCommandStrings.cs.xlf index 0f966540a6c..2c5094134a9 100644 --- a/src/Aspire.Cli/Resources/xlf/PublishCommandStrings.cs.xlf +++ b/src/Aspire.Cli/Resources/xlf/PublishCommandStrings.cs.xlf @@ -3,7 +3,7 @@ - Generate deployment artifacts for an apphost. (Preview) + Generate deployment artifacts for an apphost (Preview) Generuje artefakty nasazení pro hostitele aplikací Aspire. (Preview) @@ -18,8 +18,8 @@ - Do not build or restore the project before running. - Do not build or restore the project before running. + Do not build or restore the project before running + Do not build or restore the project before running @@ -34,12 +34,12 @@ The output path for the generated artifacts. Defaults to './aspire-output' if not specified. - Výstupní cesta pro vygenerované artefakty. Pokud není zadaná, použije se výchozí hodnota ./aspire-output. + Výstupní cesta pro vygenerované artefakty. Pokud není zadaná, použije se výchozí hodnota ./aspire-output. - The path to the Aspire AppHost project file. - Cesta k souboru projektu Aspire AppHost. + The path to the Aspire apphost project file + Cesta k souboru projektu Aspire AppHost. diff --git a/src/Aspire.Cli/Resources/xlf/PublishCommandStrings.de.xlf b/src/Aspire.Cli/Resources/xlf/PublishCommandStrings.de.xlf index 221e51230ba..e5514a6e5bb 100644 --- a/src/Aspire.Cli/Resources/xlf/PublishCommandStrings.de.xlf +++ b/src/Aspire.Cli/Resources/xlf/PublishCommandStrings.de.xlf @@ -3,7 +3,7 @@ - Generate deployment artifacts for an apphost. (Preview) + Generate deployment artifacts for an apphost (Preview) Generiert Bereitstellungsartefakte für einen Aspire-App-Host. (Vorschau) @@ -18,8 +18,8 @@ - Do not build or restore the project before running. - Do not build or restore the project before running. + Do not build or restore the project before running + Do not build or restore the project before running @@ -34,12 +34,12 @@ The output path for the generated artifacts. Defaults to './aspire-output' if not specified. - Der Ausgabepfad für die generierten Artefakte. Wenn kein Pfad angegeben wird, ist der Standardwert „./aspire-output“. + Der Ausgabepfad für die generierten Artefakte. Wenn kein Pfad angegeben wird, ist der Standardwert „./aspire-output“. - The path to the Aspire AppHost project file. - Der Pfad zur Aspire AppHost-Projektdatei. + The path to the Aspire apphost project file + Der Pfad zur Aspire AppHost-Projektdatei. diff --git a/src/Aspire.Cli/Resources/xlf/PublishCommandStrings.es.xlf b/src/Aspire.Cli/Resources/xlf/PublishCommandStrings.es.xlf index d2fc4647cb1..77ff22123bc 100644 --- a/src/Aspire.Cli/Resources/xlf/PublishCommandStrings.es.xlf +++ b/src/Aspire.Cli/Resources/xlf/PublishCommandStrings.es.xlf @@ -3,7 +3,7 @@ - Generate deployment artifacts for an apphost. (Preview) + Generate deployment artifacts for an apphost (Preview) Genera artefactos de implementación para un host de aplicaciones Aspire. (Versión preliminar) @@ -18,8 +18,8 @@ - Do not build or restore the project before running. - Do not build or restore the project before running. + Do not build or restore the project before running + Do not build or restore the project before running @@ -34,12 +34,12 @@ The output path for the generated artifacts. Defaults to './aspire-output' if not specified. - La ruta de acceso de salida para los artefactos generados. El valor predeterminado es "./aspire-output" si no se especifica. + La ruta de acceso de salida para los artefactos generados. El valor predeterminado es "./aspire-output" si no se especifica. - The path to the Aspire AppHost project file. - La ruta de acceso al archivo del proyecto host de la AppHost Aspire. + The path to the Aspire apphost project file + La ruta de acceso al archivo del proyecto host de la AppHost Aspire. diff --git a/src/Aspire.Cli/Resources/xlf/PublishCommandStrings.fr.xlf b/src/Aspire.Cli/Resources/xlf/PublishCommandStrings.fr.xlf index 739a6f60454..e2b9bf90251 100644 --- a/src/Aspire.Cli/Resources/xlf/PublishCommandStrings.fr.xlf +++ b/src/Aspire.Cli/Resources/xlf/PublishCommandStrings.fr.xlf @@ -3,7 +3,7 @@ - Generate deployment artifacts for an apphost. (Preview) + Generate deployment artifacts for an apphost (Preview) Génère des artefacts de déploiement pour un Aspire AppHost. (Préversion) @@ -18,8 +18,8 @@ - Do not build or restore the project before running. - Do not build or restore the project before running. + Do not build or restore the project before running + Do not build or restore the project before running @@ -34,12 +34,12 @@ The output path for the generated artifacts. Defaults to './aspire-output' if not specified. - Le chemin de sortie des artefacts générés. Par défaut, il est « ./aspire-output » si aucun chemin n’est spécifié. + Le chemin de sortie des artefacts générés. Par défaut, il est « ./aspire-output » si aucun chemin n’est spécifié. - The path to the Aspire AppHost project file. - Chemin d’accès au fichier projet AppHost Aspire. + The path to the Aspire apphost project file + Chemin d’accès au fichier projet AppHost Aspire. diff --git a/src/Aspire.Cli/Resources/xlf/PublishCommandStrings.it.xlf b/src/Aspire.Cli/Resources/xlf/PublishCommandStrings.it.xlf index 44412ca08c8..05b3e6809df 100644 --- a/src/Aspire.Cli/Resources/xlf/PublishCommandStrings.it.xlf +++ b/src/Aspire.Cli/Resources/xlf/PublishCommandStrings.it.xlf @@ -3,7 +3,7 @@ - Generate deployment artifacts for an apphost. (Preview) + Generate deployment artifacts for an apphost (Preview) Genera artefatti della distribuzione per un AppHost Aspire. (Anteprima) @@ -18,8 +18,8 @@ - Do not build or restore the project before running. - Do not build or restore the project before running. + Do not build or restore the project before running + Do not build or restore the project before running @@ -34,12 +34,12 @@ The output path for the generated artifacts. Defaults to './aspire-output' if not specified. - Percorso di output per gli artefatti generati. Se non viene specificato alcun valore, l'impostazione predefinita è './aspire-output'. + Percorso di output per gli artefatti generati. Se non viene specificato alcun valore, l'impostazione predefinita è './aspire-output'. - The path to the Aspire AppHost project file. - Percorso del file di un progetto AppHost di Aspire. + The path to the Aspire apphost project file + Percorso del file di un progetto AppHost di Aspire. diff --git a/src/Aspire.Cli/Resources/xlf/PublishCommandStrings.ja.xlf b/src/Aspire.Cli/Resources/xlf/PublishCommandStrings.ja.xlf index aa63fe4c227..db883644a6c 100644 --- a/src/Aspire.Cli/Resources/xlf/PublishCommandStrings.ja.xlf +++ b/src/Aspire.Cli/Resources/xlf/PublishCommandStrings.ja.xlf @@ -3,7 +3,7 @@ - Generate deployment artifacts for an apphost. (Preview) + Generate deployment artifacts for an apphost (Preview) Aspire アプリ ホスティング プロセスのデプロイ成果物を生成します。(プレビュー) @@ -18,8 +18,8 @@ - Do not build or restore the project before running. - Do not build or restore the project before running. + Do not build or restore the project before running + Do not build or restore the project before running @@ -34,12 +34,12 @@ The output path for the generated artifacts. Defaults to './aspire-output' if not specified. - 生成された成果物の出力パス。指定がない場合、既定値は './aspire-output' です。 + 生成された成果物の出力パス。指定がない場合、既定値は './aspire-output' です。 - The path to the Aspire AppHost project file. - Aspire アプリ ホスティング プロセス プロジェクト ファイルへのパス。 + The path to the Aspire apphost project file + Aspire アプリ ホスティング プロセス プロジェクト ファイルへのパス。 diff --git a/src/Aspire.Cli/Resources/xlf/PublishCommandStrings.ko.xlf b/src/Aspire.Cli/Resources/xlf/PublishCommandStrings.ko.xlf index 8b9c35ca2a2..d1cc0f3e5b1 100644 --- a/src/Aspire.Cli/Resources/xlf/PublishCommandStrings.ko.xlf +++ b/src/Aspire.Cli/Resources/xlf/PublishCommandStrings.ko.xlf @@ -3,7 +3,7 @@ - Generate deployment artifacts for an apphost. (Preview) + Generate deployment artifacts for an apphost (Preview) Aspire 앱호스트에 대한 배포 아티팩트를 생성합니다. (미리 보기) @@ -18,8 +18,8 @@ - Do not build or restore the project before running. - Do not build or restore the project before running. + Do not build or restore the project before running + Do not build or restore the project before running @@ -34,12 +34,12 @@ The output path for the generated artifacts. Defaults to './aspire-output' if not specified. - 생성된 아티팩트의 출력 경로입니다. 지정하지 않으면 기본값은 './aspire-output'입니다. + 생성된 아티팩트의 출력 경로입니다. 지정하지 않으면 기본값은 './aspire-output'입니다. - The path to the Aspire AppHost project file. - Aspire AppHost 프로젝트 파일의 경로입니다. + The path to the Aspire apphost project file + Aspire AppHost 프로젝트 파일의 경로입니다. diff --git a/src/Aspire.Cli/Resources/xlf/PublishCommandStrings.pl.xlf b/src/Aspire.Cli/Resources/xlf/PublishCommandStrings.pl.xlf index 2d95f54ee45..1cf66381ded 100644 --- a/src/Aspire.Cli/Resources/xlf/PublishCommandStrings.pl.xlf +++ b/src/Aspire.Cli/Resources/xlf/PublishCommandStrings.pl.xlf @@ -3,7 +3,7 @@ - Generate deployment artifacts for an apphost. (Preview) + Generate deployment artifacts for an apphost (Preview) Generuje artefakty wdrożenia dla hosta AppHost platformy Aspire. (Wersja zapoznawcza) @@ -18,8 +18,8 @@ - Do not build or restore the project before running. - Do not build or restore the project before running. + Do not build or restore the project before running + Do not build or restore the project before running @@ -34,12 +34,12 @@ The output path for the generated artifacts. Defaults to './aspire-output' if not specified. - Ścieżka danych wyjściowych dla wygenerowanych artefaktów. Wartością domyślną jest „./jpg-output”, jeśli nie została określona. + Ścieżka danych wyjściowych dla wygenerowanych artefaktów. Wartością domyślną jest „./jpg-output”, jeśli nie została określona. - The path to the Aspire AppHost project file. - Ścieżka do pliku projektu hosta AppHost platformy Aspire. + The path to the Aspire apphost project file + Ścieżka do pliku projektu hosta AppHost platformy Aspire. diff --git a/src/Aspire.Cli/Resources/xlf/PublishCommandStrings.pt-BR.xlf b/src/Aspire.Cli/Resources/xlf/PublishCommandStrings.pt-BR.xlf index 51fc682939c..c4f63937ee9 100644 --- a/src/Aspire.Cli/Resources/xlf/PublishCommandStrings.pt-BR.xlf +++ b/src/Aspire.Cli/Resources/xlf/PublishCommandStrings.pt-BR.xlf @@ -3,7 +3,7 @@ - Generate deployment artifacts for an apphost. (Preview) + Generate deployment artifacts for an apphost (Preview) Gera artefatos de implantação para um Aspire apphost. (Versão Prévia) @@ -18,8 +18,8 @@ - Do not build or restore the project before running. - Do not build or restore the project before running. + Do not build or restore the project before running + Do not build or restore the project before running @@ -34,12 +34,12 @@ The output path for the generated artifacts. Defaults to './aspire-output' if not specified. - O caminho de saída para os artefatos gerados. O padrão é './aspire-output' se não for especificado. + O caminho de saída para os artefatos gerados. O padrão é './aspire-output' se não for especificado. - The path to the Aspire AppHost project file. - O caminho para o arquivo de projeto do Aspire AppHost. + The path to the Aspire apphost project file + O caminho para o arquivo de projeto do Aspire AppHost. diff --git a/src/Aspire.Cli/Resources/xlf/PublishCommandStrings.ru.xlf b/src/Aspire.Cli/Resources/xlf/PublishCommandStrings.ru.xlf index 935bfc9abd0..3b6907a4187 100644 --- a/src/Aspire.Cli/Resources/xlf/PublishCommandStrings.ru.xlf +++ b/src/Aspire.Cli/Resources/xlf/PublishCommandStrings.ru.xlf @@ -3,7 +3,7 @@ - Generate deployment artifacts for an apphost. (Preview) + Generate deployment artifacts for an apphost (Preview) Генерирует артефакты развертывания для хоста приложений Aspire. (Предварительная версия) @@ -18,8 +18,8 @@ - Do not build or restore the project before running. - Do not build or restore the project before running. + Do not build or restore the project before running + Do not build or restore the project before running @@ -34,12 +34,12 @@ The output path for the generated artifacts. Defaults to './aspire-output' if not specified. - Путь вывода созданных артефактов. По умолчанию используется "./aspire-output", если не указано иное. + Путь вывода созданных артефактов. По умолчанию используется "./aspire-output", если не указано иное. - The path to the Aspire AppHost project file. - Путь к файлу проекта Aspire AppHost. + The path to the Aspire apphost project file + Путь к файлу проекта Aspire AppHost. diff --git a/src/Aspire.Cli/Resources/xlf/PublishCommandStrings.tr.xlf b/src/Aspire.Cli/Resources/xlf/PublishCommandStrings.tr.xlf index bd608b9872a..3ec9f60929d 100644 --- a/src/Aspire.Cli/Resources/xlf/PublishCommandStrings.tr.xlf +++ b/src/Aspire.Cli/Resources/xlf/PublishCommandStrings.tr.xlf @@ -3,7 +3,7 @@ - Generate deployment artifacts for an apphost. (Preview) + Generate deployment artifacts for an apphost (Preview) Bir Aspire AppHost için dağıtım yapıtları oluşturur. (Önizleme) @@ -18,8 +18,8 @@ - Do not build or restore the project before running. - Do not build or restore the project before running. + Do not build or restore the project before running + Do not build or restore the project before running @@ -34,12 +34,12 @@ The output path for the generated artifacts. Defaults to './aspire-output' if not specified. - Oluşturulan yapıtların çıkış yolu. Belirtilmezse varsayılan olarak './aspire-output' olur. + Oluşturulan yapıtların çıkış yolu. Belirtilmezse varsayılan olarak './aspire-output' olur. - The path to the Aspire AppHost project file. - Aspire AppHost proje dosyasının yolu. + The path to the Aspire apphost project file + Aspire AppHost proje dosyasının yolu. diff --git a/src/Aspire.Cli/Resources/xlf/PublishCommandStrings.zh-Hans.xlf b/src/Aspire.Cli/Resources/xlf/PublishCommandStrings.zh-Hans.xlf index abcfe03d3ae..028cfa20264 100644 --- a/src/Aspire.Cli/Resources/xlf/PublishCommandStrings.zh-Hans.xlf +++ b/src/Aspire.Cli/Resources/xlf/PublishCommandStrings.zh-Hans.xlf @@ -3,7 +3,7 @@ - Generate deployment artifacts for an apphost. (Preview) + Generate deployment artifacts for an apphost (Preview) 为 Aspire 应用主机生成部署项目。(预览版) @@ -18,8 +18,8 @@ - Do not build or restore the project before running. - Do not build or restore the project before running. + Do not build or restore the project before running + Do not build or restore the project before running @@ -34,12 +34,12 @@ The output path for the generated artifacts. Defaults to './aspire-output' if not specified. - 生成的项目的输出路径。如果未指定,则默认为"./aspire-output"。 + 生成的项目的输出路径。如果未指定,则默认为"./aspire-output"。 - The path to the Aspire AppHost project file. - Aspire AppHost 项目文件的路径。 + The path to the Aspire apphost project file + Aspire AppHost 项目文件的路径。 diff --git a/src/Aspire.Cli/Resources/xlf/PublishCommandStrings.zh-Hant.xlf b/src/Aspire.Cli/Resources/xlf/PublishCommandStrings.zh-Hant.xlf index a54c029594a..e7544e787c0 100644 --- a/src/Aspire.Cli/Resources/xlf/PublishCommandStrings.zh-Hant.xlf +++ b/src/Aspire.Cli/Resources/xlf/PublishCommandStrings.zh-Hant.xlf @@ -3,7 +3,7 @@ - Generate deployment artifacts for an apphost. (Preview) + Generate deployment artifacts for an apphost (Preview) 為 Aspire AppHost 產生部署成品。(預覽) @@ -18,8 +18,8 @@ - Do not build or restore the project before running. - Do not build or restore the project before running. + Do not build or restore the project before running + Do not build or restore the project before running @@ -34,12 +34,12 @@ The output path for the generated artifacts. Defaults to './aspire-output' if not specified. - 所產生之成品的輸出路徑。如果未指定,則預設為 './aspire-output'。 + 所產生之成品的輸出路徑。如果未指定,則預設為 './aspire-output'。 - The path to the Aspire AppHost project file. - Aspire AppHost 專案檔案的路徑。 + The path to the Aspire apphost project file + Aspire AppHost 專案檔案的路徑。 diff --git a/src/Aspire.Cli/Resources/xlf/ResourceCommandStrings.cs.xlf b/src/Aspire.Cli/Resources/xlf/ResourceCommandStrings.cs.xlf index a33d68d0fc9..22b9200dd98 100644 --- a/src/Aspire.Cli/Resources/xlf/ResourceCommandStrings.cs.xlf +++ b/src/Aspire.Cli/Resources/xlf/ResourceCommandStrings.cs.xlf @@ -3,18 +3,18 @@ - Execute a command on a resource (e.g. start, stop, restart). - Spusťte příkaz pro prostředek. + Execute a command on a resource (e.g. start, stop, restart) + Spusťte příkaz pro prostředek. - The name of the command to execute (e.g. start, stop, restart). - Název příkazu, který se má spustit + The name of the command to execute (e.g. start, stop, restart) + Název příkazu, který se má spustit - The name of the resource to execute the command on. - Název prostředku, na kterém se má příkaz provést + The name of the resource to execute the command on + Název prostředku, na kterém se má příkaz provést diff --git a/src/Aspire.Cli/Resources/xlf/ResourceCommandStrings.de.xlf b/src/Aspire.Cli/Resources/xlf/ResourceCommandStrings.de.xlf index f45a6f53b27..81338b42e58 100644 --- a/src/Aspire.Cli/Resources/xlf/ResourceCommandStrings.de.xlf +++ b/src/Aspire.Cli/Resources/xlf/ResourceCommandStrings.de.xlf @@ -3,18 +3,18 @@ - Execute a command on a resource (e.g. start, stop, restart). - Führen Sie einen Befehl auf einer Ressource aus. + Execute a command on a resource (e.g. start, stop, restart) + Führen Sie einen Befehl auf einer Ressource aus. - The name of the command to execute (e.g. start, stop, restart). - Der Name des auszuführenden Befehls. + The name of the command to execute (e.g. start, stop, restart) + Der Name des auszuführenden Befehls. - The name of the resource to execute the command on. - Der Name der Ressource, für die der Befehl ausgeführt werden soll. + The name of the resource to execute the command on + Der Name der Ressource, für die der Befehl ausgeführt werden soll. diff --git a/src/Aspire.Cli/Resources/xlf/ResourceCommandStrings.es.xlf b/src/Aspire.Cli/Resources/xlf/ResourceCommandStrings.es.xlf index 9dbb8134797..222f59c9548 100644 --- a/src/Aspire.Cli/Resources/xlf/ResourceCommandStrings.es.xlf +++ b/src/Aspire.Cli/Resources/xlf/ResourceCommandStrings.es.xlf @@ -3,18 +3,18 @@ - Execute a command on a resource (e.g. start, stop, restart). - Ejecute un comando en un recurso. + Execute a command on a resource (e.g. start, stop, restart) + Ejecute un comando en un recurso. - The name of the command to execute (e.g. start, stop, restart). - Nombre del comando que se va a ejecutar. + The name of the command to execute (e.g. start, stop, restart) + Nombre del comando que se va a ejecutar. - The name of the resource to execute the command on. - El nombre del recurso de destino en el que se ejecutará el comando. + The name of the resource to execute the command on + El nombre del recurso de destino en el que se ejecutará el comando. diff --git a/src/Aspire.Cli/Resources/xlf/ResourceCommandStrings.fr.xlf b/src/Aspire.Cli/Resources/xlf/ResourceCommandStrings.fr.xlf index 24a6d646115..e3b779ed40c 100644 --- a/src/Aspire.Cli/Resources/xlf/ResourceCommandStrings.fr.xlf +++ b/src/Aspire.Cli/Resources/xlf/ResourceCommandStrings.fr.xlf @@ -3,18 +3,18 @@ - Execute a command on a resource (e.g. start, stop, restart). - Exécuter une commande sur une ressource. + Execute a command on a resource (e.g. start, stop, restart) + Exécuter une commande sur une ressource. - The name of the command to execute (e.g. start, stop, restart). - Le nom de la commande à exécuter. + The name of the command to execute (e.g. start, stop, restart) + Le nom de la commande à exécuter. - The name of the resource to execute the command on. - Nom de la ressource sur laquelle exécuter la commande. + The name of the resource to execute the command on + Nom de la ressource sur laquelle exécuter la commande. diff --git a/src/Aspire.Cli/Resources/xlf/ResourceCommandStrings.it.xlf b/src/Aspire.Cli/Resources/xlf/ResourceCommandStrings.it.xlf index 607d2b38095..35f4d77ed48 100644 --- a/src/Aspire.Cli/Resources/xlf/ResourceCommandStrings.it.xlf +++ b/src/Aspire.Cli/Resources/xlf/ResourceCommandStrings.it.xlf @@ -3,18 +3,18 @@ - Execute a command on a resource (e.g. start, stop, restart). - Eseguire un comando su una risorsa. + Execute a command on a resource (e.g. start, stop, restart) + Eseguire un comando su una risorsa. - The name of the command to execute (e.g. start, stop, restart). - Nome del comando da eseguire. + The name of the command to execute (e.g. start, stop, restart) + Nome del comando da eseguire. - The name of the resource to execute the command on. - Nome della risorsa di destinazione rispetto al quale eseguire il comando. + The name of the resource to execute the command on + Nome della risorsa di destinazione rispetto al quale eseguire il comando. diff --git a/src/Aspire.Cli/Resources/xlf/ResourceCommandStrings.ja.xlf b/src/Aspire.Cli/Resources/xlf/ResourceCommandStrings.ja.xlf index 1911bb6937f..8b909c9c225 100644 --- a/src/Aspire.Cli/Resources/xlf/ResourceCommandStrings.ja.xlf +++ b/src/Aspire.Cli/Resources/xlf/ResourceCommandStrings.ja.xlf @@ -3,18 +3,18 @@ - Execute a command on a resource (e.g. start, stop, restart). - リソースでコマンドを実行します。 + Execute a command on a resource (e.g. start, stop, restart) + リソースでコマンドを実行します。 - The name of the command to execute (e.g. start, stop, restart). - 実行するコマンドの名前。 + The name of the command to execute (e.g. start, stop, restart) + 実行するコマンドの名前。 - The name of the resource to execute the command on. - コマンドを実行する対象のリソースの名前。 + The name of the resource to execute the command on + コマンドを実行する対象のリソースの名前。 diff --git a/src/Aspire.Cli/Resources/xlf/ResourceCommandStrings.ko.xlf b/src/Aspire.Cli/Resources/xlf/ResourceCommandStrings.ko.xlf index af92d629efd..3c0713815ea 100644 --- a/src/Aspire.Cli/Resources/xlf/ResourceCommandStrings.ko.xlf +++ b/src/Aspire.Cli/Resources/xlf/ResourceCommandStrings.ko.xlf @@ -3,18 +3,18 @@ - Execute a command on a resource (e.g. start, stop, restart). - 리소스에서 명령을 실행합니다. + Execute a command on a resource (e.g. start, stop, restart) + 리소스에서 명령을 실행합니다. - The name of the command to execute (e.g. start, stop, restart). - 실행할 명령의 이름입니다. + The name of the command to execute (e.g. start, stop, restart) + 실행할 명령의 이름입니다. - The name of the resource to execute the command on. - 명령을 실행할 대상 리소스의 이름입니다. + The name of the resource to execute the command on + 명령을 실행할 대상 리소스의 이름입니다. diff --git a/src/Aspire.Cli/Resources/xlf/ResourceCommandStrings.pl.xlf b/src/Aspire.Cli/Resources/xlf/ResourceCommandStrings.pl.xlf index 1e3f31ad1a4..87759be7ee0 100644 --- a/src/Aspire.Cli/Resources/xlf/ResourceCommandStrings.pl.xlf +++ b/src/Aspire.Cli/Resources/xlf/ResourceCommandStrings.pl.xlf @@ -3,18 +3,18 @@ - Execute a command on a resource (e.g. start, stop, restart). - Wykonaj polecenie dla zasobu. + Execute a command on a resource (e.g. start, stop, restart) + Wykonaj polecenie dla zasobu. - The name of the command to execute (e.g. start, stop, restart). - Nazwa polecenia do wykonania. + The name of the command to execute (e.g. start, stop, restart) + Nazwa polecenia do wykonania. - The name of the resource to execute the command on. - Nazwa zasobu, na którym ma zostać wykonane polecenie. + The name of the resource to execute the command on + Nazwa zasobu, na którym ma zostać wykonane polecenie. diff --git a/src/Aspire.Cli/Resources/xlf/ResourceCommandStrings.pt-BR.xlf b/src/Aspire.Cli/Resources/xlf/ResourceCommandStrings.pt-BR.xlf index 07914dd8374..4b9d8511679 100644 --- a/src/Aspire.Cli/Resources/xlf/ResourceCommandStrings.pt-BR.xlf +++ b/src/Aspire.Cli/Resources/xlf/ResourceCommandStrings.pt-BR.xlf @@ -3,18 +3,18 @@ - Execute a command on a resource (e.g. start, stop, restart). - Execute um comando em um recurso. + Execute a command on a resource (e.g. start, stop, restart) + Execute um comando em um recurso. - The name of the command to execute (e.g. start, stop, restart). - O nome do comando a ser executado. + The name of the command to execute (e.g. start, stop, restart) + O nome do comando a ser executado. - The name of the resource to execute the command on. - O nome do recurso no qual executar o comando. + The name of the resource to execute the command on + O nome do recurso no qual executar o comando. diff --git a/src/Aspire.Cli/Resources/xlf/ResourceCommandStrings.ru.xlf b/src/Aspire.Cli/Resources/xlf/ResourceCommandStrings.ru.xlf index a99fdf50ddb..a1567ead3ef 100644 --- a/src/Aspire.Cli/Resources/xlf/ResourceCommandStrings.ru.xlf +++ b/src/Aspire.Cli/Resources/xlf/ResourceCommandStrings.ru.xlf @@ -3,18 +3,18 @@ - Execute a command on a resource (e.g. start, stop, restart). - Выполнить команду на ресурсе. + Execute a command on a resource (e.g. start, stop, restart) + Выполнить команду на ресурсе. - The name of the command to execute (e.g. start, stop, restart). - Имя команды, которую нужно выполнить. + The name of the command to execute (e.g. start, stop, restart) + Имя команды, которую нужно выполнить. - The name of the resource to execute the command on. - Имя целевого ресурса, на котором будет выполняться команда. + The name of the resource to execute the command on + Имя целевого ресурса, на котором будет выполняться команда. diff --git a/src/Aspire.Cli/Resources/xlf/ResourceCommandStrings.tr.xlf b/src/Aspire.Cli/Resources/xlf/ResourceCommandStrings.tr.xlf index 16f5c3f7898..43f084abcc6 100644 --- a/src/Aspire.Cli/Resources/xlf/ResourceCommandStrings.tr.xlf +++ b/src/Aspire.Cli/Resources/xlf/ResourceCommandStrings.tr.xlf @@ -3,18 +3,18 @@ - Execute a command on a resource (e.g. start, stop, restart). - Bir kaynak üzerinde bir komut çalıştırın. + Execute a command on a resource (e.g. start, stop, restart) + Bir kaynak üzerinde bir komut çalıştırın. - The name of the command to execute (e.g. start, stop, restart). - Yürütülecek komutun adı. + The name of the command to execute (e.g. start, stop, restart) + Yürütülecek komutun adı. - The name of the resource to execute the command on. - Komutu yürütecek kaynağın adı. + The name of the resource to execute the command on + Komutu yürütecek kaynağın adı. diff --git a/src/Aspire.Cli/Resources/xlf/ResourceCommandStrings.zh-Hans.xlf b/src/Aspire.Cli/Resources/xlf/ResourceCommandStrings.zh-Hans.xlf index c70a3525732..32bfda21ef0 100644 --- a/src/Aspire.Cli/Resources/xlf/ResourceCommandStrings.zh-Hans.xlf +++ b/src/Aspire.Cli/Resources/xlf/ResourceCommandStrings.zh-Hans.xlf @@ -3,18 +3,18 @@ - Execute a command on a resource (e.g. start, stop, restart). - 在资源上执行命令。 + Execute a command on a resource (e.g. start, stop, restart) + 在资源上执行命令。 - The name of the command to execute (e.g. start, stop, restart). - 要执行的命令的名称。 + The name of the command to execute (e.g. start, stop, restart) + 要执行的命令的名称。 - The name of the resource to execute the command on. - 要在其上执行命令的资源的名称。 + The name of the resource to execute the command on + 要在其上执行命令的资源的名称。 diff --git a/src/Aspire.Cli/Resources/xlf/ResourceCommandStrings.zh-Hant.xlf b/src/Aspire.Cli/Resources/xlf/ResourceCommandStrings.zh-Hant.xlf index 5b7ad66f13e..0b18f30636b 100644 --- a/src/Aspire.Cli/Resources/xlf/ResourceCommandStrings.zh-Hant.xlf +++ b/src/Aspire.Cli/Resources/xlf/ResourceCommandStrings.zh-Hant.xlf @@ -3,18 +3,18 @@ - Execute a command on a resource (e.g. start, stop, restart). - 在資源上執行命令。 + Execute a command on a resource (e.g. start, stop, restart) + 在資源上執行命令。 - The name of the command to execute (e.g. start, stop, restart). - 所要執行命令的名稱。 + The name of the command to execute (e.g. start, stop, restart) + 所要執行命令的名稱。 - The name of the resource to execute the command on. - 要執行命令的資源名稱。 + The name of the resource to execute the command on + 要執行命令的資源名稱。 diff --git a/src/Aspire.Cli/Resources/xlf/RestoreCommandStrings.cs.xlf b/src/Aspire.Cli/Resources/xlf/RestoreCommandStrings.cs.xlf index 120a100f727..4045355d78f 100644 --- a/src/Aspire.Cli/Resources/xlf/RestoreCommandStrings.cs.xlf +++ b/src/Aspire.Cli/Resources/xlf/RestoreCommandStrings.cs.xlf @@ -3,8 +3,8 @@ - Restore dependencies and generate SDK code for an AppHost project. - Restore dependencies and generate SDK code for an AppHost project. + Restore dependencies and generate SDK code for an apphost + Restore dependencies and generate SDK code for an apphost diff --git a/src/Aspire.Cli/Resources/xlf/RestoreCommandStrings.de.xlf b/src/Aspire.Cli/Resources/xlf/RestoreCommandStrings.de.xlf index 17145606837..62986d9c865 100644 --- a/src/Aspire.Cli/Resources/xlf/RestoreCommandStrings.de.xlf +++ b/src/Aspire.Cli/Resources/xlf/RestoreCommandStrings.de.xlf @@ -3,8 +3,8 @@ - Restore dependencies and generate SDK code for an AppHost project. - Restore dependencies and generate SDK code for an AppHost project. + Restore dependencies and generate SDK code for an apphost + Restore dependencies and generate SDK code for an apphost diff --git a/src/Aspire.Cli/Resources/xlf/RestoreCommandStrings.es.xlf b/src/Aspire.Cli/Resources/xlf/RestoreCommandStrings.es.xlf index 4018305faa8..3964a6e9ce9 100644 --- a/src/Aspire.Cli/Resources/xlf/RestoreCommandStrings.es.xlf +++ b/src/Aspire.Cli/Resources/xlf/RestoreCommandStrings.es.xlf @@ -3,8 +3,8 @@ - Restore dependencies and generate SDK code for an AppHost project. - Restore dependencies and generate SDK code for an AppHost project. + Restore dependencies and generate SDK code for an apphost + Restore dependencies and generate SDK code for an apphost diff --git a/src/Aspire.Cli/Resources/xlf/RestoreCommandStrings.fr.xlf b/src/Aspire.Cli/Resources/xlf/RestoreCommandStrings.fr.xlf index 007115fe602..d2151735d6e 100644 --- a/src/Aspire.Cli/Resources/xlf/RestoreCommandStrings.fr.xlf +++ b/src/Aspire.Cli/Resources/xlf/RestoreCommandStrings.fr.xlf @@ -3,8 +3,8 @@ - Restore dependencies and generate SDK code for an AppHost project. - Restore dependencies and generate SDK code for an AppHost project. + Restore dependencies and generate SDK code for an apphost + Restore dependencies and generate SDK code for an apphost diff --git a/src/Aspire.Cli/Resources/xlf/RestoreCommandStrings.it.xlf b/src/Aspire.Cli/Resources/xlf/RestoreCommandStrings.it.xlf index fc15476cdcd..82d4cc6a023 100644 --- a/src/Aspire.Cli/Resources/xlf/RestoreCommandStrings.it.xlf +++ b/src/Aspire.Cli/Resources/xlf/RestoreCommandStrings.it.xlf @@ -3,8 +3,8 @@ - Restore dependencies and generate SDK code for an AppHost project. - Restore dependencies and generate SDK code for an AppHost project. + Restore dependencies and generate SDK code for an apphost + Restore dependencies and generate SDK code for an apphost diff --git a/src/Aspire.Cli/Resources/xlf/RestoreCommandStrings.ja.xlf b/src/Aspire.Cli/Resources/xlf/RestoreCommandStrings.ja.xlf index 2dd72c7e06b..e56cfc0d31f 100644 --- a/src/Aspire.Cli/Resources/xlf/RestoreCommandStrings.ja.xlf +++ b/src/Aspire.Cli/Resources/xlf/RestoreCommandStrings.ja.xlf @@ -3,8 +3,8 @@ - Restore dependencies and generate SDK code for an AppHost project. - Restore dependencies and generate SDK code for an AppHost project. + Restore dependencies and generate SDK code for an apphost + Restore dependencies and generate SDK code for an apphost diff --git a/src/Aspire.Cli/Resources/xlf/RestoreCommandStrings.ko.xlf b/src/Aspire.Cli/Resources/xlf/RestoreCommandStrings.ko.xlf index b71546dcb6c..6d766fe8eb2 100644 --- a/src/Aspire.Cli/Resources/xlf/RestoreCommandStrings.ko.xlf +++ b/src/Aspire.Cli/Resources/xlf/RestoreCommandStrings.ko.xlf @@ -3,8 +3,8 @@ - Restore dependencies and generate SDK code for an AppHost project. - Restore dependencies and generate SDK code for an AppHost project. + Restore dependencies and generate SDK code for an apphost + Restore dependencies and generate SDK code for an apphost diff --git a/src/Aspire.Cli/Resources/xlf/RestoreCommandStrings.pl.xlf b/src/Aspire.Cli/Resources/xlf/RestoreCommandStrings.pl.xlf index e9c13d36f79..c8c5bfe1173 100644 --- a/src/Aspire.Cli/Resources/xlf/RestoreCommandStrings.pl.xlf +++ b/src/Aspire.Cli/Resources/xlf/RestoreCommandStrings.pl.xlf @@ -3,8 +3,8 @@ - Restore dependencies and generate SDK code for an AppHost project. - Restore dependencies and generate SDK code for an AppHost project. + Restore dependencies and generate SDK code for an apphost + Restore dependencies and generate SDK code for an apphost diff --git a/src/Aspire.Cli/Resources/xlf/RestoreCommandStrings.pt-BR.xlf b/src/Aspire.Cli/Resources/xlf/RestoreCommandStrings.pt-BR.xlf index ae65086d5ac..16290845ec3 100644 --- a/src/Aspire.Cli/Resources/xlf/RestoreCommandStrings.pt-BR.xlf +++ b/src/Aspire.Cli/Resources/xlf/RestoreCommandStrings.pt-BR.xlf @@ -3,8 +3,8 @@ - Restore dependencies and generate SDK code for an AppHost project. - Restore dependencies and generate SDK code for an AppHost project. + Restore dependencies and generate SDK code for an apphost + Restore dependencies and generate SDK code for an apphost diff --git a/src/Aspire.Cli/Resources/xlf/RestoreCommandStrings.ru.xlf b/src/Aspire.Cli/Resources/xlf/RestoreCommandStrings.ru.xlf index 3b51b8a7714..0ef2cdf7d8e 100644 --- a/src/Aspire.Cli/Resources/xlf/RestoreCommandStrings.ru.xlf +++ b/src/Aspire.Cli/Resources/xlf/RestoreCommandStrings.ru.xlf @@ -3,8 +3,8 @@ - Restore dependencies and generate SDK code for an AppHost project. - Restore dependencies and generate SDK code for an AppHost project. + Restore dependencies and generate SDK code for an apphost + Restore dependencies and generate SDK code for an apphost diff --git a/src/Aspire.Cli/Resources/xlf/RestoreCommandStrings.tr.xlf b/src/Aspire.Cli/Resources/xlf/RestoreCommandStrings.tr.xlf index 861b1438d43..0af515e4253 100644 --- a/src/Aspire.Cli/Resources/xlf/RestoreCommandStrings.tr.xlf +++ b/src/Aspire.Cli/Resources/xlf/RestoreCommandStrings.tr.xlf @@ -3,8 +3,8 @@ - Restore dependencies and generate SDK code for an AppHost project. - Restore dependencies and generate SDK code for an AppHost project. + Restore dependencies and generate SDK code for an apphost + Restore dependencies and generate SDK code for an apphost diff --git a/src/Aspire.Cli/Resources/xlf/RestoreCommandStrings.zh-Hans.xlf b/src/Aspire.Cli/Resources/xlf/RestoreCommandStrings.zh-Hans.xlf index 3b733690823..0cdebf87411 100644 --- a/src/Aspire.Cli/Resources/xlf/RestoreCommandStrings.zh-Hans.xlf +++ b/src/Aspire.Cli/Resources/xlf/RestoreCommandStrings.zh-Hans.xlf @@ -3,8 +3,8 @@ - Restore dependencies and generate SDK code for an AppHost project. - Restore dependencies and generate SDK code for an AppHost project. + Restore dependencies and generate SDK code for an apphost + Restore dependencies and generate SDK code for an apphost diff --git a/src/Aspire.Cli/Resources/xlf/RestoreCommandStrings.zh-Hant.xlf b/src/Aspire.Cli/Resources/xlf/RestoreCommandStrings.zh-Hant.xlf index e330b675244..7455d2af0c4 100644 --- a/src/Aspire.Cli/Resources/xlf/RestoreCommandStrings.zh-Hant.xlf +++ b/src/Aspire.Cli/Resources/xlf/RestoreCommandStrings.zh-Hant.xlf @@ -3,8 +3,8 @@ - Restore dependencies and generate SDK code for an AppHost project. - Restore dependencies and generate SDK code for an AppHost project. + Restore dependencies and generate SDK code for an apphost + Restore dependencies and generate SDK code for an apphost diff --git a/src/Aspire.Cli/Resources/xlf/RootCommandStrings.cs.xlf b/src/Aspire.Cli/Resources/xlf/RootCommandStrings.cs.xlf index b7e6a477ec6..b740151c542 100644 --- a/src/Aspire.Cli/Resources/xlf/RootCommandStrings.cs.xlf +++ b/src/Aspire.Cli/Resources/xlf/RootCommandStrings.cs.xlf @@ -3,8 +3,8 @@ - Display the animated Aspire CLI welcome banner. - Umožňuje zobrazit animovaný úvodní banner rozhraní příkazového řádku Aspire. + Display the animated Aspire CLI welcome banner + Umožňuje zobrazit animovaný úvodní banner rozhraní příkazového řádku Aspire. @@ -18,23 +18,23 @@ - Wait for a debugger to attach before executing the command. - Před provedením příkazu počkejte na připojení ladicího programu. + Wait for a debugger to attach before executing the command + Před provedením příkazu počkejte na připojení ladicího programu. - Enable debug logging to the console. - Povolte protokolování ladění do konzoly. + Enable debug logging to the console + Povolte protokolování ladění do konzoly. - Set the minimum log level for console output (Trace, Debug, Information, Warning, Error, Critical). - Set the minimum log level for console output (Trace, Debug, Information, Warning, Error, Critical). + Set the minimum log level for console output (Trace, Debug, Information, Warning, Error, Critical) + Set the minimum log level for console output (Trace, Debug, Information, Warning, Error, Critical) - The Aspire CLI can be used to create, run, and publish Aspire-based applications. - Aspire CLI lze použít k vytváření, spouštění a publikování aplikací založených na Aspire. + The Aspire CLI can be used to create, run, and publish Aspire-based applications + Aspire CLI lze použít k vytváření, spouštění a publikování aplikací založených na Aspire. @@ -58,18 +58,18 @@ Další informace o telemetrii rozhraní příkazového řádku Aspire: https:// - Suppress the startup banner and telemetry notice. - Umožňuje potlačit banner spuštění a oznámení o telemetrii. + Suppress the startup banner and telemetry notice + Umožňuje potlačit banner spuštění a oznámení o telemetrii. - Run the command in non-interactive mode, disabling all interactive prompts and spinners. - Run the command in non-interactive mode, disabling all interactive prompts and spinners. + Run the command in non-interactive mode, disabling all interactive prompts and spinners + Run the command in non-interactive mode, disabling all interactive prompts and spinners - Wait for a debugger to attach before executing the command. - Před provedením příkazu počkejte na připojení ladicího programu. + Wait for a debugger to attach before executing the command + Před provedením příkazu počkejte na připojení ladicího programu. @@ -79,4 +79,4 @@ Další informace o telemetrii rozhraní příkazového řádku Aspire: https:// - + \ No newline at end of file diff --git a/src/Aspire.Cli/Resources/xlf/RootCommandStrings.de.xlf b/src/Aspire.Cli/Resources/xlf/RootCommandStrings.de.xlf index 92fe9053e6e..4b0c12dd55c 100644 --- a/src/Aspire.Cli/Resources/xlf/RootCommandStrings.de.xlf +++ b/src/Aspire.Cli/Resources/xlf/RootCommandStrings.de.xlf @@ -3,8 +3,8 @@ - Display the animated Aspire CLI welcome banner. - Zeigen Sie das animierte Willkommensbanner der Aspire-CLI an. + Display the animated Aspire CLI welcome banner + Zeigen Sie das animierte Willkommensbanner der Aspire-CLI an. @@ -18,23 +18,23 @@ - Wait for a debugger to attach before executing the command. - Warten Sie, bis ein Debugger angefügt wurde, bevor Sie den Befehl ausführen. + Wait for a debugger to attach before executing the command + Warten Sie, bis ein Debugger angefügt wurde, bevor Sie den Befehl ausführen. - Enable debug logging to the console. - Aktivieren Sie die Debugprotokollierung in der Konsole. + Enable debug logging to the console + Aktivieren Sie die Debugprotokollierung in der Konsole. - Set the minimum log level for console output (Trace, Debug, Information, Warning, Error, Critical). - Set the minimum log level for console output (Trace, Debug, Information, Warning, Error, Critical). + Set the minimum log level for console output (Trace, Debug, Information, Warning, Error, Critical) + Set the minimum log level for console output (Trace, Debug, Information, Warning, Error, Critical) - The Aspire CLI can be used to create, run, and publish Aspire-based applications. - Die Aspire CLI kann zum Erstellen, Ausführen und Veröffentlichen von Aspire-basierten Anwendungen verwendet werden. + The Aspire CLI can be used to create, run, and publish Aspire-based applications + Die Aspire CLI kann zum Erstellen, Ausführen und Veröffentlichen von Aspire-basierten Anwendungen verwendet werden. @@ -58,18 +58,18 @@ Weitere Informationen zur Aspire-CLI-Telemetrie finden Sie unter: https://aka.ms - Suppress the startup banner and telemetry notice. - Unterdrücken Sie das Startupbanner und den Telemetriehinweis. + Suppress the startup banner and telemetry notice + Unterdrücken Sie das Startupbanner und den Telemetriehinweis. - Run the command in non-interactive mode, disabling all interactive prompts and spinners. - Run the command in non-interactive mode, disabling all interactive prompts and spinners. + Run the command in non-interactive mode, disabling all interactive prompts and spinners + Run the command in non-interactive mode, disabling all interactive prompts and spinners - Wait for a debugger to attach before executing the command. - Warten Sie, bis ein Debugger angefügt wurde, bevor Sie den Befehl ausführen. + Wait for a debugger to attach before executing the command + Warten Sie, bis ein Debugger angefügt wurde, bevor Sie den Befehl ausführen. @@ -79,4 +79,4 @@ Weitere Informationen zur Aspire-CLI-Telemetrie finden Sie unter: https://aka.ms - + \ No newline at end of file diff --git a/src/Aspire.Cli/Resources/xlf/RootCommandStrings.es.xlf b/src/Aspire.Cli/Resources/xlf/RootCommandStrings.es.xlf index 4e6d4ee75aa..ffb044aabb1 100644 --- a/src/Aspire.Cli/Resources/xlf/RootCommandStrings.es.xlf +++ b/src/Aspire.Cli/Resources/xlf/RootCommandStrings.es.xlf @@ -3,8 +3,8 @@ - Display the animated Aspire CLI welcome banner. - Muestra el banner de bienvenida animado de la CLI de Aspire. + Display the animated Aspire CLI welcome banner + Muestra el banner de bienvenida animado de la CLI de Aspire. @@ -18,23 +18,23 @@ - Wait for a debugger to attach before executing the command. - Espere a que se asocie un depurador antes de ejecutar el comando. + Wait for a debugger to attach before executing the command + Espere a que se asocie un depurador antes de ejecutar el comando. - Enable debug logging to the console. - Habilite el registro de depuración en la consola. + Enable debug logging to the console + Habilite el registro de depuración en la consola. - Set the minimum log level for console output (Trace, Debug, Information, Warning, Error, Critical). - Set the minimum log level for console output (Trace, Debug, Information, Warning, Error, Critical). + Set the minimum log level for console output (Trace, Debug, Information, Warning, Error, Critical) + Set the minimum log level for console output (Trace, Debug, Information, Warning, Error, Critical) - The Aspire CLI can be used to create, run, and publish Aspire-based applications. - La CLI de Aspire puede utilizarse para crear, ejecutar y publicar aplicaciones basadas en Aspire. + The Aspire CLI can be used to create, run, and publish Aspire-based applications + La CLI de Aspire puede utilizarse para crear, ejecutar y publicar aplicaciones basadas en Aspire. @@ -58,18 +58,18 @@ Más información acerca de la telemetría de la CLI de Aspire: https://aka.ms/a - Suppress the startup banner and telemetry notice. - Suprima el banner de inicio y el aviso de telemetría. + Suppress the startup banner and telemetry notice + Suprima el banner de inicio y el aviso de telemetría. - Run the command in non-interactive mode, disabling all interactive prompts and spinners. - Run the command in non-interactive mode, disabling all interactive prompts and spinners. + Run the command in non-interactive mode, disabling all interactive prompts and spinners + Run the command in non-interactive mode, disabling all interactive prompts and spinners - Wait for a debugger to attach before executing the command. - Espere a que se asocie un depurador antes de ejecutar el comando. + Wait for a debugger to attach before executing the command + Espere a que se asocie un depurador antes de ejecutar el comando. @@ -79,4 +79,4 @@ Más información acerca de la telemetría de la CLI de Aspire: https://aka.ms/a - + \ No newline at end of file diff --git a/src/Aspire.Cli/Resources/xlf/RootCommandStrings.fr.xlf b/src/Aspire.Cli/Resources/xlf/RootCommandStrings.fr.xlf index a75a9a347e1..171f0b19dfe 100644 --- a/src/Aspire.Cli/Resources/xlf/RootCommandStrings.fr.xlf +++ b/src/Aspire.Cli/Resources/xlf/RootCommandStrings.fr.xlf @@ -3,8 +3,8 @@ - Display the animated Aspire CLI welcome banner. - Afficher la bannière d’accueil animée Aspire CLI. + Display the animated Aspire CLI welcome banner + Afficher la bannière d’accueil animée Aspire CLI. @@ -18,23 +18,23 @@ - Wait for a debugger to attach before executing the command. - Attendez qu’un débogueur s’attache avant d’exécuter la commande. + Wait for a debugger to attach before executing the command + Attendez qu’un débogueur s’attache avant d’exécuter la commande. - Enable debug logging to the console. - Activez la journalisation de débogage dans la console. + Enable debug logging to the console + Activez la journalisation de débogage dans la console. - Set the minimum log level for console output (Trace, Debug, Information, Warning, Error, Critical). - Set the minimum log level for console output (Trace, Debug, Information, Warning, Error, Critical). + Set the minimum log level for console output (Trace, Debug, Information, Warning, Error, Critical) + Set the minimum log level for console output (Trace, Debug, Information, Warning, Error, Critical) - The Aspire CLI can be used to create, run, and publish Aspire-based applications. - L’interface CLI Aspire peut être utilisée pour créer, exécuter et publier des applications basées sur Aspire. + The Aspire CLI can be used to create, run, and publish Aspire-based applications + L’interface CLI Aspire peut être utilisée pour créer, exécuter et publier des applications basées sur Aspire. @@ -58,18 +58,18 @@ En savoir plus sur la télémétrie de l’interface CLI Aspire : https://aka.m - Suppress the startup banner and telemetry notice. - Supprimer la bannière de démarrage et la notification de télémétrie. + Suppress the startup banner and telemetry notice + Supprimer la bannière de démarrage et la notification de télémétrie. - Run the command in non-interactive mode, disabling all interactive prompts and spinners. - Run the command in non-interactive mode, disabling all interactive prompts and spinners. + Run the command in non-interactive mode, disabling all interactive prompts and spinners + Run the command in non-interactive mode, disabling all interactive prompts and spinners - Wait for a debugger to attach before executing the command. - Attendez qu’un débogueur s’attache avant d’exécuter la commande. + Wait for a debugger to attach before executing the command + Attendez qu’un débogueur s’attache avant d’exécuter la commande. @@ -79,4 +79,4 @@ En savoir plus sur la télémétrie de l’interface CLI Aspire : https://aka.m - + \ No newline at end of file diff --git a/src/Aspire.Cli/Resources/xlf/RootCommandStrings.it.xlf b/src/Aspire.Cli/Resources/xlf/RootCommandStrings.it.xlf index a5f5a92a8c4..4de56e578aa 100644 --- a/src/Aspire.Cli/Resources/xlf/RootCommandStrings.it.xlf +++ b/src/Aspire.Cli/Resources/xlf/RootCommandStrings.it.xlf @@ -3,8 +3,8 @@ - Display the animated Aspire CLI welcome banner. - Visualizzare il banner di benvenuto animato dell'interfaccia della riga di comando di Aspire. + Display the animated Aspire CLI welcome banner + Visualizzare il banner di benvenuto animato dell'interfaccia della riga di comando di Aspire. @@ -18,23 +18,23 @@ - Wait for a debugger to attach before executing the command. - Attendi che un debugger si connetta prima di eseguire il comando. + Wait for a debugger to attach before executing the command + Attendi che un debugger si connetta prima di eseguire il comando. - Enable debug logging to the console. - Abilita la registrazione di debug nella console. + Enable debug logging to the console + Abilita la registrazione di debug nella console. - Set the minimum log level for console output (Trace, Debug, Information, Warning, Error, Critical). - Set the minimum log level for console output (Trace, Debug, Information, Warning, Error, Critical). + Set the minimum log level for console output (Trace, Debug, Information, Warning, Error, Critical) + Set the minimum log level for console output (Trace, Debug, Information, Warning, Error, Critical) - The Aspire CLI can be used to create, run, and publish Aspire-based applications. - L'interfaccia della riga di comando Aspire può essere usata per creare, eseguire e pubblicare applicazioni basate su Aspire. + The Aspire CLI can be used to create, run, and publish Aspire-based applications + L'interfaccia della riga di comando Aspire può essere usata per creare, eseguire e pubblicare applicazioni basate su Aspire. @@ -58,18 +58,18 @@ Altre informazioni sui dati di telemetria dell'interfaccia della riga di comando - Suppress the startup banner and telemetry notice. - Consente di disabilitare il banner di avvio e l'avviso di telemetria. + Suppress the startup banner and telemetry notice + Consente di disabilitare il banner di avvio e l'avviso di telemetria. - Run the command in non-interactive mode, disabling all interactive prompts and spinners. - Run the command in non-interactive mode, disabling all interactive prompts and spinners. + Run the command in non-interactive mode, disabling all interactive prompts and spinners + Run the command in non-interactive mode, disabling all interactive prompts and spinners - Wait for a debugger to attach before executing the command. - Attendi che un debugger si connetta prima di eseguire il comando. + Wait for a debugger to attach before executing the command + Attendi che un debugger si connetta prima di eseguire il comando. @@ -79,4 +79,4 @@ Altre informazioni sui dati di telemetria dell'interfaccia della riga di comando - + \ No newline at end of file diff --git a/src/Aspire.Cli/Resources/xlf/RootCommandStrings.ja.xlf b/src/Aspire.Cli/Resources/xlf/RootCommandStrings.ja.xlf index 9b382e95f2c..f6ae6fc7a54 100644 --- a/src/Aspire.Cli/Resources/xlf/RootCommandStrings.ja.xlf +++ b/src/Aspire.Cli/Resources/xlf/RootCommandStrings.ja.xlf @@ -3,8 +3,8 @@ - Display the animated Aspire CLI welcome banner. - アニメーション化された Aspire CLI のウェルカム バナーを表示します。 + Display the animated Aspire CLI welcome banner + アニメーション化された Aspire CLI のウェルカム バナーを表示します。 @@ -18,23 +18,23 @@ - Wait for a debugger to attach before executing the command. - デバッガーがアタッチされるまで待ってから、コマンドを実行します。 + Wait for a debugger to attach before executing the command + デバッガーがアタッチされるまで待ってから、コマンドを実行します。 - Enable debug logging to the console. - コンソールへのデバッグ ログを有効にします。 + Enable debug logging to the console + コンソールへのデバッグ ログを有効にします。 - Set the minimum log level for console output (Trace, Debug, Information, Warning, Error, Critical). - Set the minimum log level for console output (Trace, Debug, Information, Warning, Error, Critical). + Set the minimum log level for console output (Trace, Debug, Information, Warning, Error, Critical) + Set the minimum log level for console output (Trace, Debug, Information, Warning, Error, Critical) - The Aspire CLI can be used to create, run, and publish Aspire-based applications. - Aspire CLI を使用して、Aspire ベースのアプリケーションを作成、実行、発行できます。 + The Aspire CLI can be used to create, run, and publish Aspire-based applications + Aspire CLI を使用して、Aspire ベースのアプリケーションを作成、実行、発行できます。 @@ -58,18 +58,18 @@ Aspire CLI テレメトリの詳細情報: https://aka.ms/aspire/cli-telemetry - Suppress the startup banner and telemetry notice. - スタートアップ バナーとテレメトリ通知を非表示にします。 + Suppress the startup banner and telemetry notice + スタートアップ バナーとテレメトリ通知を非表示にします。 - Run the command in non-interactive mode, disabling all interactive prompts and spinners. - Run the command in non-interactive mode, disabling all interactive prompts and spinners. + Run the command in non-interactive mode, disabling all interactive prompts and spinners + Run the command in non-interactive mode, disabling all interactive prompts and spinners - Wait for a debugger to attach before executing the command. - デバッガーがアタッチされるまで待ってから、コマンドを実行します。 + Wait for a debugger to attach before executing the command + デバッガーがアタッチされるまで待ってから、コマンドを実行します。 @@ -79,4 +79,4 @@ Aspire CLI テレメトリの詳細情報: https://aka.ms/aspire/cli-telemetry - + \ No newline at end of file diff --git a/src/Aspire.Cli/Resources/xlf/RootCommandStrings.ko.xlf b/src/Aspire.Cli/Resources/xlf/RootCommandStrings.ko.xlf index a4f3545f015..4c1317ec234 100644 --- a/src/Aspire.Cli/Resources/xlf/RootCommandStrings.ko.xlf +++ b/src/Aspire.Cli/Resources/xlf/RootCommandStrings.ko.xlf @@ -3,8 +3,8 @@ - Display the animated Aspire CLI welcome banner. - 애니메이션 Aspire CLI 환영 배너를 표시합니다. + Display the animated Aspire CLI welcome banner + 애니메이션 Aspire CLI 환영 배너를 표시합니다. @@ -18,23 +18,23 @@ - Wait for a debugger to attach before executing the command. - 명령을 실행하기 전에 디버거가 연결되기를 기다리세요. + Wait for a debugger to attach before executing the command + 명령을 실행하기 전에 디버거가 연결되기를 기다리세요. - Enable debug logging to the console. - 콘솔에 디버그 로깅을 활성화하세요. + Enable debug logging to the console + 콘솔에 디버그 로깅을 활성화하세요. - Set the minimum log level for console output (Trace, Debug, Information, Warning, Error, Critical). - Set the minimum log level for console output (Trace, Debug, Information, Warning, Error, Critical). + Set the minimum log level for console output (Trace, Debug, Information, Warning, Error, Critical) + Set the minimum log level for console output (Trace, Debug, Information, Warning, Error, Critical) - The Aspire CLI can be used to create, run, and publish Aspire-based applications. - Aspire CLI를 사용하여 Aspire 기반 애플리케이션을 만들고, 실행하고, 게시할 수 있습니다. + The Aspire CLI can be used to create, run, and publish Aspire-based applications + Aspire CLI를 사용하여 Aspire 기반 애플리케이션을 만들고, 실행하고, 게시할 수 있습니다. @@ -58,18 +58,18 @@ Aspire CLI 원격 분석에 대해 자세히 알아보기: https://aka.ms/aspire - Suppress the startup banner and telemetry notice. - 시작 배너 및 원격 분석 알림을 표시하지 않습니다. + Suppress the startup banner and telemetry notice + 시작 배너 및 원격 분석 알림을 표시하지 않습니다. - Run the command in non-interactive mode, disabling all interactive prompts and spinners. - Run the command in non-interactive mode, disabling all interactive prompts and spinners. + Run the command in non-interactive mode, disabling all interactive prompts and spinners + Run the command in non-interactive mode, disabling all interactive prompts and spinners - Wait for a debugger to attach before executing the command. - 명령을 실행하기 전에 디버거가 연결되기를 기다리세요. + Wait for a debugger to attach before executing the command + 명령을 실행하기 전에 디버거가 연결되기를 기다리세요. @@ -79,4 +79,4 @@ Aspire CLI 원격 분석에 대해 자세히 알아보기: https://aka.ms/aspire - + \ No newline at end of file diff --git a/src/Aspire.Cli/Resources/xlf/RootCommandStrings.pl.xlf b/src/Aspire.Cli/Resources/xlf/RootCommandStrings.pl.xlf index 0ee9545e085..1ddabe72313 100644 --- a/src/Aspire.Cli/Resources/xlf/RootCommandStrings.pl.xlf +++ b/src/Aspire.Cli/Resources/xlf/RootCommandStrings.pl.xlf @@ -3,8 +3,8 @@ - Display the animated Aspire CLI welcome banner. - Wyświetl animowany baner powitalny interfejsu wiersza polecenia aplikacji Aspire. + Display the animated Aspire CLI welcome banner + Wyświetl animowany baner powitalny interfejsu wiersza polecenia aplikacji Aspire. @@ -18,23 +18,23 @@ - Wait for a debugger to attach before executing the command. - Przed wykonaniem polecenia poczekaj na dołączenie debugera. + Wait for a debugger to attach before executing the command + Przed wykonaniem polecenia poczekaj na dołączenie debugera. - Enable debug logging to the console. - Włącz rejestrowanie debugowania w konsoli. + Enable debug logging to the console + Włącz rejestrowanie debugowania w konsoli. - Set the minimum log level for console output (Trace, Debug, Information, Warning, Error, Critical). - Set the minimum log level for console output (Trace, Debug, Information, Warning, Error, Critical). + Set the minimum log level for console output (Trace, Debug, Information, Warning, Error, Critical) + Set the minimum log level for console output (Trace, Debug, Information, Warning, Error, Critical) - The Aspire CLI can be used to create, run, and publish Aspire-based applications. - Interfejs wiersza polecenia platformy Aspire może służyć do tworzenia, uruchamiania i publikowania aplikacji opartych na platformie Aspire. + The Aspire CLI can be used to create, run, and publish Aspire-based applications + Interfejs wiersza polecenia platformy Aspire może służyć do tworzenia, uruchamiania i publikowania aplikacji opartych na platformie Aspire. @@ -58,18 +58,18 @@ Dowiedz się więcej o telemetrii wiersza polecenia usługi Aspire: https://aka. - Suppress the startup banner and telemetry notice. - Wstrzymaj baner startowy i powiadomienie o telemetrii. + Suppress the startup banner and telemetry notice + Wstrzymaj baner startowy i powiadomienie o telemetrii. - Run the command in non-interactive mode, disabling all interactive prompts and spinners. - Run the command in non-interactive mode, disabling all interactive prompts and spinners. + Run the command in non-interactive mode, disabling all interactive prompts and spinners + Run the command in non-interactive mode, disabling all interactive prompts and spinners - Wait for a debugger to attach before executing the command. - Przed wykonaniem polecenia poczekaj na dołączenie debugera. + Wait for a debugger to attach before executing the command + Przed wykonaniem polecenia poczekaj na dołączenie debugera. @@ -79,4 +79,4 @@ Dowiedz się więcej o telemetrii wiersza polecenia usługi Aspire: https://aka. - + \ No newline at end of file diff --git a/src/Aspire.Cli/Resources/xlf/RootCommandStrings.pt-BR.xlf b/src/Aspire.Cli/Resources/xlf/RootCommandStrings.pt-BR.xlf index 5e3e79439f5..7a931ffcf40 100644 --- a/src/Aspire.Cli/Resources/xlf/RootCommandStrings.pt-BR.xlf +++ b/src/Aspire.Cli/Resources/xlf/RootCommandStrings.pt-BR.xlf @@ -3,8 +3,8 @@ - Display the animated Aspire CLI welcome banner. - Exibir a barra de notificação de boas-vindas animada da CLI Aspire. + Display the animated Aspire CLI welcome banner + Exibir a barra de notificação de boas-vindas animada da CLI Aspire. @@ -18,23 +18,23 @@ - Wait for a debugger to attach before executing the command. - Aguarde um depurador anexar antes de executar o comando. + Wait for a debugger to attach before executing the command + Aguarde um depurador anexar antes de executar o comando. - Enable debug logging to the console. - Habilitar o log de depuração no console. + Enable debug logging to the console + Habilitar o log de depuração no console. - Set the minimum log level for console output (Trace, Debug, Information, Warning, Error, Critical). - Set the minimum log level for console output (Trace, Debug, Information, Warning, Error, Critical). + Set the minimum log level for console output (Trace, Debug, Information, Warning, Error, Critical) + Set the minimum log level for console output (Trace, Debug, Information, Warning, Error, Critical) - The Aspire CLI can be used to create, run, and publish Aspire-based applications. - A CLI do Aspire pode ser usada para criar, executar e publicar aplicações baseadas em Aspire. + The Aspire CLI can be used to create, run, and publish Aspire-based applications + A CLI do Aspire pode ser usada para criar, executar e publicar aplicações baseadas em Aspire. @@ -58,18 +58,18 @@ Leia mais sobre a telemetria da CLI do Aspire: https://aka.ms/aspire/cli-telemet - Suppress the startup banner and telemetry notice. - Suprima a faixa de inicialização e o aviso de telemetria. + Suppress the startup banner and telemetry notice + Suprima a faixa de inicialização e o aviso de telemetria. - Run the command in non-interactive mode, disabling all interactive prompts and spinners. - Run the command in non-interactive mode, disabling all interactive prompts and spinners. + Run the command in non-interactive mode, disabling all interactive prompts and spinners + Run the command in non-interactive mode, disabling all interactive prompts and spinners - Wait for a debugger to attach before executing the command. - Aguarde um depurador anexar antes de executar o comando. + Wait for a debugger to attach before executing the command + Aguarde um depurador anexar antes de executar o comando. @@ -79,4 +79,4 @@ Leia mais sobre a telemetria da CLI do Aspire: https://aka.ms/aspire/cli-telemet - + \ No newline at end of file diff --git a/src/Aspire.Cli/Resources/xlf/RootCommandStrings.ru.xlf b/src/Aspire.Cli/Resources/xlf/RootCommandStrings.ru.xlf index 097120bbc83..be61f625a7b 100644 --- a/src/Aspire.Cli/Resources/xlf/RootCommandStrings.ru.xlf +++ b/src/Aspire.Cli/Resources/xlf/RootCommandStrings.ru.xlf @@ -3,8 +3,8 @@ - Display the animated Aspire CLI welcome banner. - Отобразить анимированный приветственный баннер CLI Aspire. + Display the animated Aspire CLI welcome banner + Отобразить анимированный приветственный баннер CLI Aspire. @@ -18,23 +18,23 @@ - Wait for a debugger to attach before executing the command. - Дождитесь подключения отладчика, прежде чем выполнять команду. + Wait for a debugger to attach before executing the command + Дождитесь подключения отладчика, прежде чем выполнять команду. - Enable debug logging to the console. - Включает журналирование отладки в консоли. + Enable debug logging to the console + Включает журналирование отладки в консоли. - Set the minimum log level for console output (Trace, Debug, Information, Warning, Error, Critical). - Set the minimum log level for console output (Trace, Debug, Information, Warning, Error, Critical). + Set the minimum log level for console output (Trace, Debug, Information, Warning, Error, Critical) + Set the minimum log level for console output (Trace, Debug, Information, Warning, Error, Critical) - The Aspire CLI can be used to create, run, and publish Aspire-based applications. - CLI Aspire можно использовать для создания, запуска и публикации приложений на основе Aspire. + The Aspire CLI can be used to create, run, and publish Aspire-based applications + CLI Aspire можно использовать для создания, запуска и публикации приложений на основе Aspire. @@ -58,18 +58,18 @@ Aspire CLI собирает данные об использовании. Кор - Suppress the startup banner and telemetry notice. - Отключить баннер запуска и уведомление о телеметрии. + Suppress the startup banner and telemetry notice + Отключить баннер запуска и уведомление о телеметрии. - Run the command in non-interactive mode, disabling all interactive prompts and spinners. - Run the command in non-interactive mode, disabling all interactive prompts and spinners. + Run the command in non-interactive mode, disabling all interactive prompts and spinners + Run the command in non-interactive mode, disabling all interactive prompts and spinners - Wait for a debugger to attach before executing the command. - Дождитесь подключения отладчика, прежде чем выполнять команду. + Wait for a debugger to attach before executing the command + Дождитесь подключения отладчика, прежде чем выполнять команду. @@ -79,4 +79,4 @@ Aspire CLI собирает данные об использовании. Кор - + \ No newline at end of file diff --git a/src/Aspire.Cli/Resources/xlf/RootCommandStrings.tr.xlf b/src/Aspire.Cli/Resources/xlf/RootCommandStrings.tr.xlf index d0af61ce448..5dce3468b79 100644 --- a/src/Aspire.Cli/Resources/xlf/RootCommandStrings.tr.xlf +++ b/src/Aspire.Cli/Resources/xlf/RootCommandStrings.tr.xlf @@ -3,8 +3,8 @@ - Display the animated Aspire CLI welcome banner. - Animasyonlu Aspire CLI karşılama başlığını görüntüleyin. + Display the animated Aspire CLI welcome banner + Animasyonlu Aspire CLI karşılama başlığını görüntüleyin. @@ -18,23 +18,23 @@ - Wait for a debugger to attach before executing the command. - Komutu yürütmeden önce hata ayıklayıcısının eklenmesini bekleyin. + Wait for a debugger to attach before executing the command + Komutu yürütmeden önce hata ayıklayıcısının eklenmesini bekleyin. - Enable debug logging to the console. - Konsolda hata ayıklama kaydını etkinleştirin. + Enable debug logging to the console + Konsolda hata ayıklama kaydını etkinleştirin. - Set the minimum log level for console output (Trace, Debug, Information, Warning, Error, Critical). - Set the minimum log level for console output (Trace, Debug, Information, Warning, Error, Critical). + Set the minimum log level for console output (Trace, Debug, Information, Warning, Error, Critical) + Set the minimum log level for console output (Trace, Debug, Information, Warning, Error, Critical) - The Aspire CLI can be used to create, run, and publish Aspire-based applications. - Aspire CLI, Aspire tabanlı uygulamalar oluşturmak, çalıştırmak ve yayımlamak için kullanılabilir. + The Aspire CLI can be used to create, run, and publish Aspire-based applications + Aspire CLI, Aspire tabanlı uygulamalar oluşturmak, çalıştırmak ve yayımlamak için kullanılabilir. @@ -58,18 +58,18 @@ Aspire CLI telemetrisi hakkında daha fazla bilgi edinin: https://aka.ms/aspire/ - Suppress the startup banner and telemetry notice. - Başlangıç başlığını ve telemetri bildirimini gizle. + Suppress the startup banner and telemetry notice + Başlangıç başlığını ve telemetri bildirimini gizle. - Run the command in non-interactive mode, disabling all interactive prompts and spinners. - Run the command in non-interactive mode, disabling all interactive prompts and spinners. + Run the command in non-interactive mode, disabling all interactive prompts and spinners + Run the command in non-interactive mode, disabling all interactive prompts and spinners - Wait for a debugger to attach before executing the command. - Komutu yürütmeden önce hata ayıklayıcısının eklenmesini bekleyin. + Wait for a debugger to attach before executing the command + Komutu yürütmeden önce hata ayıklayıcısının eklenmesini bekleyin. @@ -79,4 +79,4 @@ Aspire CLI telemetrisi hakkında daha fazla bilgi edinin: https://aka.ms/aspire/ - + \ No newline at end of file diff --git a/src/Aspire.Cli/Resources/xlf/RootCommandStrings.zh-Hans.xlf b/src/Aspire.Cli/Resources/xlf/RootCommandStrings.zh-Hans.xlf index 91b6c456948..39e2f86d646 100644 --- a/src/Aspire.Cli/Resources/xlf/RootCommandStrings.zh-Hans.xlf +++ b/src/Aspire.Cli/Resources/xlf/RootCommandStrings.zh-Hans.xlf @@ -3,8 +3,8 @@ - Display the animated Aspire CLI welcome banner. - 显示动画 Aspire CLI 欢迎横幅。 + Display the animated Aspire CLI welcome banner + 显示动画 Aspire CLI 欢迎横幅。 @@ -18,23 +18,23 @@ - Wait for a debugger to attach before executing the command. - 在执行命令之前,请等待附加调试程序。 + Wait for a debugger to attach before executing the command + 在执行命令之前,请等待附加调试程序。 - Enable debug logging to the console. - 启用控制台的调试日志记录。 + Enable debug logging to the console + 启用控制台的调试日志记录。 - Set the minimum log level for console output (Trace, Debug, Information, Warning, Error, Critical). - Set the minimum log level for console output (Trace, Debug, Information, Warning, Error, Critical). + Set the minimum log level for console output (Trace, Debug, Information, Warning, Error, Critical) + Set the minimum log level for console output (Trace, Debug, Information, Warning, Error, Critical) - The Aspire CLI can be used to create, run, and publish Aspire-based applications. - Aspire CLI 可用于创建、运行和发布基于 Aspire 的应用程序。 + The Aspire CLI can be used to create, run, and publish Aspire-based applications + Aspire CLI 可用于创建、运行和发布基于 Aspire 的应用程序。 @@ -58,18 +58,18 @@ Aspire CLI 收集使用情况数据。该数据由 Microsoft 收集,用于帮 - Suppress the startup banner and telemetry notice. - 抑制显示启动横幅和遥测通知。 + Suppress the startup banner and telemetry notice + 抑制显示启动横幅和遥测通知。 - Run the command in non-interactive mode, disabling all interactive prompts and spinners. - Run the command in non-interactive mode, disabling all interactive prompts and spinners. + Run the command in non-interactive mode, disabling all interactive prompts and spinners + Run the command in non-interactive mode, disabling all interactive prompts and spinners - Wait for a debugger to attach before executing the command. - 在执行命令之前,请等待附加调试程序。 + Wait for a debugger to attach before executing the command + 在执行命令之前,请等待附加调试程序。 @@ -79,4 +79,4 @@ Aspire CLI 收集使用情况数据。该数据由 Microsoft 收集,用于帮 - + \ No newline at end of file diff --git a/src/Aspire.Cli/Resources/xlf/RootCommandStrings.zh-Hant.xlf b/src/Aspire.Cli/Resources/xlf/RootCommandStrings.zh-Hant.xlf index ac401a2b1a8..74a8cd07424 100644 --- a/src/Aspire.Cli/Resources/xlf/RootCommandStrings.zh-Hant.xlf +++ b/src/Aspire.Cli/Resources/xlf/RootCommandStrings.zh-Hant.xlf @@ -3,8 +3,8 @@ - Display the animated Aspire CLI welcome banner. - 顯示動畫 Aspire CLI 的歡迎使用橫幅。 + Display the animated Aspire CLI welcome banner + 顯示動畫 Aspire CLI 的歡迎使用橫幅。 @@ -18,23 +18,23 @@ - Wait for a debugger to attach before executing the command. - 請等候偵錯工具連結後再執行命令。 + Wait for a debugger to attach before executing the command + 請等候偵錯工具連結後再執行命令。 - Enable debug logging to the console. - 啟用控制台的偵錯記錄。 + Enable debug logging to the console + 啟用控制台的偵錯記錄。 - Set the minimum log level for console output (Trace, Debug, Information, Warning, Error, Critical). - Set the minimum log level for console output (Trace, Debug, Information, Warning, Error, Critical). + Set the minimum log level for console output (Trace, Debug, Information, Warning, Error, Critical) + Set the minimum log level for console output (Trace, Debug, Information, Warning, Error, Critical) - The Aspire CLI can be used to create, run, and publish Aspire-based applications. - Aspire CLI 可用來建立、執行及發佈以 Aspire 為基礎的應用程式。 + The Aspire CLI can be used to create, run, and publish Aspire-based applications + Aspire CLI 可用來建立、執行及發佈以 Aspire 為基礎的應用程式。 @@ -58,18 +58,18 @@ Aspire CLI 會收集使用方式資料。它由 Microsoft 收集,用於協助 - Suppress the startup banner and telemetry notice. - 抑制啟動橫幅與遙測通知。 + Suppress the startup banner and telemetry notice + 抑制啟動橫幅與遙測通知。 - Run the command in non-interactive mode, disabling all interactive prompts and spinners. - Run the command in non-interactive mode, disabling all interactive prompts and spinners. + Run the command in non-interactive mode, disabling all interactive prompts and spinners + Run the command in non-interactive mode, disabling all interactive prompts and spinners - Wait for a debugger to attach before executing the command. - 請等候偵錯工具連結後再執行命令。 + Wait for a debugger to attach before executing the command + 請等候偵錯工具連結後再執行命令。 @@ -79,4 +79,4 @@ Aspire CLI 會收集使用方式資料。它由 Microsoft 收集,用於協助 - + \ No newline at end of file diff --git a/src/Aspire.Cli/Resources/xlf/RunCommandStrings.cs.xlf b/src/Aspire.Cli/Resources/xlf/RunCommandStrings.cs.xlf index 0e3657221a8..264b24c6eb7 100644 --- a/src/Aspire.Cli/Resources/xlf/RunCommandStrings.cs.xlf +++ b/src/Aspire.Cli/Resources/xlf/RunCommandStrings.cs.xlf @@ -33,18 +33,18 @@ - AppHost process exited with code {0}. - Proces AppHost byl ukončen s kódem {0}. + Apphost process exited with code {0}. + Proces AppHost byl ukončen s kódem {0}. - AppHost failed to build. - AppHost failed to build. + Apphost failed to build. + Apphost failed to build. - AppHost started successfully. - Hostitel aplikací (AppHost) se úspěšně spustil. + Apphost started successfully. + Hostitel aplikací (AppHost) se úspěšně spustil. @@ -73,13 +73,13 @@ - Run an Aspire AppHost interactively for development. + Run an Aspire apphost interactively for development Spusťte hostitele aplikací Aspire ve vývojovém režimu. - Run the AppHost in the background and exit after it starts. - Spusťte AppHost na pozadí a po spuštění ho ukončete. + Run the apphost in the background and exit after it starts + Spusťte AppHost na pozadí a po spuštění ho ukončete. @@ -88,13 +88,13 @@ - Failed to start the AppHost. - Nepovedlo se spustit AppHost. + Failed to start the apphost. + Nepovedlo se spustit AppHost. - Stop any running instance of the AppHost without prompting. - Zastavte všechny běžící instance AppHost bez výzvy. + Stop any running instance of the apphost without prompting + Zastavte všechny běžící instance AppHost bez výzvy. @@ -113,18 +113,18 @@ - Output format for detached AppHost results. + Output format for detached apphost results Výsledek výstupu ve formátu JSON (platný jenom s parametrem --detach). - Run in isolated mode with randomized ports and isolated user secrets, allowing multiple instances to run simultaneously. - Spouštějte v izolovaném režimu s náhodnými porty a izolovanými tajnými kódy uživatelů, což umožňuje, aby několik instancí běželo současně. + Run in isolated mode with randomized ports and isolated user secrets, allowing multiple instances to run simultaneously + Spouštějte v izolovaném režimu s náhodnými porty a izolovanými tajnými kódy uživatelů, což umožňuje, aby několik instancí běželo současně. - A running instance of this AppHost was found and will be stopped. To run multiple isolated instances simultaneously, run from different directories such as git worktree directories. - Byla nalezena spuštěná instance tohoto hostitele aplikací a bude zastavena. Pokud chcete spustit více izolovaných instancí současně, spusťte je z různých adresářů, jako jsou adresáře pracovního stromu Gitu. + A running instance of this apphost was found and will be stopped. To run multiple isolated instances simultaneously, run from different directories such as git worktree directories. + Byla nalezena spuštěná instance tohoto hostitele aplikací a bude zastavena. Pokud chcete spustit více izolovaných instancí současně, spusťte je z různých adresářů, jako jsou adresáře pracovního stromu Gitu. @@ -133,8 +133,8 @@ - Do not build or restore the project before running. - Do not build or restore the project before running. + Do not build or restore the project before running + Do not build or restore the project before running @@ -153,8 +153,8 @@ - The path to the Aspire AppHost project file. - Cesta k souboru projektu Aspire AppHost. + The path to the Aspire apphost project file + Cesta k souboru projektu Aspire AppHost. @@ -173,8 +173,8 @@ - Whether to start a debug session, if running in an Aspire Terminal. - Určuje, jestli se má spustit relace ladění, pokud běží v terminálu Aspire. + Whether to start a debug session, if running in an Aspire Terminal + Určuje, jestli se má spustit relace ladění, pokud běží v terminálu Aspire. @@ -203,8 +203,8 @@ The state of the resource, eg Running - Timeout waiting for AppHost to start. - Při čekání na spuštění hostitele aplikací (AppHost) vypršel časový limit. + Timeout waiting for apphost to start. + Při čekání na spuštění hostitele aplikací (AppHost) vypršel časový limit. @@ -218,8 +218,8 @@ - Start project resources in watch mode. - Umožňuje spustit prostředky projektu v režimu kukátka. + Start project resources in watch mode + Umožňuje spustit prostředky projektu v režimu kukátka. diff --git a/src/Aspire.Cli/Resources/xlf/RunCommandStrings.de.xlf b/src/Aspire.Cli/Resources/xlf/RunCommandStrings.de.xlf index 06e96c6ebf4..cc27061c8ec 100644 --- a/src/Aspire.Cli/Resources/xlf/RunCommandStrings.de.xlf +++ b/src/Aspire.Cli/Resources/xlf/RunCommandStrings.de.xlf @@ -33,18 +33,18 @@ - AppHost process exited with code {0}. - Der AppHost-Prozess wurde mit Code {0} beendet. + Apphost process exited with code {0}. + Der AppHost-Prozess wurde mit Code {0} beendet. - AppHost failed to build. - AppHost failed to build. + Apphost failed to build. + Apphost failed to build. - AppHost started successfully. - Der AppHost wurde erfolgreich gestartet. + Apphost started successfully. + Der AppHost wurde erfolgreich gestartet. @@ -73,13 +73,13 @@ - Run an Aspire AppHost interactively for development. + Run an Aspire apphost interactively for development Führen Sie einen Aspire-App-Host im Entwicklungsmodus aus. - Run the AppHost in the background and exit after it starts. - Führen Sie den AppHost im Hintergrund aus und beenden Sie ihn, sobald er gestartet ist. + Run the apphost in the background and exit after it starts + Führen Sie den AppHost im Hintergrund aus und beenden Sie ihn, sobald er gestartet ist. @@ -88,13 +88,13 @@ - Failed to start the AppHost. - Fehler beim Starten des AppHost. + Failed to start the apphost. + Fehler beim Starten des AppHost. - Stop any running instance of the AppHost without prompting. - Beenden Sie alle ausgeführten Instanzen von AppHost ohne Aufforderung. + Stop any running instance of the apphost without prompting + Beenden Sie alle ausgeführten Instanzen von AppHost ohne Aufforderung. @@ -113,18 +113,18 @@ - Output format for detached AppHost results. + Output format for detached apphost results Ausgabeergebnis als JSON (nur gültig mit --detach). - Run in isolated mode with randomized ports and isolated user secrets, allowing multiple instances to run simultaneously. - Im isolierten Modus mit zufälligen Ports und getrennten Benutzergeheimnissen ausführen, sodass mehrere Instanzen gleichzeitig laufen können. + Run in isolated mode with randomized ports and isolated user secrets, allowing multiple instances to run simultaneously + Im isolierten Modus mit zufälligen Ports und getrennten Benutzergeheimnissen ausführen, sodass mehrere Instanzen gleichzeitig laufen können. - A running instance of this AppHost was found and will be stopped. To run multiple isolated instances simultaneously, run from different directories such as git worktree directories. - Eine laufende Instanz dieses AppHosts wurde gefunden und wird beendet. Um mehrere isolierte Instanzen gleichzeitig auszuführen, starten Sie sie aus verschiedenen Verzeichnissen, zum Beispiel aus Git-Worktree-Verzeichnissen. + A running instance of this apphost was found and will be stopped. To run multiple isolated instances simultaneously, run from different directories such as git worktree directories. + Eine laufende Instanz dieses AppHosts wurde gefunden und wird beendet. Um mehrere isolierte Instanzen gleichzeitig auszuführen, starten Sie sie aus verschiedenen Verzeichnissen, zum Beispiel aus Git-Worktree-Verzeichnissen. @@ -133,8 +133,8 @@ - Do not build or restore the project before running. - Do not build or restore the project before running. + Do not build or restore the project before running + Do not build or restore the project before running @@ -153,8 +153,8 @@ - The path to the Aspire AppHost project file. - Der Pfad zur Aspire AppHost-Projektdatei. + The path to the Aspire apphost project file + Der Pfad zur Aspire AppHost-Projektdatei. @@ -173,8 +173,8 @@ - Whether to start a debug session, if running in an Aspire Terminal. - Gibt an, ob eine Debugsitzung gestartet werden soll, wenn sie in einem Aspire-Terminal ausgeführt wird. + Whether to start a debug session, if running in an Aspire Terminal + Gibt an, ob eine Debugsitzung gestartet werden soll, wenn sie in einem Aspire-Terminal ausgeführt wird. @@ -203,8 +203,8 @@ The state of the resource, eg Running - Timeout waiting for AppHost to start. - Timeout beim Warten auf den Start des AppHost. + Timeout waiting for apphost to start. + Timeout beim Warten auf den Start des AppHost. @@ -218,8 +218,8 @@ - Start project resources in watch mode. - Starten Sie Projektressourcen im Überwachungsmodus. + Start project resources in watch mode + Starten Sie Projektressourcen im Überwachungsmodus. diff --git a/src/Aspire.Cli/Resources/xlf/RunCommandStrings.es.xlf b/src/Aspire.Cli/Resources/xlf/RunCommandStrings.es.xlf index b8e6d589e5d..4d4ccab56bd 100644 --- a/src/Aspire.Cli/Resources/xlf/RunCommandStrings.es.xlf +++ b/src/Aspire.Cli/Resources/xlf/RunCommandStrings.es.xlf @@ -33,18 +33,18 @@ - AppHost process exited with code {0}. - El proceso AppHost se cerró con código {0}. + Apphost process exited with code {0}. + El proceso AppHost se cerró con código {0}. - AppHost failed to build. - AppHost failed to build. + Apphost failed to build. + Apphost failed to build. - AppHost started successfully. - AppHost se ha iniciado correctamente. + Apphost started successfully. + AppHost se ha iniciado correctamente. @@ -73,13 +73,13 @@ - Run an Aspire AppHost interactively for development. + Run an Aspire apphost interactively for development Ejecutar un apphost de Aspire en modo de desarrollo. - Run the AppHost in the background and exit after it starts. - Ejecute AppHost en segundo plano y cierre la aplicación una vez que se inicie. + Run the apphost in the background and exit after it starts + Ejecute AppHost en segundo plano y cierre la aplicación una vez que se inicie. @@ -88,13 +88,13 @@ - Failed to start the AppHost. - Error al iniciar AppHost. + Failed to start the apphost. + Error al iniciar AppHost. - Stop any running instance of the AppHost without prompting. - Detenga cualquier instancia en ejecución de AppHost sin pedir confirmación. + Stop any running instance of the apphost without prompting + Detenga cualquier instancia en ejecución de AppHost sin pedir confirmación. @@ -113,18 +113,18 @@ - Output format for detached AppHost results. + Output format for detached apphost results Resultado de salida como JSON (solo válido con --detach). - Run in isolated mode with randomized ports and isolated user secrets, allowing multiple instances to run simultaneously. - Ejecutar en modo aislado con puertos aleatorios y secretos de usuario aislados, lo que permite que varias instancias se ejecuten simultáneamente. + Run in isolated mode with randomized ports and isolated user secrets, allowing multiple instances to run simultaneously + Ejecutar en modo aislado con puertos aleatorios y secretos de usuario aislados, lo que permite que varias instancias se ejecuten simultáneamente. - A running instance of this AppHost was found and will be stopped. To run multiple isolated instances simultaneously, run from different directories such as git worktree directories. - Se ha encontrado una instancia en ejecución de este AppHost y se detendrá. Para ejecutar varias instancias aisladas simultáneamente, ejecute desde directorios diferentes, como directorios de árbol de trabajo de Git. + A running instance of this apphost was found and will be stopped. To run multiple isolated instances simultaneously, run from different directories such as git worktree directories. + Se ha encontrado una instancia en ejecución de este AppHost y se detendrá. Para ejecutar varias instancias aisladas simultáneamente, ejecute desde directorios diferentes, como directorios de árbol de trabajo de Git. @@ -133,8 +133,8 @@ - Do not build or restore the project before running. - Do not build or restore the project before running. + Do not build or restore the project before running + Do not build or restore the project before running @@ -153,8 +153,8 @@ - The path to the Aspire AppHost project file. - La ruta de acceso al archivo del proyecto host de la AppHost Aspire. + The path to the Aspire apphost project file + La ruta de acceso al archivo del proyecto host de la AppHost Aspire. @@ -173,8 +173,8 @@ - Whether to start a debug session, if running in an Aspire Terminal. - Indique si se debe iniciar una sesión de depuración si se ejecuta en un terminal Aspire. + Whether to start a debug session, if running in an Aspire Terminal + Indique si se debe iniciar una sesión de depuración si se ejecuta en un terminal Aspire. @@ -203,8 +203,8 @@ The state of the resource, eg Running - Timeout waiting for AppHost to start. - Tiempo de espera de inicio de AppHost. + Timeout waiting for apphost to start. + Tiempo de espera de inicio de AppHost. @@ -218,8 +218,8 @@ - Start project resources in watch mode. - Inicie los recursos del proyecto en modo de inspección. + Start project resources in watch mode + Inicie los recursos del proyecto en modo de inspección. diff --git a/src/Aspire.Cli/Resources/xlf/RunCommandStrings.fr.xlf b/src/Aspire.Cli/Resources/xlf/RunCommandStrings.fr.xlf index a6b974cf238..4b7f1415607 100644 --- a/src/Aspire.Cli/Resources/xlf/RunCommandStrings.fr.xlf +++ b/src/Aspire.Cli/Resources/xlf/RunCommandStrings.fr.xlf @@ -33,18 +33,18 @@ - AppHost process exited with code {0}. - Processus AppHost arrêté avec le code {0}. + Apphost process exited with code {0}. + Processus AppHost arrêté avec le code {0}. - AppHost failed to build. - AppHost failed to build. + Apphost failed to build. + Apphost failed to build. - AppHost started successfully. - AppHost a démarré correctement. + Apphost started successfully. + AppHost a démarré correctement. @@ -73,13 +73,13 @@ - Run an Aspire AppHost interactively for development. + Run an Aspire apphost interactively for development Exécutez un hôte d’application Aspire en mode développement. - Run the AppHost in the background and exit after it starts. - Exécuter AppHost en arrière-plan et le quitter après son démarrage. + Run the apphost in the background and exit after it starts + Exécuter AppHost en arrière-plan et le quitter après son démarrage. @@ -88,13 +88,13 @@ - Failed to start the AppHost. - Échec du démarrage d’AppHost. + Failed to start the apphost. + Échec du démarrage d’AppHost. - Stop any running instance of the AppHost without prompting. - Arrêtez les instances en cours d’exécution de AppHost sans requête. + Stop any running instance of the apphost without prompting + Arrêtez les instances en cours d’exécution de AppHost sans requête. @@ -113,18 +113,18 @@ - Output format for detached AppHost results. + Output format for detached apphost results Afficher le résultat au format JSON (valide uniquement avec --detach). - Run in isolated mode with randomized ports and isolated user secrets, allowing multiple instances to run simultaneously. - Exécuter en mode isolé avec des ports aléatoires et des secrets utilisateur isolés, ce qui permet à plusieurs instances de fonctionner simultanément. + Run in isolated mode with randomized ports and isolated user secrets, allowing multiple instances to run simultaneously + Exécuter en mode isolé avec des ports aléatoires et des secrets utilisateur isolés, ce qui permet à plusieurs instances de fonctionner simultanément. - A running instance of this AppHost was found and will be stopped. To run multiple isolated instances simultaneously, run from different directories such as git worktree directories. - Une instance en cours d’exécution de cet AppHost a été détectée et va être arrêtée. Pour exécuter plusieurs instances isolées simultanément, lancez-les depuis des répertoires différents, comme des répertoires git worktree. + A running instance of this apphost was found and will be stopped. To run multiple isolated instances simultaneously, run from different directories such as git worktree directories. + Une instance en cours d’exécution de cet AppHost a été détectée et va être arrêtée. Pour exécuter plusieurs instances isolées simultanément, lancez-les depuis des répertoires différents, comme des répertoires git worktree. @@ -133,8 +133,8 @@ - Do not build or restore the project before running. - Do not build or restore the project before running. + Do not build or restore the project before running + Do not build or restore the project before running @@ -153,8 +153,8 @@ - The path to the Aspire AppHost project file. - Chemin d’accès au fichier projet AppHost Aspire. + The path to the Aspire apphost project file + Chemin d’accès au fichier projet AppHost Aspire. @@ -173,8 +173,8 @@ - Whether to start a debug session, if running in an Aspire Terminal. - Indique s’il faut démarrer une session de débogage lorsqu’il s’exécute dans un terminal Aspire. + Whether to start a debug session, if running in an Aspire Terminal + Indique s’il faut démarrer une session de débogage lorsqu’il s’exécute dans un terminal Aspire. @@ -203,8 +203,8 @@ The state of the resource, eg Running - Timeout waiting for AppHost to start. - Délai d’attente pour le démarrage d’AppHost. + Timeout waiting for apphost to start. + Délai d’attente pour le démarrage d’AppHost. @@ -218,8 +218,8 @@ - Start project resources in watch mode. - Démarrez les ressources du projet en mode surveillance. + Start project resources in watch mode + Démarrez les ressources du projet en mode surveillance. diff --git a/src/Aspire.Cli/Resources/xlf/RunCommandStrings.it.xlf b/src/Aspire.Cli/Resources/xlf/RunCommandStrings.it.xlf index 014ccaae073..5cf22a2ce75 100644 --- a/src/Aspire.Cli/Resources/xlf/RunCommandStrings.it.xlf +++ b/src/Aspire.Cli/Resources/xlf/RunCommandStrings.it.xlf @@ -33,18 +33,18 @@ - AppHost process exited with code {0}. - Processo AppHost terminato con codice {0}. + Apphost process exited with code {0}. + Processo AppHost terminato con codice {0}. - AppHost failed to build. - AppHost failed to build. + Apphost failed to build. + Apphost failed to build. - AppHost started successfully. - AppHost avviato correttamente. + Apphost started successfully. + AppHost avviato correttamente. @@ -73,13 +73,13 @@ - Run an Aspire AppHost interactively for development. + Run an Aspire apphost interactively for development Esegui un AppHost Aspire in modalità di sviluppo. - Run the AppHost in the background and exit after it starts. - Eseguire AppHost in background ed uscire dopo l'avvio. + Run the apphost in the background and exit after it starts + Eseguire AppHost in background ed uscire dopo l'avvio. @@ -88,13 +88,13 @@ - Failed to start the AppHost. - Non è possibile avviare Apphost. + Failed to start the apphost. + Non è possibile avviare Apphost. - Stop any running instance of the AppHost without prompting. - Arresta qualsiasi istanza in esecuzione di AppHost senza chiedere conferma. + Stop any running instance of the apphost without prompting + Arresta qualsiasi istanza in esecuzione di AppHost senza chiedere conferma. @@ -113,18 +113,18 @@ - Output format for detached AppHost results. + Output format for detached apphost results Restituisce il risultato in formato JSON (valido solo con --detach). - Run in isolated mode with randomized ports and isolated user secrets, allowing multiple instances to run simultaneously. - Eseguire in modalità isolata con porte casuali e segreti utente separati, consentendo l'esecuzione simultanea di più istanze. + Run in isolated mode with randomized ports and isolated user secrets, allowing multiple instances to run simultaneously + Eseguire in modalità isolata con porte casuali e segreti utente separati, consentendo l'esecuzione simultanea di più istanze. - A running instance of this AppHost was found and will be stopped. To run multiple isolated instances simultaneously, run from different directories such as git worktree directories. - È stata trovata un'istanza in esecuzione di questo AppHost e verrà arrestata. Per eseguire più istanze isolate contemporaneamente, avviare l'app da directory diverse, ad esempio dalle directory di un albero di lavoro Git. + A running instance of this apphost was found and will be stopped. To run multiple isolated instances simultaneously, run from different directories such as git worktree directories. + È stata trovata un'istanza in esecuzione di questo AppHost e verrà arrestata. Per eseguire più istanze isolate contemporaneamente, avviare l'app da directory diverse, ad esempio dalle directory di un albero di lavoro Git. @@ -133,8 +133,8 @@ - Do not build or restore the project before running. - Do not build or restore the project before running. + Do not build or restore the project before running + Do not build or restore the project before running @@ -153,8 +153,8 @@ - The path to the Aspire AppHost project file. - Percorso del file di un progetto AppHost di Aspire. + The path to the Aspire apphost project file + Percorso del file di un progetto AppHost di Aspire. @@ -173,8 +173,8 @@ - Whether to start a debug session, if running in an Aspire Terminal. - Indica se avviare una sessione di debug, se si esegue in un terminale Aspire. + Whether to start a debug session, if running in an Aspire Terminal + Indica se avviare una sessione di debug, se si esegue in un terminale Aspire. @@ -203,8 +203,8 @@ The state of the resource, eg Running - Timeout waiting for AppHost to start. - Timeout in attesa dell'avvio di Apphost. + Timeout waiting for apphost to start. + Timeout in attesa dell'avvio di Apphost. @@ -218,8 +218,8 @@ - Start project resources in watch mode. - Avvia le risorse del progetto in modalità di monitoraggio. + Start project resources in watch mode + Avvia le risorse del progetto in modalità di monitoraggio. diff --git a/src/Aspire.Cli/Resources/xlf/RunCommandStrings.ja.xlf b/src/Aspire.Cli/Resources/xlf/RunCommandStrings.ja.xlf index 680d38b946c..8d4fbb07df4 100644 --- a/src/Aspire.Cli/Resources/xlf/RunCommandStrings.ja.xlf +++ b/src/Aspire.Cli/Resources/xlf/RunCommandStrings.ja.xlf @@ -33,18 +33,18 @@ - AppHost process exited with code {0}. - AppHost プロセスが終了し、コード {0} を返しました。 + Apphost process exited with code {0}. + AppHost プロセスが終了し、コード {0} を返しました。 - AppHost failed to build. - AppHost failed to build. + Apphost failed to build. + Apphost failed to build. - AppHost started successfully. - AppHost が正常に起動しました。 + Apphost started successfully. + AppHost が正常に起動しました。 @@ -73,13 +73,13 @@ - Run an Aspire AppHost interactively for development. + Run an Aspire apphost interactively for development 開発モードで Aspire AppHost を実行します。 - Run the AppHost in the background and exit after it starts. - AppHost をバックグラウンドで実行し、起動後に終了させます。 + Run the apphost in the background and exit after it starts + AppHost をバックグラウンドで実行し、起動後に終了させます。 @@ -88,13 +88,13 @@ - Failed to start the AppHost. - AppHost を起動できませんでした。 + Failed to start the apphost. + AppHost を起動できませんでした。 - Stop any running instance of the AppHost without prompting. - プロンプトを表示せずに AppHost の実行中のインスタンスを停止します。 + Stop any running instance of the apphost without prompting + プロンプトを表示せずに AppHost の実行中のインスタンスを停止します。 @@ -113,18 +113,18 @@ - Output format for detached AppHost results. + Output format for detached apphost results 結果を JSON 形式で出力します (--detach オプション指定時のみ有効)。 - Run in isolated mode with randomized ports and isolated user secrets, allowing multiple instances to run simultaneously. - ランダムなポートと分離されたユーザー シークレットを使って分離モードで実行し、複数のインスタンスを同時に実行できるようにします。 + Run in isolated mode with randomized ports and isolated user secrets, allowing multiple instances to run simultaneously + ランダムなポートと分離されたユーザー シークレットを使って分離モードで実行し、複数のインスタンスを同時に実行できるようにします。 - A running instance of this AppHost was found and will be stopped. To run multiple isolated instances simultaneously, run from different directories such as git worktree directories. - この AppHost の実行中のインスタンスが見つかったため、停止します。複数の分離したインスタンスを同時に実行するには、異なるディレクトリ (git worktree ディレクトリなど) から実行してください。 + A running instance of this apphost was found and will be stopped. To run multiple isolated instances simultaneously, run from different directories such as git worktree directories. + この AppHost の実行中のインスタンスが見つかったため、停止します。複数の分離したインスタンスを同時に実行するには、異なるディレクトリ (git worktree ディレクトリなど) から実行してください。 @@ -133,8 +133,8 @@ - Do not build or restore the project before running. - Do not build or restore the project before running. + Do not build or restore the project before running + Do not build or restore the project before running @@ -153,8 +153,8 @@ - The path to the Aspire AppHost project file. - Aspire AppHost プロジェクト ファイルへのパス。 + The path to the Aspire apphost project file + Aspire AppHost プロジェクト ファイルへのパス。 @@ -173,8 +173,8 @@ - Whether to start a debug session, if running in an Aspire Terminal. - Aspire ターミナルで実行されている場合に、デバッグ セッションを開始するかどうか。 + Whether to start a debug session, if running in an Aspire Terminal + Aspire ターミナルで実行されている場合に、デバッグ セッションを開始するかどうか。 @@ -203,8 +203,8 @@ The state of the resource, eg Running - Timeout waiting for AppHost to start. - AppHost の起動待機中にタイムアウトしました。 + Timeout waiting for apphost to start. + AppHost の起動待機中にタイムアウトしました。 @@ -218,8 +218,8 @@ - Start project resources in watch mode. - watch モードでプロジェクト リソースを開始します。 + Start project resources in watch mode + watch モードでプロジェクト リソースを開始します。 diff --git a/src/Aspire.Cli/Resources/xlf/RunCommandStrings.ko.xlf b/src/Aspire.Cli/Resources/xlf/RunCommandStrings.ko.xlf index 0fcbfa49490..b413deaacc0 100644 --- a/src/Aspire.Cli/Resources/xlf/RunCommandStrings.ko.xlf +++ b/src/Aspire.Cli/Resources/xlf/RunCommandStrings.ko.xlf @@ -33,18 +33,18 @@ - AppHost process exited with code {0}. - AppHost 프로세스가 {0} 코드로 종료되었습니다. + Apphost process exited with code {0}. + AppHost 프로세스가 {0} 코드로 종료되었습니다. - AppHost failed to build. - AppHost failed to build. + Apphost failed to build. + Apphost failed to build. - AppHost started successfully. - AppHost를 시작했습니다. + Apphost started successfully. + AppHost를 시작했습니다. @@ -73,13 +73,13 @@ - Run an Aspire AppHost interactively for development. + Run an Aspire apphost interactively for development 개발 모드에서 Aspire 앱호스트를 실행합니다. - Run the AppHost in the background and exit after it starts. - AppHost를 백그라운드에서 실행하고 시작되면 종료합니다. + Run the apphost in the background and exit after it starts + AppHost를 백그라운드에서 실행하고 시작되면 종료합니다. @@ -88,13 +88,13 @@ - Failed to start the AppHost. - AppHost를 시작하지 못 했습니다. + Failed to start the apphost. + AppHost를 시작하지 못 했습니다. - Stop any running instance of the AppHost without prompting. - 프롬프트 없이 AppHost의 실행 중인 인스턴스를 중지합니다. + Stop any running instance of the apphost without prompting + 프롬프트 없이 AppHost의 실행 중인 인스턴스를 중지합니다. @@ -113,18 +113,18 @@ - Output format for detached AppHost results. + Output format for detached apphost results JSON으로 결과를 출력합니다(--detach와 함께 사용 시에만 유효). - Run in isolated mode with randomized ports and isolated user secrets, allowing multiple instances to run simultaneously. - 임의의 포트와 격리된 사용자 암호를 사용해 격리 모드로 실행하면 여러 인스턴스를 동시에 실행할 수 있습니다. + Run in isolated mode with randomized ports and isolated user secrets, allowing multiple instances to run simultaneously + 임의의 포트와 격리된 사용자 암호를 사용해 격리 모드로 실행하면 여러 인스턴스를 동시에 실행할 수 있습니다. - A running instance of this AppHost was found and will be stopped. To run multiple isolated instances simultaneously, run from different directories such as git worktree directories. - 이 AppHost의 실행 중인 인스턴스가 발견되어 중지됩니다. 여러 개의 격리된 인스턴스를 동시에 실행하려면 git worktree 디렉터리와 같은 서로 다른 디렉터리에서 실행합니다. + A running instance of this apphost was found and will be stopped. To run multiple isolated instances simultaneously, run from different directories such as git worktree directories. + 이 AppHost의 실행 중인 인스턴스가 발견되어 중지됩니다. 여러 개의 격리된 인스턴스를 동시에 실행하려면 git worktree 디렉터리와 같은 서로 다른 디렉터리에서 실행합니다. @@ -133,8 +133,8 @@ - Do not build or restore the project before running. - Do not build or restore the project before running. + Do not build or restore the project before running + Do not build or restore the project before running @@ -153,8 +153,8 @@ - The path to the Aspire AppHost project file. - Aspire AppHost 프로젝트 파일의 경로입니다. + The path to the Aspire apphost project file + Aspire AppHost 프로젝트 파일의 경로입니다. @@ -173,8 +173,8 @@ - Whether to start a debug session, if running in an Aspire Terminal. - Aspire 터미널에서 실행 중일 때 디버그 세션을 시작할지 여부입니다. + Whether to start a debug session, if running in an Aspire Terminal + Aspire 터미널에서 실행 중일 때 디버그 세션을 시작할지 여부입니다. @@ -203,8 +203,8 @@ The state of the resource, eg Running - Timeout waiting for AppHost to start. - AppHost가 시작될 때까지 기다리는 시간 제한입니다. + Timeout waiting for apphost to start. + AppHost가 시작될 때까지 기다리는 시간 제한입니다. @@ -218,8 +218,8 @@ - Start project resources in watch mode. - watch 모드에서 프로젝트 리소스를 시작합니다. + Start project resources in watch mode + watch 모드에서 프로젝트 리소스를 시작합니다. diff --git a/src/Aspire.Cli/Resources/xlf/RunCommandStrings.pl.xlf b/src/Aspire.Cli/Resources/xlf/RunCommandStrings.pl.xlf index c6c78fc36d4..b82c9d32244 100644 --- a/src/Aspire.Cli/Resources/xlf/RunCommandStrings.pl.xlf +++ b/src/Aspire.Cli/Resources/xlf/RunCommandStrings.pl.xlf @@ -33,18 +33,18 @@ - AppHost process exited with code {0}. - Proces hosta aplikacji zakończył się z kodem {0}. + Apphost process exited with code {0}. + Proces hosta aplikacji zakończył się z kodem {0}. - AppHost failed to build. - AppHost failed to build. + Apphost failed to build. + Apphost failed to build. - AppHost started successfully. - Host aplikacji został pomyślnie uruchomiony. + Apphost started successfully. + Host aplikacji został pomyślnie uruchomiony. @@ -73,13 +73,13 @@ - Run an Aspire AppHost interactively for development. + Run an Aspire apphost interactively for development Uruchamianie hosta AppHost platformy Aspire w trybie programowania. - Run the AppHost in the background and exit after it starts. - Uruchom hosta aplikacji w tle i zakończ po jego uruchomieniu. + Run the apphost in the background and exit after it starts + Uruchom hosta aplikacji w tle i zakończ po jego uruchomieniu. @@ -88,13 +88,13 @@ - Failed to start the AppHost. - Nie udało się uruchomić hosta aplikacji. + Failed to start the apphost. + Nie udało się uruchomić hosta aplikacji. - Stop any running instance of the AppHost without prompting. - Zatrzymaj dowolne uruchomione wystąpienie hosta aplikacji bez wprowadzania poleceń. + Stop any running instance of the apphost without prompting + Zatrzymaj dowolne uruchomione wystąpienie hosta aplikacji bez wprowadzania poleceń. @@ -113,18 +113,18 @@ - Output format for detached AppHost results. + Output format for detached apphost results Wyświetl wynik jako JSON (działa tylko z parametrem --detach). - Run in isolated mode with randomized ports and isolated user secrets, allowing multiple instances to run simultaneously. - Uruchom w trybie izolowanym z losowymi portami i izolowanymi wpisami tajnymi użytkownika, co pozwala na jednoczesne działanie wielu wystąpień. + Run in isolated mode with randomized ports and isolated user secrets, allowing multiple instances to run simultaneously + Uruchom w trybie izolowanym z losowymi portami i izolowanymi wpisami tajnymi użytkownika, co pozwala na jednoczesne działanie wielu wystąpień. - A running instance of this AppHost was found and will be stopped. To run multiple isolated instances simultaneously, run from different directories such as git worktree directories. - Znaleziono działające wystąpienie tego hosta aplikacji, które zostanie zatrzymane. Aby uruchomić jednocześnie wiele izolowanych wystąpień, uruchom je z różnych katalogów, na przykład katalogów drzewa roboczego usługi Git. + A running instance of this apphost was found and will be stopped. To run multiple isolated instances simultaneously, run from different directories such as git worktree directories. + Znaleziono działające wystąpienie tego hosta aplikacji, które zostanie zatrzymane. Aby uruchomić jednocześnie wiele izolowanych wystąpień, uruchom je z różnych katalogów, na przykład katalogów drzewa roboczego usługi Git. @@ -133,8 +133,8 @@ - Do not build or restore the project before running. - Do not build or restore the project before running. + Do not build or restore the project before running + Do not build or restore the project before running @@ -153,8 +153,8 @@ - The path to the Aspire AppHost project file. - Ścieżka do pliku projektu hosta AppHost platformy Aspire. + The path to the Aspire apphost project file + Ścieżka do pliku projektu hosta AppHost platformy Aspire. @@ -173,8 +173,8 @@ - Whether to start a debug session, if running in an Aspire Terminal. - Określa, czy należy uruchomić sesję debugowania, jeśli jest uruchomiona w terminalu platformy Aspire. + Whether to start a debug session, if running in an Aspire Terminal + Określa, czy należy uruchomić sesję debugowania, jeśli jest uruchomiona w terminalu platformy Aspire. @@ -203,8 +203,8 @@ The state of the resource, eg Running - Timeout waiting for AppHost to start. - Przekroczono limit czasu podczas oczekiwania na uruchomienie hosta aplikacji. + Timeout waiting for apphost to start. + Przekroczono limit czasu podczas oczekiwania na uruchomienie hosta aplikacji. @@ -218,8 +218,8 @@ - Start project resources in watch mode. - Uruchamianie zasobów projektu w trybie obserwacji. + Start project resources in watch mode + Uruchamianie zasobów projektu w trybie obserwacji. diff --git a/src/Aspire.Cli/Resources/xlf/RunCommandStrings.pt-BR.xlf b/src/Aspire.Cli/Resources/xlf/RunCommandStrings.pt-BR.xlf index 662f51b7e04..a8ac84060f7 100644 --- a/src/Aspire.Cli/Resources/xlf/RunCommandStrings.pt-BR.xlf +++ b/src/Aspire.Cli/Resources/xlf/RunCommandStrings.pt-BR.xlf @@ -33,18 +33,18 @@ - AppHost process exited with code {0}. - O processo AppHost foi encerrado com o código {0}. + Apphost process exited with code {0}. + O processo AppHost foi encerrado com o código {0}. - AppHost failed to build. - AppHost failed to build. + Apphost failed to build. + Apphost failed to build. - AppHost started successfully. - AppHost iniciado com sucesso. + Apphost started successfully. + AppHost iniciado com sucesso. @@ -73,13 +73,13 @@ - Run an Aspire AppHost interactively for development. + Run an Aspire apphost interactively for development Execute um apphost do Aspire no modo de desenvolvimento. - Run the AppHost in the background and exit after it starts. - Execute o AppHost em segundo plano e saia depois que ele for iniciado. + Run the apphost in the background and exit after it starts + Execute o AppHost em segundo plano e saia depois que ele for iniciado. @@ -88,13 +88,13 @@ - Failed to start the AppHost. - Falha ao iniciar o AppHost. + Failed to start the apphost. + Falha ao iniciar o AppHost. - Stop any running instance of the AppHost without prompting. - Pare qualquer instância em execução do AppHost sem avisos. + Stop any running instance of the apphost without prompting + Pare qualquer instância em execução do AppHost sem avisos. @@ -113,18 +113,18 @@ - Output format for detached AppHost results. + Output format for detached apphost results Resultado de saída como JSON (válido somente com --detach). - Run in isolated mode with randomized ports and isolated user secrets, allowing multiple instances to run simultaneously. - Execute no modo isolado com portas aleatórias e segredos de usuário isolados, permitindo que várias instâncias executem simultaneamente. + Run in isolated mode with randomized ports and isolated user secrets, allowing multiple instances to run simultaneously + Execute no modo isolado com portas aleatórias e segredos de usuário isolados, permitindo que várias instâncias executem simultaneamente. - A running instance of this AppHost was found and will be stopped. To run multiple isolated instances simultaneously, run from different directories such as git worktree directories. - Foi encontrada uma instância em execução deste AppHost, que será interrompida. Para executar várias instâncias isoladas simultaneamente, execute de diretórios diferentes, como diretórios do git worktree. + A running instance of this apphost was found and will be stopped. To run multiple isolated instances simultaneously, run from different directories such as git worktree directories. + Foi encontrada uma instância em execução deste AppHost, que será interrompida. Para executar várias instâncias isoladas simultaneamente, execute de diretórios diferentes, como diretórios do git worktree. @@ -133,8 +133,8 @@ - Do not build or restore the project before running. - Do not build or restore the project before running. + Do not build or restore the project before running + Do not build or restore the project before running @@ -153,8 +153,8 @@ - The path to the Aspire AppHost project file. - O caminho para o arquivo de projeto do Aspire AppHost. + The path to the Aspire apphost project file + O caminho para o arquivo de projeto do Aspire AppHost. @@ -173,8 +173,8 @@ - Whether to start a debug session, if running in an Aspire Terminal. - Se deve iniciar uma sessão de depuração, se estiver em execução no Aspire Terminal. + Whether to start a debug session, if running in an Aspire Terminal + Se deve iniciar uma sessão de depuração, se estiver em execução no Aspire Terminal. @@ -203,8 +203,8 @@ The state of the resource, eg Running - Timeout waiting for AppHost to start. - Tempo limite de espera para o AppHost iniciar. + Timeout waiting for apphost to start. + Tempo limite de espera para o AppHost iniciar. @@ -218,8 +218,8 @@ - Start project resources in watch mode. - Inicie os recursos do projeto no modo de inspeção. + Start project resources in watch mode + Inicie os recursos do projeto no modo de inspeção. diff --git a/src/Aspire.Cli/Resources/xlf/RunCommandStrings.ru.xlf b/src/Aspire.Cli/Resources/xlf/RunCommandStrings.ru.xlf index 384894aef2b..3ff5c983795 100644 --- a/src/Aspire.Cli/Resources/xlf/RunCommandStrings.ru.xlf +++ b/src/Aspire.Cli/Resources/xlf/RunCommandStrings.ru.xlf @@ -33,18 +33,18 @@ - AppHost process exited with code {0}. - Процесс AppHost завершился с кодом {0}. + Apphost process exited with code {0}. + Процесс AppHost завершился с кодом {0}. - AppHost failed to build. - AppHost failed to build. + Apphost failed to build. + Apphost failed to build. - AppHost started successfully. - Запуск AppHost выполнен. + Apphost started successfully. + Запуск AppHost выполнен. @@ -73,13 +73,13 @@ - Run an Aspire AppHost interactively for development. + Run an Aspire apphost interactively for development Запустите хост приложений Aspire в режиме разработки. - Run the AppHost in the background and exit after it starts. - Запустите AppHost в фоновом режиме и завершите работу после запуска. + Run the apphost in the background and exit after it starts + Запустите AppHost в фоновом режиме и завершите работу после запуска. @@ -88,13 +88,13 @@ - Failed to start the AppHost. - Не удалось запустить AppHost. + Failed to start the apphost. + Не удалось запустить AppHost. - Stop any running instance of the AppHost without prompting. - Остановите любой запущенный экземпляр AppHost без запроса. + Stop any running instance of the apphost without prompting + Остановите любой запущенный экземпляр AppHost без запроса. @@ -113,18 +113,18 @@ - Output format for detached AppHost results. + Output format for detached apphost results Вывод результата в формате JSON (допустимо только с параметром --detach). - Run in isolated mode with randomized ports and isolated user secrets, allowing multiple instances to run simultaneously. - Запускайте в изолированном режиме со случайными портами и изолированными пользовательскими секретами, что позволяет одновременно работать нескольким экземплярам. + Run in isolated mode with randomized ports and isolated user secrets, allowing multiple instances to run simultaneously + Запускайте в изолированном режиме со случайными портами и изолированными пользовательскими секретами, что позволяет одновременно работать нескольким экземплярам. - A running instance of this AppHost was found and will be stopped. To run multiple isolated instances simultaneously, run from different directories such as git worktree directories. - Обнаружен запущенный экземпляр этого хоста приложений, который будет остановлен. Чтобы одновременно запустить несколько изолированных экземпляров, запускайте их из разных каталогов, например из каталогов рабочих деревьев git. + A running instance of this apphost was found and will be stopped. To run multiple isolated instances simultaneously, run from different directories such as git worktree directories. + Обнаружен запущенный экземпляр этого хоста приложений, который будет остановлен. Чтобы одновременно запустить несколько изолированных экземпляров, запускайте их из разных каталогов, например из каталогов рабочих деревьев git. @@ -133,8 +133,8 @@ - Do not build or restore the project before running. - Do not build or restore the project before running. + Do not build or restore the project before running + Do not build or restore the project before running @@ -153,8 +153,8 @@ - The path to the Aspire AppHost project file. - Путь к файлу проекта Aspire AppHost. + The path to the Aspire apphost project file + Путь к файлу проекта Aspire AppHost. @@ -173,8 +173,8 @@ - Whether to start a debug session, if running in an Aspire Terminal. - Запускать ли сеанс отладки при работе в терминале Aspire. + Whether to start a debug session, if running in an Aspire Terminal + Запускать ли сеанс отладки при работе в терминале Aspire. @@ -203,8 +203,8 @@ The state of the resource, eg Running - Timeout waiting for AppHost to start. - Превышено время ожидания запуска AppHost. + Timeout waiting for apphost to start. + Превышено время ожидания запуска AppHost. @@ -218,8 +218,8 @@ - Start project resources in watch mode. - Запустите ресурсы проекта в режиме наблюдения. + Start project resources in watch mode + Запустите ресурсы проекта в режиме наблюдения. diff --git a/src/Aspire.Cli/Resources/xlf/RunCommandStrings.tr.xlf b/src/Aspire.Cli/Resources/xlf/RunCommandStrings.tr.xlf index 33eee32031e..2522a55364e 100644 --- a/src/Aspire.Cli/Resources/xlf/RunCommandStrings.tr.xlf +++ b/src/Aspire.Cli/Resources/xlf/RunCommandStrings.tr.xlf @@ -33,18 +33,18 @@ - AppHost process exited with code {0}. - AppHost işlemi {0} koduyla sonlandırıldı. + Apphost process exited with code {0}. + AppHost işlemi {0} koduyla sonlandırıldı. - AppHost failed to build. - AppHost failed to build. + Apphost failed to build. + Apphost failed to build. - AppHost started successfully. - AppHost başarıyla başlatıldı. + Apphost started successfully. + AppHost başarıyla başlatıldı. @@ -73,13 +73,13 @@ - Run an Aspire AppHost interactively for development. + Run an Aspire apphost interactively for development Geliştirme modunda bir Aspire uygulama ana işlemini çalıştırın. - Run the AppHost in the background and exit after it starts. - AppHost'u arka planda çalıştırın ve başladıktan sonra çıkın. + Run the apphost in the background and exit after it starts + AppHost'u arka planda çalıştırın ve başladıktan sonra çıkın. @@ -88,13 +88,13 @@ - Failed to start the AppHost. - AppHost başlatılamadı. + Failed to start the apphost. + AppHost başlatılamadı. - Stop any running instance of the AppHost without prompting. - AppHost’un çalışan tüm örneklerini istemeden durdurun. + Stop any running instance of the apphost without prompting + AppHost’un çalışan tüm örneklerini istemeden durdurun. @@ -113,18 +113,18 @@ - Output format for detached AppHost results. + Output format for detached apphost results Sonucu JSON olarak çıkar (yalnızca --detach ile geçerlidir). - Run in isolated mode with randomized ports and isolated user secrets, allowing multiple instances to run simultaneously. - Rastgele bağlantı noktaları ve yalıtılmış kullanıcı gizli dizileri ile yalıtılmış modda çalıştırarak birden çok örneğin aynı anda çalışmasına olanak tanıyın. + Run in isolated mode with randomized ports and isolated user secrets, allowing multiple instances to run simultaneously + Rastgele bağlantı noktaları ve yalıtılmış kullanıcı gizli dizileri ile yalıtılmış modda çalıştırarak birden çok örneğin aynı anda çalışmasına olanak tanıyın. - A running instance of this AppHost was found and will be stopped. To run multiple isolated instances simultaneously, run from different directories such as git worktree directories. - Bu AppHost'un çalışan bir örneği bulundu ve durdurulacak. Birden çok yalıtılmış örneği aynı anda çalıştırmak için git çalışma ağacı dizinleri gibi farklı dizinlerden çalıştırın. + A running instance of this apphost was found and will be stopped. To run multiple isolated instances simultaneously, run from different directories such as git worktree directories. + Bu AppHost'un çalışan bir örneği bulundu ve durdurulacak. Birden çok yalıtılmış örneği aynı anda çalıştırmak için git çalışma ağacı dizinleri gibi farklı dizinlerden çalıştırın. @@ -133,8 +133,8 @@ - Do not build or restore the project before running. - Do not build or restore the project before running. + Do not build or restore the project before running + Do not build or restore the project before running @@ -153,8 +153,8 @@ - The path to the Aspire AppHost project file. - Aspire AppHost proje dosyasının yolu. + The path to the Aspire apphost project file + Aspire AppHost proje dosyasının yolu. @@ -173,8 +173,8 @@ - Whether to start a debug session, if running in an Aspire Terminal. - Aspire Terminal'de çalışıyorsa, hata ayıklama oturumu başlatılıp başlatılmayacağı. + Whether to start a debug session, if running in an Aspire Terminal + Aspire Terminal'de çalışıyorsa, hata ayıklama oturumu başlatılıp başlatılmayacağı. @@ -203,8 +203,8 @@ The state of the resource, eg Running - Timeout waiting for AppHost to start. - AppHost'un başlamasını beklerken zaman aşımı. + Timeout waiting for apphost to start. + AppHost'un başlamasını beklerken zaman aşımı. @@ -218,8 +218,8 @@ - Start project resources in watch mode. - Proje kaynaklarını izleme modunda başlatın. + Start project resources in watch mode + Proje kaynaklarını izleme modunda başlatın. diff --git a/src/Aspire.Cli/Resources/xlf/RunCommandStrings.zh-Hans.xlf b/src/Aspire.Cli/Resources/xlf/RunCommandStrings.zh-Hans.xlf index f233d92d5b5..c447028f68d 100644 --- a/src/Aspire.Cli/Resources/xlf/RunCommandStrings.zh-Hans.xlf +++ b/src/Aspire.Cli/Resources/xlf/RunCommandStrings.zh-Hans.xlf @@ -33,18 +33,18 @@ - AppHost process exited with code {0}. - AppHost 进程已退出,代码为 {0}。 + Apphost process exited with code {0}. + AppHost 进程已退出,代码为 {0}。 - AppHost failed to build. - AppHost failed to build. + Apphost failed to build. + Apphost failed to build. - AppHost started successfully. - 已成功启动 AppHost。 + Apphost started successfully. + 已成功启动 AppHost。 @@ -73,13 +73,13 @@ - Run an Aspire AppHost interactively for development. + Run an Aspire apphost interactively for development 在开发模式下运行 Aspire 应用主机。 - Run the AppHost in the background and exit after it starts. - 在后台运行 AppHost,并在其启动后退出。 + Run the apphost in the background and exit after it starts + 在后台运行 AppHost,并在其启动后退出。 @@ -88,13 +88,13 @@ - Failed to start the AppHost. - 启动 AppHost 失败。 + Failed to start the apphost. + 启动 AppHost 失败。 - Stop any running instance of the AppHost without prompting. - 在不提示的情况下停止任何正在运行的 AppHost 实例。 + Stop any running instance of the apphost without prompting + 在不提示的情况下停止任何正在运行的 AppHost 实例。 @@ -113,18 +113,18 @@ - Output format for detached AppHost results. + Output format for detached apphost results 以 JSON 格式输出结果(仅在使用 --detach 时有效)。 - Run in isolated mode with randomized ports and isolated user secrets, allowing multiple instances to run simultaneously. - 使用随机端口和独立的用户机密以独立模式运行,支持多个实例同时运行。 + Run in isolated mode with randomized ports and isolated user secrets, allowing multiple instances to run simultaneously + 使用随机端口和独立的用户机密以独立模式运行,支持多个实例同时运行。 - A running instance of this AppHost was found and will be stopped. To run multiple isolated instances simultaneously, run from different directories such as git worktree directories. - 已发现此 AppHost 有正在运行的实例,并且该实例将停止。若要同时运行多个独立实例,请从不同目录(如 Git 工作树目录)运行。 + A running instance of this apphost was found and will be stopped. To run multiple isolated instances simultaneously, run from different directories such as git worktree directories. + 已发现此 AppHost 有正在运行的实例,并且该实例将停止。若要同时运行多个独立实例,请从不同目录(如 Git 工作树目录)运行。 @@ -133,8 +133,8 @@ - Do not build or restore the project before running. - Do not build or restore the project before running. + Do not build or restore the project before running + Do not build or restore the project before running @@ -153,8 +153,8 @@ - The path to the Aspire AppHost project file. - Aspire AppHost 项目文件的路径。 + The path to the Aspire apphost project file + Aspire AppHost 项目文件的路径。 @@ -173,8 +173,8 @@ - Whether to start a debug session, if running in an Aspire Terminal. - 是否在 Aspire 终端中运行时启动调试会话。 + Whether to start a debug session, if running in an Aspire Terminal + 是否在 Aspire 终端中运行时启动调试会话。 @@ -203,8 +203,8 @@ The state of the resource, eg Running - Timeout waiting for AppHost to start. - 等待 AppHost 启动超时。 + Timeout waiting for apphost to start. + 等待 AppHost 启动超时。 @@ -218,8 +218,8 @@ - Start project resources in watch mode. - 在监视模式下启动项目资源。 + Start project resources in watch mode + 在监视模式下启动项目资源。 diff --git a/src/Aspire.Cli/Resources/xlf/RunCommandStrings.zh-Hant.xlf b/src/Aspire.Cli/Resources/xlf/RunCommandStrings.zh-Hant.xlf index 973f3588808..4a324d12a2c 100644 --- a/src/Aspire.Cli/Resources/xlf/RunCommandStrings.zh-Hant.xlf +++ b/src/Aspire.Cli/Resources/xlf/RunCommandStrings.zh-Hant.xlf @@ -33,18 +33,18 @@ - AppHost process exited with code {0}. - AppHost 程序以返回碼 {0} 結束。 + Apphost process exited with code {0}. + AppHost 程序以返回碼 {0} 結束。 - AppHost failed to build. - AppHost failed to build. + Apphost failed to build. + Apphost failed to build. - AppHost started successfully. - 已成功啟動 AppHost。 + Apphost started successfully. + 已成功啟動 AppHost。 @@ -73,13 +73,13 @@ - Run an Aspire AppHost interactively for development. + Run an Aspire apphost interactively for development 在開發模式中執行 Aspire AppHost。 - Run the AppHost in the background and exit after it starts. - 在背景執行 AppHost,啟動後即退出。 + Run the apphost in the background and exit after it starts + 在背景執行 AppHost,啟動後即退出。 @@ -88,13 +88,13 @@ - Failed to start the AppHost. - 無法啟動 AppHost。 + Failed to start the apphost. + 無法啟動 AppHost。 - Stop any running instance of the AppHost without prompting. - 停止任何正在執行的 AppHost 執行個體,且不顯示提示。 + Stop any running instance of the apphost without prompting + 停止任何正在執行的 AppHost 執行個體,且不顯示提示。 @@ -113,18 +113,18 @@ - Output format for detached AppHost results. + Output format for detached apphost results 輸出結果為 JSON (僅於使用 --detach 時有效)。 - Run in isolated mode with randomized ports and isolated user secrets, allowing multiple instances to run simultaneously. - 在隔離模式中搭配隨機化連接埠和隔離的使用者袐密執行,允許同時執行多個執行個體。 + Run in isolated mode with randomized ports and isolated user secrets, allowing multiple instances to run simultaneously + 在隔離模式中搭配隨機化連接埠和隔離的使用者袐密執行,允許同時執行多個執行個體。 - A running instance of this AppHost was found and will be stopped. To run multiple isolated instances simultaneously, run from different directories such as git worktree directories. - 找到此 AppHost 的一個執行中執行個體,將會停止。若要同時執行多個隔離的執行個體,請從 git worktree 目錄等不同目錄執行。 + A running instance of this apphost was found and will be stopped. To run multiple isolated instances simultaneously, run from different directories such as git worktree directories. + 找到此 AppHost 的一個執行中執行個體,將會停止。若要同時執行多個隔離的執行個體,請從 git worktree 目錄等不同目錄執行。 @@ -133,8 +133,8 @@ - Do not build or restore the project before running. - Do not build or restore the project before running. + Do not build or restore the project before running + Do not build or restore the project before running @@ -153,8 +153,8 @@ - The path to the Aspire AppHost project file. - Aspire AppHost 專案檔案的路徑。 + The path to the Aspire apphost project file + Aspire AppHost 專案檔案的路徑。 @@ -173,8 +173,8 @@ - Whether to start a debug session, if running in an Aspire Terminal. - 是否要啟動偵測工作階段 (當在 Aspire 終端機中執行時)。 + Whether to start a debug session, if running in an Aspire Terminal + 是否要啟動偵測工作階段 (當在 Aspire 終端機中執行時)。 @@ -203,8 +203,8 @@ The state of the resource, eg Running - Timeout waiting for AppHost to start. - 等候 AppHost 啟動時發生逾時。 + Timeout waiting for apphost to start. + 等候 AppHost 啟動時發生逾時。 @@ -218,8 +218,8 @@ - Start project resources in watch mode. - 以監視模式啟動專案資源。 + Start project resources in watch mode + 以監視模式啟動專案資源。 diff --git a/src/Aspire.Cli/Resources/xlf/SecretCommandStrings.cs.xlf b/src/Aspire.Cli/Resources/xlf/SecretCommandStrings.cs.xlf index 75df010ec20..bfab5c60a9d 100644 --- a/src/Aspire.Cli/Resources/xlf/SecretCommandStrings.cs.xlf +++ b/src/Aspire.Cli/Resources/xlf/SecretCommandStrings.cs.xlf @@ -3,48 +3,48 @@ - Could not find an AppHost project. - Could not find an AppHost project. + Could not find an apphost project. + Could not find an apphost project. - Delete a secret. - Delete a secret. + Delete a secret + Delete a secret - Manage AppHost user secrets. - Manage AppHost user secrets. + Manage apphost user secrets + Manage apphost user secrets - Output format. - Output format. + Output format + Output format - Get a secret value. - Get a secret value. + Get a secret value + Get a secret value - The secret key (e.g., Azure:Location or Parameters:postgres-password). - The secret key (e.g., Azure:Location or Parameters:postgres-password). + The secret key (e.g., Azure:Location or Parameters:postgres-password) + The secret key (e.g., Azure:Location or Parameters:postgres-password) - The secret key to delete. - The secret key to delete. + The secret key to delete + The secret key to delete - The secret key to retrieve. - The secret key to retrieve. + The secret key to retrieve + The secret key to retrieve - List all secrets. - List all secrets. + List all secrets + List all secrets @@ -73,13 +73,13 @@ - Set a secret value. - Set a secret value. + Set a secret value + Set a secret value - The secret value to set. - The secret value to set. + The secret value to set + The secret value to set diff --git a/src/Aspire.Cli/Resources/xlf/SecretCommandStrings.de.xlf b/src/Aspire.Cli/Resources/xlf/SecretCommandStrings.de.xlf index 62c1448cf6a..4c17b96f3e9 100644 --- a/src/Aspire.Cli/Resources/xlf/SecretCommandStrings.de.xlf +++ b/src/Aspire.Cli/Resources/xlf/SecretCommandStrings.de.xlf @@ -3,48 +3,48 @@ - Could not find an AppHost project. - Could not find an AppHost project. + Could not find an apphost project. + Could not find an apphost project. - Delete a secret. - Delete a secret. + Delete a secret + Delete a secret - Manage AppHost user secrets. - Manage AppHost user secrets. + Manage apphost user secrets + Manage apphost user secrets - Output format. - Output format. + Output format + Output format - Get a secret value. - Get a secret value. + Get a secret value + Get a secret value - The secret key (e.g., Azure:Location or Parameters:postgres-password). - The secret key (e.g., Azure:Location or Parameters:postgres-password). + The secret key (e.g., Azure:Location or Parameters:postgres-password) + The secret key (e.g., Azure:Location or Parameters:postgres-password) - The secret key to delete. - The secret key to delete. + The secret key to delete + The secret key to delete - The secret key to retrieve. - The secret key to retrieve. + The secret key to retrieve + The secret key to retrieve - List all secrets. - List all secrets. + List all secrets + List all secrets @@ -73,13 +73,13 @@ - Set a secret value. - Set a secret value. + Set a secret value + Set a secret value - The secret value to set. - The secret value to set. + The secret value to set + The secret value to set diff --git a/src/Aspire.Cli/Resources/xlf/SecretCommandStrings.es.xlf b/src/Aspire.Cli/Resources/xlf/SecretCommandStrings.es.xlf index 1dea7da9845..21e327a2f16 100644 --- a/src/Aspire.Cli/Resources/xlf/SecretCommandStrings.es.xlf +++ b/src/Aspire.Cli/Resources/xlf/SecretCommandStrings.es.xlf @@ -3,48 +3,48 @@ - Could not find an AppHost project. - Could not find an AppHost project. + Could not find an apphost project. + Could not find an apphost project. - Delete a secret. - Delete a secret. + Delete a secret + Delete a secret - Manage AppHost user secrets. - Manage AppHost user secrets. + Manage apphost user secrets + Manage apphost user secrets - Output format. - Output format. + Output format + Output format - Get a secret value. - Get a secret value. + Get a secret value + Get a secret value - The secret key (e.g., Azure:Location or Parameters:postgres-password). - The secret key (e.g., Azure:Location or Parameters:postgres-password). + The secret key (e.g., Azure:Location or Parameters:postgres-password) + The secret key (e.g., Azure:Location or Parameters:postgres-password) - The secret key to delete. - The secret key to delete. + The secret key to delete + The secret key to delete - The secret key to retrieve. - The secret key to retrieve. + The secret key to retrieve + The secret key to retrieve - List all secrets. - List all secrets. + List all secrets + List all secrets @@ -73,13 +73,13 @@ - Set a secret value. - Set a secret value. + Set a secret value + Set a secret value - The secret value to set. - The secret value to set. + The secret value to set + The secret value to set diff --git a/src/Aspire.Cli/Resources/xlf/SecretCommandStrings.fr.xlf b/src/Aspire.Cli/Resources/xlf/SecretCommandStrings.fr.xlf index 41c7f94162a..b0b047c84d1 100644 --- a/src/Aspire.Cli/Resources/xlf/SecretCommandStrings.fr.xlf +++ b/src/Aspire.Cli/Resources/xlf/SecretCommandStrings.fr.xlf @@ -3,48 +3,48 @@ - Could not find an AppHost project. - Could not find an AppHost project. + Could not find an apphost project. + Could not find an apphost project. - Delete a secret. - Delete a secret. + Delete a secret + Delete a secret - Manage AppHost user secrets. - Manage AppHost user secrets. + Manage apphost user secrets + Manage apphost user secrets - Output format. - Output format. + Output format + Output format - Get a secret value. - Get a secret value. + Get a secret value + Get a secret value - The secret key (e.g., Azure:Location or Parameters:postgres-password). - The secret key (e.g., Azure:Location or Parameters:postgres-password). + The secret key (e.g., Azure:Location or Parameters:postgres-password) + The secret key (e.g., Azure:Location or Parameters:postgres-password) - The secret key to delete. - The secret key to delete. + The secret key to delete + The secret key to delete - The secret key to retrieve. - The secret key to retrieve. + The secret key to retrieve + The secret key to retrieve - List all secrets. - List all secrets. + List all secrets + List all secrets @@ -73,13 +73,13 @@ - Set a secret value. - Set a secret value. + Set a secret value + Set a secret value - The secret value to set. - The secret value to set. + The secret value to set + The secret value to set diff --git a/src/Aspire.Cli/Resources/xlf/SecretCommandStrings.it.xlf b/src/Aspire.Cli/Resources/xlf/SecretCommandStrings.it.xlf index da36b39dc8f..08fdc145810 100644 --- a/src/Aspire.Cli/Resources/xlf/SecretCommandStrings.it.xlf +++ b/src/Aspire.Cli/Resources/xlf/SecretCommandStrings.it.xlf @@ -3,48 +3,48 @@ - Could not find an AppHost project. - Could not find an AppHost project. + Could not find an apphost project. + Could not find an apphost project. - Delete a secret. - Delete a secret. + Delete a secret + Delete a secret - Manage AppHost user secrets. - Manage AppHost user secrets. + Manage apphost user secrets + Manage apphost user secrets - Output format. - Output format. + Output format + Output format - Get a secret value. - Get a secret value. + Get a secret value + Get a secret value - The secret key (e.g., Azure:Location or Parameters:postgres-password). - The secret key (e.g., Azure:Location or Parameters:postgres-password). + The secret key (e.g., Azure:Location or Parameters:postgres-password) + The secret key (e.g., Azure:Location or Parameters:postgres-password) - The secret key to delete. - The secret key to delete. + The secret key to delete + The secret key to delete - The secret key to retrieve. - The secret key to retrieve. + The secret key to retrieve + The secret key to retrieve - List all secrets. - List all secrets. + List all secrets + List all secrets @@ -73,13 +73,13 @@ - Set a secret value. - Set a secret value. + Set a secret value + Set a secret value - The secret value to set. - The secret value to set. + The secret value to set + The secret value to set diff --git a/src/Aspire.Cli/Resources/xlf/SecretCommandStrings.ja.xlf b/src/Aspire.Cli/Resources/xlf/SecretCommandStrings.ja.xlf index 6284b978d7d..9fda24769ea 100644 --- a/src/Aspire.Cli/Resources/xlf/SecretCommandStrings.ja.xlf +++ b/src/Aspire.Cli/Resources/xlf/SecretCommandStrings.ja.xlf @@ -3,48 +3,48 @@ - Could not find an AppHost project. - Could not find an AppHost project. + Could not find an apphost project. + Could not find an apphost project. - Delete a secret. - Delete a secret. + Delete a secret + Delete a secret - Manage AppHost user secrets. - Manage AppHost user secrets. + Manage apphost user secrets + Manage apphost user secrets - Output format. - Output format. + Output format + Output format - Get a secret value. - Get a secret value. + Get a secret value + Get a secret value - The secret key (e.g., Azure:Location or Parameters:postgres-password). - The secret key (e.g., Azure:Location or Parameters:postgres-password). + The secret key (e.g., Azure:Location or Parameters:postgres-password) + The secret key (e.g., Azure:Location or Parameters:postgres-password) - The secret key to delete. - The secret key to delete. + The secret key to delete + The secret key to delete - The secret key to retrieve. - The secret key to retrieve. + The secret key to retrieve + The secret key to retrieve - List all secrets. - List all secrets. + List all secrets + List all secrets @@ -73,13 +73,13 @@ - Set a secret value. - Set a secret value. + Set a secret value + Set a secret value - The secret value to set. - The secret value to set. + The secret value to set + The secret value to set diff --git a/src/Aspire.Cli/Resources/xlf/SecretCommandStrings.ko.xlf b/src/Aspire.Cli/Resources/xlf/SecretCommandStrings.ko.xlf index f9e970f81c8..aaac5eea9e4 100644 --- a/src/Aspire.Cli/Resources/xlf/SecretCommandStrings.ko.xlf +++ b/src/Aspire.Cli/Resources/xlf/SecretCommandStrings.ko.xlf @@ -3,48 +3,48 @@ - Could not find an AppHost project. - Could not find an AppHost project. + Could not find an apphost project. + Could not find an apphost project. - Delete a secret. - Delete a secret. + Delete a secret + Delete a secret - Manage AppHost user secrets. - Manage AppHost user secrets. + Manage apphost user secrets + Manage apphost user secrets - Output format. - Output format. + Output format + Output format - Get a secret value. - Get a secret value. + Get a secret value + Get a secret value - The secret key (e.g., Azure:Location or Parameters:postgres-password). - The secret key (e.g., Azure:Location or Parameters:postgres-password). + The secret key (e.g., Azure:Location or Parameters:postgres-password) + The secret key (e.g., Azure:Location or Parameters:postgres-password) - The secret key to delete. - The secret key to delete. + The secret key to delete + The secret key to delete - The secret key to retrieve. - The secret key to retrieve. + The secret key to retrieve + The secret key to retrieve - List all secrets. - List all secrets. + List all secrets + List all secrets @@ -73,13 +73,13 @@ - Set a secret value. - Set a secret value. + Set a secret value + Set a secret value - The secret value to set. - The secret value to set. + The secret value to set + The secret value to set diff --git a/src/Aspire.Cli/Resources/xlf/SecretCommandStrings.pl.xlf b/src/Aspire.Cli/Resources/xlf/SecretCommandStrings.pl.xlf index 59200379741..35c944f61a5 100644 --- a/src/Aspire.Cli/Resources/xlf/SecretCommandStrings.pl.xlf +++ b/src/Aspire.Cli/Resources/xlf/SecretCommandStrings.pl.xlf @@ -3,48 +3,48 @@ - Could not find an AppHost project. - Could not find an AppHost project. + Could not find an apphost project. + Could not find an apphost project. - Delete a secret. - Delete a secret. + Delete a secret + Delete a secret - Manage AppHost user secrets. - Manage AppHost user secrets. + Manage apphost user secrets + Manage apphost user secrets - Output format. - Output format. + Output format + Output format - Get a secret value. - Get a secret value. + Get a secret value + Get a secret value - The secret key (e.g., Azure:Location or Parameters:postgres-password). - The secret key (e.g., Azure:Location or Parameters:postgres-password). + The secret key (e.g., Azure:Location or Parameters:postgres-password) + The secret key (e.g., Azure:Location or Parameters:postgres-password) - The secret key to delete. - The secret key to delete. + The secret key to delete + The secret key to delete - The secret key to retrieve. - The secret key to retrieve. + The secret key to retrieve + The secret key to retrieve - List all secrets. - List all secrets. + List all secrets + List all secrets @@ -73,13 +73,13 @@ - Set a secret value. - Set a secret value. + Set a secret value + Set a secret value - The secret value to set. - The secret value to set. + The secret value to set + The secret value to set diff --git a/src/Aspire.Cli/Resources/xlf/SecretCommandStrings.pt-BR.xlf b/src/Aspire.Cli/Resources/xlf/SecretCommandStrings.pt-BR.xlf index 47f05916d33..801ff4c19c3 100644 --- a/src/Aspire.Cli/Resources/xlf/SecretCommandStrings.pt-BR.xlf +++ b/src/Aspire.Cli/Resources/xlf/SecretCommandStrings.pt-BR.xlf @@ -3,48 +3,48 @@ - Could not find an AppHost project. - Could not find an AppHost project. + Could not find an apphost project. + Could not find an apphost project. - Delete a secret. - Delete a secret. + Delete a secret + Delete a secret - Manage AppHost user secrets. - Manage AppHost user secrets. + Manage apphost user secrets + Manage apphost user secrets - Output format. - Output format. + Output format + Output format - Get a secret value. - Get a secret value. + Get a secret value + Get a secret value - The secret key (e.g., Azure:Location or Parameters:postgres-password). - The secret key (e.g., Azure:Location or Parameters:postgres-password). + The secret key (e.g., Azure:Location or Parameters:postgres-password) + The secret key (e.g., Azure:Location or Parameters:postgres-password) - The secret key to delete. - The secret key to delete. + The secret key to delete + The secret key to delete - The secret key to retrieve. - The secret key to retrieve. + The secret key to retrieve + The secret key to retrieve - List all secrets. - List all secrets. + List all secrets + List all secrets @@ -73,13 +73,13 @@ - Set a secret value. - Set a secret value. + Set a secret value + Set a secret value - The secret value to set. - The secret value to set. + The secret value to set + The secret value to set diff --git a/src/Aspire.Cli/Resources/xlf/SecretCommandStrings.ru.xlf b/src/Aspire.Cli/Resources/xlf/SecretCommandStrings.ru.xlf index 611b0ee60c5..2adb476c63e 100644 --- a/src/Aspire.Cli/Resources/xlf/SecretCommandStrings.ru.xlf +++ b/src/Aspire.Cli/Resources/xlf/SecretCommandStrings.ru.xlf @@ -3,48 +3,48 @@ - Could not find an AppHost project. - Could not find an AppHost project. + Could not find an apphost project. + Could not find an apphost project. - Delete a secret. - Delete a secret. + Delete a secret + Delete a secret - Manage AppHost user secrets. - Manage AppHost user secrets. + Manage apphost user secrets + Manage apphost user secrets - Output format. - Output format. + Output format + Output format - Get a secret value. - Get a secret value. + Get a secret value + Get a secret value - The secret key (e.g., Azure:Location or Parameters:postgres-password). - The secret key (e.g., Azure:Location or Parameters:postgres-password). + The secret key (e.g., Azure:Location or Parameters:postgres-password) + The secret key (e.g., Azure:Location or Parameters:postgres-password) - The secret key to delete. - The secret key to delete. + The secret key to delete + The secret key to delete - The secret key to retrieve. - The secret key to retrieve. + The secret key to retrieve + The secret key to retrieve - List all secrets. - List all secrets. + List all secrets + List all secrets @@ -73,13 +73,13 @@ - Set a secret value. - Set a secret value. + Set a secret value + Set a secret value - The secret value to set. - The secret value to set. + The secret value to set + The secret value to set diff --git a/src/Aspire.Cli/Resources/xlf/SecretCommandStrings.tr.xlf b/src/Aspire.Cli/Resources/xlf/SecretCommandStrings.tr.xlf index 0f9e6d27272..ebf0c9d88e8 100644 --- a/src/Aspire.Cli/Resources/xlf/SecretCommandStrings.tr.xlf +++ b/src/Aspire.Cli/Resources/xlf/SecretCommandStrings.tr.xlf @@ -3,48 +3,48 @@ - Could not find an AppHost project. - Could not find an AppHost project. + Could not find an apphost project. + Could not find an apphost project. - Delete a secret. - Delete a secret. + Delete a secret + Delete a secret - Manage AppHost user secrets. - Manage AppHost user secrets. + Manage apphost user secrets + Manage apphost user secrets - Output format. - Output format. + Output format + Output format - Get a secret value. - Get a secret value. + Get a secret value + Get a secret value - The secret key (e.g., Azure:Location or Parameters:postgres-password). - The secret key (e.g., Azure:Location or Parameters:postgres-password). + The secret key (e.g., Azure:Location or Parameters:postgres-password) + The secret key (e.g., Azure:Location or Parameters:postgres-password) - The secret key to delete. - The secret key to delete. + The secret key to delete + The secret key to delete - The secret key to retrieve. - The secret key to retrieve. + The secret key to retrieve + The secret key to retrieve - List all secrets. - List all secrets. + List all secrets + List all secrets @@ -73,13 +73,13 @@ - Set a secret value. - Set a secret value. + Set a secret value + Set a secret value - The secret value to set. - The secret value to set. + The secret value to set + The secret value to set diff --git a/src/Aspire.Cli/Resources/xlf/SecretCommandStrings.zh-Hans.xlf b/src/Aspire.Cli/Resources/xlf/SecretCommandStrings.zh-Hans.xlf index c4f5f8d07ab..e164737af2f 100644 --- a/src/Aspire.Cli/Resources/xlf/SecretCommandStrings.zh-Hans.xlf +++ b/src/Aspire.Cli/Resources/xlf/SecretCommandStrings.zh-Hans.xlf @@ -3,48 +3,48 @@ - Could not find an AppHost project. - Could not find an AppHost project. + Could not find an apphost project. + Could not find an apphost project. - Delete a secret. - Delete a secret. + Delete a secret + Delete a secret - Manage AppHost user secrets. - Manage AppHost user secrets. + Manage apphost user secrets + Manage apphost user secrets - Output format. - Output format. + Output format + Output format - Get a secret value. - Get a secret value. + Get a secret value + Get a secret value - The secret key (e.g., Azure:Location or Parameters:postgres-password). - The secret key (e.g., Azure:Location or Parameters:postgres-password). + The secret key (e.g., Azure:Location or Parameters:postgres-password) + The secret key (e.g., Azure:Location or Parameters:postgres-password) - The secret key to delete. - The secret key to delete. + The secret key to delete + The secret key to delete - The secret key to retrieve. - The secret key to retrieve. + The secret key to retrieve + The secret key to retrieve - List all secrets. - List all secrets. + List all secrets + List all secrets @@ -73,13 +73,13 @@ - Set a secret value. - Set a secret value. + Set a secret value + Set a secret value - The secret value to set. - The secret value to set. + The secret value to set + The secret value to set diff --git a/src/Aspire.Cli/Resources/xlf/SecretCommandStrings.zh-Hant.xlf b/src/Aspire.Cli/Resources/xlf/SecretCommandStrings.zh-Hant.xlf index 654dfd558af..ae93f650333 100644 --- a/src/Aspire.Cli/Resources/xlf/SecretCommandStrings.zh-Hant.xlf +++ b/src/Aspire.Cli/Resources/xlf/SecretCommandStrings.zh-Hant.xlf @@ -3,48 +3,48 @@ - Could not find an AppHost project. - Could not find an AppHost project. + Could not find an apphost project. + Could not find an apphost project. - Delete a secret. - Delete a secret. + Delete a secret + Delete a secret - Manage AppHost user secrets. - Manage AppHost user secrets. + Manage apphost user secrets + Manage apphost user secrets - Output format. - Output format. + Output format + Output format - Get a secret value. - Get a secret value. + Get a secret value + Get a secret value - The secret key (e.g., Azure:Location or Parameters:postgres-password). - The secret key (e.g., Azure:Location or Parameters:postgres-password). + The secret key (e.g., Azure:Location or Parameters:postgres-password) + The secret key (e.g., Azure:Location or Parameters:postgres-password) - The secret key to delete. - The secret key to delete. + The secret key to delete + The secret key to delete - The secret key to retrieve. - The secret key to retrieve. + The secret key to retrieve + The secret key to retrieve - List all secrets. - List all secrets. + List all secrets + List all secrets @@ -73,13 +73,13 @@ - Set a secret value. - Set a secret value. + Set a secret value + Set a secret value - The secret value to set. - The secret value to set. + The secret value to set + The secret value to set diff --git a/src/Aspire.Cli/Resources/xlf/SharedCommandStrings.cs.xlf b/src/Aspire.Cli/Resources/xlf/SharedCommandStrings.cs.xlf index 107cc5a01b7..33cb5a924b2 100644 --- a/src/Aspire.Cli/Resources/xlf/SharedCommandStrings.cs.xlf +++ b/src/Aspire.Cli/Resources/xlf/SharedCommandStrings.cs.xlf @@ -3,48 +3,63 @@ - No running AppHost found. Use 'aspire run' to start one first. - No running AppHost found. Use 'aspire run' to start one first. + No running apphost found. Use 'aspire run' to start one first. + No running apphost found. Use 'aspire run' to start one first. - Output format for detached AppHost results. - Output format for detached AppHost results. + Output format for detached apphost results + Output format for detached apphost results - Run in isolated mode with randomized ports and isolated user secrets, allowing multiple instances to run simultaneously. - Run in isolated mode with randomized ports and isolated user secrets, allowing multiple instances to run simultaneously. + Run in isolated mode with randomized ports and isolated user secrets, allowing multiple instances to run simultaneously + Run in isolated mode with randomized ports and isolated user secrets, allowing multiple instances to run simultaneously - Multiple running AppHosts found in the current directory. Select from running AppHosts. - Multiple running AppHosts found in the current directory. Select from running AppHosts. + Multiple running apphosts found in the current directory. Select from running apphosts. + Multiple running apphosts found in the current directory. Select from running apphosts. - No running AppHosts found in the current directory. Select from all running AppHosts. - No running AppHosts found in the current directory. Select from all running AppHosts. + No running apphosts found in the current directory. Select from all running apphosts. + No running apphosts found in the current directory. Select from all running apphosts. - The path to the Aspire AppHost project file. - The path to the Aspire AppHost project file. + The path to the Aspire apphost project file + The path to the Aspire apphost project file + + + + The environment to use for the operation. The default is 'Production'. + The environment to use for the operation. The default is 'Production'. + + + + Include exception details (stack traces) in pipeline logs + Include exception details (stack traces) in pipeline logs + + + + Set the minimum log level for pipeline logging (trace, debug, information, warning, error, critical). The default is 'information'. + Set the minimum log level for pipeline logging (trace, debug, information, warning, error, critical). The default is 'information'. - Scanning for running AppHosts... - Scanning for running AppHosts... + Scanning for running apphosts... + Scanning for running apphosts... - Select an AppHost to {0}: - Select an AppHost to {0}: + Select an apphost to {0}: + Select an apphost to {0}: - Using AppHost: {0} - Using AppHost: {0} + Using apphost: {0} + Using apphost: {0} diff --git a/src/Aspire.Cli/Resources/xlf/SharedCommandStrings.de.xlf b/src/Aspire.Cli/Resources/xlf/SharedCommandStrings.de.xlf index bb25f939810..8259b85a476 100644 --- a/src/Aspire.Cli/Resources/xlf/SharedCommandStrings.de.xlf +++ b/src/Aspire.Cli/Resources/xlf/SharedCommandStrings.de.xlf @@ -3,48 +3,63 @@ - No running AppHost found. Use 'aspire run' to start one first. - No running AppHost found. Use 'aspire run' to start one first. + No running apphost found. Use 'aspire run' to start one first. + No running apphost found. Use 'aspire run' to start one first. - Output format for detached AppHost results. - Output format for detached AppHost results. + Output format for detached apphost results + Output format for detached apphost results - Run in isolated mode with randomized ports and isolated user secrets, allowing multiple instances to run simultaneously. - Run in isolated mode with randomized ports and isolated user secrets, allowing multiple instances to run simultaneously. + Run in isolated mode with randomized ports and isolated user secrets, allowing multiple instances to run simultaneously + Run in isolated mode with randomized ports and isolated user secrets, allowing multiple instances to run simultaneously - Multiple running AppHosts found in the current directory. Select from running AppHosts. - Multiple running AppHosts found in the current directory. Select from running AppHosts. + Multiple running apphosts found in the current directory. Select from running apphosts. + Multiple running apphosts found in the current directory. Select from running apphosts. - No running AppHosts found in the current directory. Select from all running AppHosts. - No running AppHosts found in the current directory. Select from all running AppHosts. + No running apphosts found in the current directory. Select from all running apphosts. + No running apphosts found in the current directory. Select from all running apphosts. - The path to the Aspire AppHost project file. - The path to the Aspire AppHost project file. + The path to the Aspire apphost project file + The path to the Aspire apphost project file + + + + The environment to use for the operation. The default is 'Production'. + The environment to use for the operation. The default is 'Production'. + + + + Include exception details (stack traces) in pipeline logs + Include exception details (stack traces) in pipeline logs + + + + Set the minimum log level for pipeline logging (trace, debug, information, warning, error, critical). The default is 'information'. + Set the minimum log level for pipeline logging (trace, debug, information, warning, error, critical). The default is 'information'. - Scanning for running AppHosts... - Scanning for running AppHosts... + Scanning for running apphosts... + Scanning for running apphosts... - Select an AppHost to {0}: - Select an AppHost to {0}: + Select an apphost to {0}: + Select an apphost to {0}: - Using AppHost: {0} - Using AppHost: {0} + Using apphost: {0} + Using apphost: {0} diff --git a/src/Aspire.Cli/Resources/xlf/SharedCommandStrings.es.xlf b/src/Aspire.Cli/Resources/xlf/SharedCommandStrings.es.xlf index b4715deaceb..18fd3b70efc 100644 --- a/src/Aspire.Cli/Resources/xlf/SharedCommandStrings.es.xlf +++ b/src/Aspire.Cli/Resources/xlf/SharedCommandStrings.es.xlf @@ -3,48 +3,63 @@ - No running AppHost found. Use 'aspire run' to start one first. - No running AppHost found. Use 'aspire run' to start one first. + No running apphost found. Use 'aspire run' to start one first. + No running apphost found. Use 'aspire run' to start one first. - Output format for detached AppHost results. - Output format for detached AppHost results. + Output format for detached apphost results + Output format for detached apphost results - Run in isolated mode with randomized ports and isolated user secrets, allowing multiple instances to run simultaneously. - Run in isolated mode with randomized ports and isolated user secrets, allowing multiple instances to run simultaneously. + Run in isolated mode with randomized ports and isolated user secrets, allowing multiple instances to run simultaneously + Run in isolated mode with randomized ports and isolated user secrets, allowing multiple instances to run simultaneously - Multiple running AppHosts found in the current directory. Select from running AppHosts. - Multiple running AppHosts found in the current directory. Select from running AppHosts. + Multiple running apphosts found in the current directory. Select from running apphosts. + Multiple running apphosts found in the current directory. Select from running apphosts. - No running AppHosts found in the current directory. Select from all running AppHosts. - No running AppHosts found in the current directory. Select from all running AppHosts. + No running apphosts found in the current directory. Select from all running apphosts. + No running apphosts found in the current directory. Select from all running apphosts. - The path to the Aspire AppHost project file. - The path to the Aspire AppHost project file. + The path to the Aspire apphost project file + The path to the Aspire apphost project file + + + + The environment to use for the operation. The default is 'Production'. + The environment to use for the operation. The default is 'Production'. + + + + Include exception details (stack traces) in pipeline logs + Include exception details (stack traces) in pipeline logs + + + + Set the minimum log level for pipeline logging (trace, debug, information, warning, error, critical). The default is 'information'. + Set the minimum log level for pipeline logging (trace, debug, information, warning, error, critical). The default is 'information'. - Scanning for running AppHosts... - Scanning for running AppHosts... + Scanning for running apphosts... + Scanning for running apphosts... - Select an AppHost to {0}: - Select an AppHost to {0}: + Select an apphost to {0}: + Select an apphost to {0}: - Using AppHost: {0} - Using AppHost: {0} + Using apphost: {0} + Using apphost: {0} diff --git a/src/Aspire.Cli/Resources/xlf/SharedCommandStrings.fr.xlf b/src/Aspire.Cli/Resources/xlf/SharedCommandStrings.fr.xlf index a511c9fb5e3..8f15b9a8f68 100644 --- a/src/Aspire.Cli/Resources/xlf/SharedCommandStrings.fr.xlf +++ b/src/Aspire.Cli/Resources/xlf/SharedCommandStrings.fr.xlf @@ -3,48 +3,63 @@ - No running AppHost found. Use 'aspire run' to start one first. - No running AppHost found. Use 'aspire run' to start one first. + No running apphost found. Use 'aspire run' to start one first. + No running apphost found. Use 'aspire run' to start one first. - Output format for detached AppHost results. - Output format for detached AppHost results. + Output format for detached apphost results + Output format for detached apphost results - Run in isolated mode with randomized ports and isolated user secrets, allowing multiple instances to run simultaneously. - Run in isolated mode with randomized ports and isolated user secrets, allowing multiple instances to run simultaneously. + Run in isolated mode with randomized ports and isolated user secrets, allowing multiple instances to run simultaneously + Run in isolated mode with randomized ports and isolated user secrets, allowing multiple instances to run simultaneously - Multiple running AppHosts found in the current directory. Select from running AppHosts. - Multiple running AppHosts found in the current directory. Select from running AppHosts. + Multiple running apphosts found in the current directory. Select from running apphosts. + Multiple running apphosts found in the current directory. Select from running apphosts. - No running AppHosts found in the current directory. Select from all running AppHosts. - No running AppHosts found in the current directory. Select from all running AppHosts. + No running apphosts found in the current directory. Select from all running apphosts. + No running apphosts found in the current directory. Select from all running apphosts. - The path to the Aspire AppHost project file. - The path to the Aspire AppHost project file. + The path to the Aspire apphost project file + The path to the Aspire apphost project file + + + + The environment to use for the operation. The default is 'Production'. + The environment to use for the operation. The default is 'Production'. + + + + Include exception details (stack traces) in pipeline logs + Include exception details (stack traces) in pipeline logs + + + + Set the minimum log level for pipeline logging (trace, debug, information, warning, error, critical). The default is 'information'. + Set the minimum log level for pipeline logging (trace, debug, information, warning, error, critical). The default is 'information'. - Scanning for running AppHosts... - Scanning for running AppHosts... + Scanning for running apphosts... + Scanning for running apphosts... - Select an AppHost to {0}: - Select an AppHost to {0}: + Select an apphost to {0}: + Select an apphost to {0}: - Using AppHost: {0} - Using AppHost: {0} + Using apphost: {0} + Using apphost: {0} diff --git a/src/Aspire.Cli/Resources/xlf/SharedCommandStrings.it.xlf b/src/Aspire.Cli/Resources/xlf/SharedCommandStrings.it.xlf index c83b0cee322..5993ce71ae5 100644 --- a/src/Aspire.Cli/Resources/xlf/SharedCommandStrings.it.xlf +++ b/src/Aspire.Cli/Resources/xlf/SharedCommandStrings.it.xlf @@ -3,48 +3,63 @@ - No running AppHost found. Use 'aspire run' to start one first. - No running AppHost found. Use 'aspire run' to start one first. + No running apphost found. Use 'aspire run' to start one first. + No running apphost found. Use 'aspire run' to start one first. - Output format for detached AppHost results. - Output format for detached AppHost results. + Output format for detached apphost results + Output format for detached apphost results - Run in isolated mode with randomized ports and isolated user secrets, allowing multiple instances to run simultaneously. - Run in isolated mode with randomized ports and isolated user secrets, allowing multiple instances to run simultaneously. + Run in isolated mode with randomized ports and isolated user secrets, allowing multiple instances to run simultaneously + Run in isolated mode with randomized ports and isolated user secrets, allowing multiple instances to run simultaneously - Multiple running AppHosts found in the current directory. Select from running AppHosts. - Multiple running AppHosts found in the current directory. Select from running AppHosts. + Multiple running apphosts found in the current directory. Select from running apphosts. + Multiple running apphosts found in the current directory. Select from running apphosts. - No running AppHosts found in the current directory. Select from all running AppHosts. - No running AppHosts found in the current directory. Select from all running AppHosts. + No running apphosts found in the current directory. Select from all running apphosts. + No running apphosts found in the current directory. Select from all running apphosts. - The path to the Aspire AppHost project file. - The path to the Aspire AppHost project file. + The path to the Aspire apphost project file + The path to the Aspire apphost project file + + + + The environment to use for the operation. The default is 'Production'. + The environment to use for the operation. The default is 'Production'. + + + + Include exception details (stack traces) in pipeline logs + Include exception details (stack traces) in pipeline logs + + + + Set the minimum log level for pipeline logging (trace, debug, information, warning, error, critical). The default is 'information'. + Set the minimum log level for pipeline logging (trace, debug, information, warning, error, critical). The default is 'information'. - Scanning for running AppHosts... - Scanning for running AppHosts... + Scanning for running apphosts... + Scanning for running apphosts... - Select an AppHost to {0}: - Select an AppHost to {0}: + Select an apphost to {0}: + Select an apphost to {0}: - Using AppHost: {0} - Using AppHost: {0} + Using apphost: {0} + Using apphost: {0} diff --git a/src/Aspire.Cli/Resources/xlf/SharedCommandStrings.ja.xlf b/src/Aspire.Cli/Resources/xlf/SharedCommandStrings.ja.xlf index 69e2c44925e..1e9487c784c 100644 --- a/src/Aspire.Cli/Resources/xlf/SharedCommandStrings.ja.xlf +++ b/src/Aspire.Cli/Resources/xlf/SharedCommandStrings.ja.xlf @@ -3,48 +3,63 @@ - No running AppHost found. Use 'aspire run' to start one first. - No running AppHost found. Use 'aspire run' to start one first. + No running apphost found. Use 'aspire run' to start one first. + No running apphost found. Use 'aspire run' to start one first. - Output format for detached AppHost results. - Output format for detached AppHost results. + Output format for detached apphost results + Output format for detached apphost results - Run in isolated mode with randomized ports and isolated user secrets, allowing multiple instances to run simultaneously. - Run in isolated mode with randomized ports and isolated user secrets, allowing multiple instances to run simultaneously. + Run in isolated mode with randomized ports and isolated user secrets, allowing multiple instances to run simultaneously + Run in isolated mode with randomized ports and isolated user secrets, allowing multiple instances to run simultaneously - Multiple running AppHosts found in the current directory. Select from running AppHosts. - Multiple running AppHosts found in the current directory. Select from running AppHosts. + Multiple running apphosts found in the current directory. Select from running apphosts. + Multiple running apphosts found in the current directory. Select from running apphosts. - No running AppHosts found in the current directory. Select from all running AppHosts. - No running AppHosts found in the current directory. Select from all running AppHosts. + No running apphosts found in the current directory. Select from all running apphosts. + No running apphosts found in the current directory. Select from all running apphosts. - The path to the Aspire AppHost project file. - The path to the Aspire AppHost project file. + The path to the Aspire apphost project file + The path to the Aspire apphost project file + + + + The environment to use for the operation. The default is 'Production'. + The environment to use for the operation. The default is 'Production'. + + + + Include exception details (stack traces) in pipeline logs + Include exception details (stack traces) in pipeline logs + + + + Set the minimum log level for pipeline logging (trace, debug, information, warning, error, critical). The default is 'information'. + Set the minimum log level for pipeline logging (trace, debug, information, warning, error, critical). The default is 'information'. - Scanning for running AppHosts... - Scanning for running AppHosts... + Scanning for running apphosts... + Scanning for running apphosts... - Select an AppHost to {0}: - Select an AppHost to {0}: + Select an apphost to {0}: + Select an apphost to {0}: - Using AppHost: {0} - Using AppHost: {0} + Using apphost: {0} + Using apphost: {0} diff --git a/src/Aspire.Cli/Resources/xlf/SharedCommandStrings.ko.xlf b/src/Aspire.Cli/Resources/xlf/SharedCommandStrings.ko.xlf index 7fe446a7109..159f5ad16e5 100644 --- a/src/Aspire.Cli/Resources/xlf/SharedCommandStrings.ko.xlf +++ b/src/Aspire.Cli/Resources/xlf/SharedCommandStrings.ko.xlf @@ -3,48 +3,63 @@ - No running AppHost found. Use 'aspire run' to start one first. - No running AppHost found. Use 'aspire run' to start one first. + No running apphost found. Use 'aspire run' to start one first. + No running apphost found. Use 'aspire run' to start one first. - Output format for detached AppHost results. - Output format for detached AppHost results. + Output format for detached apphost results + Output format for detached apphost results - Run in isolated mode with randomized ports and isolated user secrets, allowing multiple instances to run simultaneously. - Run in isolated mode with randomized ports and isolated user secrets, allowing multiple instances to run simultaneously. + Run in isolated mode with randomized ports and isolated user secrets, allowing multiple instances to run simultaneously + Run in isolated mode with randomized ports and isolated user secrets, allowing multiple instances to run simultaneously - Multiple running AppHosts found in the current directory. Select from running AppHosts. - Multiple running AppHosts found in the current directory. Select from running AppHosts. + Multiple running apphosts found in the current directory. Select from running apphosts. + Multiple running apphosts found in the current directory. Select from running apphosts. - No running AppHosts found in the current directory. Select from all running AppHosts. - No running AppHosts found in the current directory. Select from all running AppHosts. + No running apphosts found in the current directory. Select from all running apphosts. + No running apphosts found in the current directory. Select from all running apphosts. - The path to the Aspire AppHost project file. - The path to the Aspire AppHost project file. + The path to the Aspire apphost project file + The path to the Aspire apphost project file + + + + The environment to use for the operation. The default is 'Production'. + The environment to use for the operation. The default is 'Production'. + + + + Include exception details (stack traces) in pipeline logs + Include exception details (stack traces) in pipeline logs + + + + Set the minimum log level for pipeline logging (trace, debug, information, warning, error, critical). The default is 'information'. + Set the minimum log level for pipeline logging (trace, debug, information, warning, error, critical). The default is 'information'. - Scanning for running AppHosts... - Scanning for running AppHosts... + Scanning for running apphosts... + Scanning for running apphosts... - Select an AppHost to {0}: - Select an AppHost to {0}: + Select an apphost to {0}: + Select an apphost to {0}: - Using AppHost: {0} - Using AppHost: {0} + Using apphost: {0} + Using apphost: {0} diff --git a/src/Aspire.Cli/Resources/xlf/SharedCommandStrings.pl.xlf b/src/Aspire.Cli/Resources/xlf/SharedCommandStrings.pl.xlf index 9102014fb69..3304d4228a3 100644 --- a/src/Aspire.Cli/Resources/xlf/SharedCommandStrings.pl.xlf +++ b/src/Aspire.Cli/Resources/xlf/SharedCommandStrings.pl.xlf @@ -3,48 +3,63 @@ - No running AppHost found. Use 'aspire run' to start one first. - No running AppHost found. Use 'aspire run' to start one first. + No running apphost found. Use 'aspire run' to start one first. + No running apphost found. Use 'aspire run' to start one first. - Output format for detached AppHost results. - Output format for detached AppHost results. + Output format for detached apphost results + Output format for detached apphost results - Run in isolated mode with randomized ports and isolated user secrets, allowing multiple instances to run simultaneously. - Run in isolated mode with randomized ports and isolated user secrets, allowing multiple instances to run simultaneously. + Run in isolated mode with randomized ports and isolated user secrets, allowing multiple instances to run simultaneously + Run in isolated mode with randomized ports and isolated user secrets, allowing multiple instances to run simultaneously - Multiple running AppHosts found in the current directory. Select from running AppHosts. - Multiple running AppHosts found in the current directory. Select from running AppHosts. + Multiple running apphosts found in the current directory. Select from running apphosts. + Multiple running apphosts found in the current directory. Select from running apphosts. - No running AppHosts found in the current directory. Select from all running AppHosts. - No running AppHosts found in the current directory. Select from all running AppHosts. + No running apphosts found in the current directory. Select from all running apphosts. + No running apphosts found in the current directory. Select from all running apphosts. - The path to the Aspire AppHost project file. - The path to the Aspire AppHost project file. + The path to the Aspire apphost project file + The path to the Aspire apphost project file + + + + The environment to use for the operation. The default is 'Production'. + The environment to use for the operation. The default is 'Production'. + + + + Include exception details (stack traces) in pipeline logs + Include exception details (stack traces) in pipeline logs + + + + Set the minimum log level for pipeline logging (trace, debug, information, warning, error, critical). The default is 'information'. + Set the minimum log level for pipeline logging (trace, debug, information, warning, error, critical). The default is 'information'. - Scanning for running AppHosts... - Scanning for running AppHosts... + Scanning for running apphosts... + Scanning for running apphosts... - Select an AppHost to {0}: - Select an AppHost to {0}: + Select an apphost to {0}: + Select an apphost to {0}: - Using AppHost: {0} - Using AppHost: {0} + Using apphost: {0} + Using apphost: {0} diff --git a/src/Aspire.Cli/Resources/xlf/SharedCommandStrings.pt-BR.xlf b/src/Aspire.Cli/Resources/xlf/SharedCommandStrings.pt-BR.xlf index bf713402e3c..1884e73d71a 100644 --- a/src/Aspire.Cli/Resources/xlf/SharedCommandStrings.pt-BR.xlf +++ b/src/Aspire.Cli/Resources/xlf/SharedCommandStrings.pt-BR.xlf @@ -3,48 +3,63 @@ - No running AppHost found. Use 'aspire run' to start one first. - No running AppHost found. Use 'aspire run' to start one first. + No running apphost found. Use 'aspire run' to start one first. + No running apphost found. Use 'aspire run' to start one first. - Output format for detached AppHost results. - Output format for detached AppHost results. + Output format for detached apphost results + Output format for detached apphost results - Run in isolated mode with randomized ports and isolated user secrets, allowing multiple instances to run simultaneously. - Run in isolated mode with randomized ports and isolated user secrets, allowing multiple instances to run simultaneously. + Run in isolated mode with randomized ports and isolated user secrets, allowing multiple instances to run simultaneously + Run in isolated mode with randomized ports and isolated user secrets, allowing multiple instances to run simultaneously - Multiple running AppHosts found in the current directory. Select from running AppHosts. - Multiple running AppHosts found in the current directory. Select from running AppHosts. + Multiple running apphosts found in the current directory. Select from running apphosts. + Multiple running apphosts found in the current directory. Select from running apphosts. - No running AppHosts found in the current directory. Select from all running AppHosts. - No running AppHosts found in the current directory. Select from all running AppHosts. + No running apphosts found in the current directory. Select from all running apphosts. + No running apphosts found in the current directory. Select from all running apphosts. - The path to the Aspire AppHost project file. - The path to the Aspire AppHost project file. + The path to the Aspire apphost project file + The path to the Aspire apphost project file + + + + The environment to use for the operation. The default is 'Production'. + The environment to use for the operation. The default is 'Production'. + + + + Include exception details (stack traces) in pipeline logs + Include exception details (stack traces) in pipeline logs + + + + Set the minimum log level for pipeline logging (trace, debug, information, warning, error, critical). The default is 'information'. + Set the minimum log level for pipeline logging (trace, debug, information, warning, error, critical). The default is 'information'. - Scanning for running AppHosts... - Scanning for running AppHosts... + Scanning for running apphosts... + Scanning for running apphosts... - Select an AppHost to {0}: - Select an AppHost to {0}: + Select an apphost to {0}: + Select an apphost to {0}: - Using AppHost: {0} - Using AppHost: {0} + Using apphost: {0} + Using apphost: {0} diff --git a/src/Aspire.Cli/Resources/xlf/SharedCommandStrings.ru.xlf b/src/Aspire.Cli/Resources/xlf/SharedCommandStrings.ru.xlf index aa72a68efea..f910a882b84 100644 --- a/src/Aspire.Cli/Resources/xlf/SharedCommandStrings.ru.xlf +++ b/src/Aspire.Cli/Resources/xlf/SharedCommandStrings.ru.xlf @@ -3,48 +3,63 @@ - No running AppHost found. Use 'aspire run' to start one first. - No running AppHost found. Use 'aspire run' to start one first. + No running apphost found. Use 'aspire run' to start one first. + No running apphost found. Use 'aspire run' to start one first. - Output format for detached AppHost results. - Output format for detached AppHost results. + Output format for detached apphost results + Output format for detached apphost results - Run in isolated mode with randomized ports and isolated user secrets, allowing multiple instances to run simultaneously. - Run in isolated mode with randomized ports and isolated user secrets, allowing multiple instances to run simultaneously. + Run in isolated mode with randomized ports and isolated user secrets, allowing multiple instances to run simultaneously + Run in isolated mode with randomized ports and isolated user secrets, allowing multiple instances to run simultaneously - Multiple running AppHosts found in the current directory. Select from running AppHosts. - Multiple running AppHosts found in the current directory. Select from running AppHosts. + Multiple running apphosts found in the current directory. Select from running apphosts. + Multiple running apphosts found in the current directory. Select from running apphosts. - No running AppHosts found in the current directory. Select from all running AppHosts. - No running AppHosts found in the current directory. Select from all running AppHosts. + No running apphosts found in the current directory. Select from all running apphosts. + No running apphosts found in the current directory. Select from all running apphosts. - The path to the Aspire AppHost project file. - The path to the Aspire AppHost project file. + The path to the Aspire apphost project file + The path to the Aspire apphost project file + + + + The environment to use for the operation. The default is 'Production'. + The environment to use for the operation. The default is 'Production'. + + + + Include exception details (stack traces) in pipeline logs + Include exception details (stack traces) in pipeline logs + + + + Set the minimum log level for pipeline logging (trace, debug, information, warning, error, critical). The default is 'information'. + Set the minimum log level for pipeline logging (trace, debug, information, warning, error, critical). The default is 'information'. - Scanning for running AppHosts... - Scanning for running AppHosts... + Scanning for running apphosts... + Scanning for running apphosts... - Select an AppHost to {0}: - Select an AppHost to {0}: + Select an apphost to {0}: + Select an apphost to {0}: - Using AppHost: {0} - Using AppHost: {0} + Using apphost: {0} + Using apphost: {0} diff --git a/src/Aspire.Cli/Resources/xlf/SharedCommandStrings.tr.xlf b/src/Aspire.Cli/Resources/xlf/SharedCommandStrings.tr.xlf index 151c4bacfc1..df8e13d8e0a 100644 --- a/src/Aspire.Cli/Resources/xlf/SharedCommandStrings.tr.xlf +++ b/src/Aspire.Cli/Resources/xlf/SharedCommandStrings.tr.xlf @@ -3,48 +3,63 @@ - No running AppHost found. Use 'aspire run' to start one first. - No running AppHost found. Use 'aspire run' to start one first. + No running apphost found. Use 'aspire run' to start one first. + No running apphost found. Use 'aspire run' to start one first. - Output format for detached AppHost results. - Output format for detached AppHost results. + Output format for detached apphost results + Output format for detached apphost results - Run in isolated mode with randomized ports and isolated user secrets, allowing multiple instances to run simultaneously. - Run in isolated mode with randomized ports and isolated user secrets, allowing multiple instances to run simultaneously. + Run in isolated mode with randomized ports and isolated user secrets, allowing multiple instances to run simultaneously + Run in isolated mode with randomized ports and isolated user secrets, allowing multiple instances to run simultaneously - Multiple running AppHosts found in the current directory. Select from running AppHosts. - Multiple running AppHosts found in the current directory. Select from running AppHosts. + Multiple running apphosts found in the current directory. Select from running apphosts. + Multiple running apphosts found in the current directory. Select from running apphosts. - No running AppHosts found in the current directory. Select from all running AppHosts. - No running AppHosts found in the current directory. Select from all running AppHosts. + No running apphosts found in the current directory. Select from all running apphosts. + No running apphosts found in the current directory. Select from all running apphosts. - The path to the Aspire AppHost project file. - The path to the Aspire AppHost project file. + The path to the Aspire apphost project file + The path to the Aspire apphost project file + + + + The environment to use for the operation. The default is 'Production'. + The environment to use for the operation. The default is 'Production'. + + + + Include exception details (stack traces) in pipeline logs + Include exception details (stack traces) in pipeline logs + + + + Set the minimum log level for pipeline logging (trace, debug, information, warning, error, critical). The default is 'information'. + Set the minimum log level for pipeline logging (trace, debug, information, warning, error, critical). The default is 'information'. - Scanning for running AppHosts... - Scanning for running AppHosts... + Scanning for running apphosts... + Scanning for running apphosts... - Select an AppHost to {0}: - Select an AppHost to {0}: + Select an apphost to {0}: + Select an apphost to {0}: - Using AppHost: {0} - Using AppHost: {0} + Using apphost: {0} + Using apphost: {0} diff --git a/src/Aspire.Cli/Resources/xlf/SharedCommandStrings.zh-Hans.xlf b/src/Aspire.Cli/Resources/xlf/SharedCommandStrings.zh-Hans.xlf index c259a8971d2..b889a0c9c34 100644 --- a/src/Aspire.Cli/Resources/xlf/SharedCommandStrings.zh-Hans.xlf +++ b/src/Aspire.Cli/Resources/xlf/SharedCommandStrings.zh-Hans.xlf @@ -3,48 +3,63 @@ - No running AppHost found. Use 'aspire run' to start one first. - No running AppHost found. Use 'aspire run' to start one first. + No running apphost found. Use 'aspire run' to start one first. + No running apphost found. Use 'aspire run' to start one first. - Output format for detached AppHost results. - Output format for detached AppHost results. + Output format for detached apphost results + Output format for detached apphost results - Run in isolated mode with randomized ports and isolated user secrets, allowing multiple instances to run simultaneously. - Run in isolated mode with randomized ports and isolated user secrets, allowing multiple instances to run simultaneously. + Run in isolated mode with randomized ports and isolated user secrets, allowing multiple instances to run simultaneously + Run in isolated mode with randomized ports and isolated user secrets, allowing multiple instances to run simultaneously - Multiple running AppHosts found in the current directory. Select from running AppHosts. - Multiple running AppHosts found in the current directory. Select from running AppHosts. + Multiple running apphosts found in the current directory. Select from running apphosts. + Multiple running apphosts found in the current directory. Select from running apphosts. - No running AppHosts found in the current directory. Select from all running AppHosts. - No running AppHosts found in the current directory. Select from all running AppHosts. + No running apphosts found in the current directory. Select from all running apphosts. + No running apphosts found in the current directory. Select from all running apphosts. - The path to the Aspire AppHost project file. - The path to the Aspire AppHost project file. + The path to the Aspire apphost project file + The path to the Aspire apphost project file + + + + The environment to use for the operation. The default is 'Production'. + The environment to use for the operation. The default is 'Production'. + + + + Include exception details (stack traces) in pipeline logs + Include exception details (stack traces) in pipeline logs + + + + Set the minimum log level for pipeline logging (trace, debug, information, warning, error, critical). The default is 'information'. + Set the minimum log level for pipeline logging (trace, debug, information, warning, error, critical). The default is 'information'. - Scanning for running AppHosts... - Scanning for running AppHosts... + Scanning for running apphosts... + Scanning for running apphosts... - Select an AppHost to {0}: - Select an AppHost to {0}: + Select an apphost to {0}: + Select an apphost to {0}: - Using AppHost: {0} - Using AppHost: {0} + Using apphost: {0} + Using apphost: {0} diff --git a/src/Aspire.Cli/Resources/xlf/SharedCommandStrings.zh-Hant.xlf b/src/Aspire.Cli/Resources/xlf/SharedCommandStrings.zh-Hant.xlf index fba81bb49d9..aa721655c68 100644 --- a/src/Aspire.Cli/Resources/xlf/SharedCommandStrings.zh-Hant.xlf +++ b/src/Aspire.Cli/Resources/xlf/SharedCommandStrings.zh-Hant.xlf @@ -3,48 +3,63 @@ - No running AppHost found. Use 'aspire run' to start one first. - No running AppHost found. Use 'aspire run' to start one first. + No running apphost found. Use 'aspire run' to start one first. + No running apphost found. Use 'aspire run' to start one first. - Output format for detached AppHost results. - Output format for detached AppHost results. + Output format for detached apphost results + Output format for detached apphost results - Run in isolated mode with randomized ports and isolated user secrets, allowing multiple instances to run simultaneously. - Run in isolated mode with randomized ports and isolated user secrets, allowing multiple instances to run simultaneously. + Run in isolated mode with randomized ports and isolated user secrets, allowing multiple instances to run simultaneously + Run in isolated mode with randomized ports and isolated user secrets, allowing multiple instances to run simultaneously - Multiple running AppHosts found in the current directory. Select from running AppHosts. - Multiple running AppHosts found in the current directory. Select from running AppHosts. + Multiple running apphosts found in the current directory. Select from running apphosts. + Multiple running apphosts found in the current directory. Select from running apphosts. - No running AppHosts found in the current directory. Select from all running AppHosts. - No running AppHosts found in the current directory. Select from all running AppHosts. + No running apphosts found in the current directory. Select from all running apphosts. + No running apphosts found in the current directory. Select from all running apphosts. - The path to the Aspire AppHost project file. - The path to the Aspire AppHost project file. + The path to the Aspire apphost project file + The path to the Aspire apphost project file + + + + The environment to use for the operation. The default is 'Production'. + The environment to use for the operation. The default is 'Production'. + + + + Include exception details (stack traces) in pipeline logs + Include exception details (stack traces) in pipeline logs + + + + Set the minimum log level for pipeline logging (trace, debug, information, warning, error, critical). The default is 'information'. + Set the minimum log level for pipeline logging (trace, debug, information, warning, error, critical). The default is 'information'. - Scanning for running AppHosts... - Scanning for running AppHosts... + Scanning for running apphosts... + Scanning for running apphosts... - Select an AppHost to {0}: - Select an AppHost to {0}: + Select an apphost to {0}: + Select an apphost to {0}: - Using AppHost: {0} - Using AppHost: {0} + Using apphost: {0} + Using apphost: {0} diff --git a/src/Aspire.Cli/Resources/xlf/StartCommandStrings.cs.xlf b/src/Aspire.Cli/Resources/xlf/StartCommandStrings.cs.xlf index 147c6bfc7ef..f43ae0f2f6b 100644 --- a/src/Aspire.Cli/Resources/xlf/StartCommandStrings.cs.xlf +++ b/src/Aspire.Cli/Resources/xlf/StartCommandStrings.cs.xlf @@ -3,10 +3,10 @@ - Start an apphost in the background. - Start an apphost in the background. + Start an apphost in the background + Start an apphost in the background - + \ No newline at end of file diff --git a/src/Aspire.Cli/Resources/xlf/StartCommandStrings.de.xlf b/src/Aspire.Cli/Resources/xlf/StartCommandStrings.de.xlf index 17f0a4aac54..2d86068599e 100644 --- a/src/Aspire.Cli/Resources/xlf/StartCommandStrings.de.xlf +++ b/src/Aspire.Cli/Resources/xlf/StartCommandStrings.de.xlf @@ -3,10 +3,10 @@ - Start an apphost in the background. - Start an apphost in the background. + Start an apphost in the background + Start an apphost in the background - + \ No newline at end of file diff --git a/src/Aspire.Cli/Resources/xlf/StartCommandStrings.es.xlf b/src/Aspire.Cli/Resources/xlf/StartCommandStrings.es.xlf index d6f3c308e84..520663378cc 100644 --- a/src/Aspire.Cli/Resources/xlf/StartCommandStrings.es.xlf +++ b/src/Aspire.Cli/Resources/xlf/StartCommandStrings.es.xlf @@ -3,10 +3,10 @@ - Start an apphost in the background. - Start an apphost in the background. + Start an apphost in the background + Start an apphost in the background - + \ No newline at end of file diff --git a/src/Aspire.Cli/Resources/xlf/StartCommandStrings.fr.xlf b/src/Aspire.Cli/Resources/xlf/StartCommandStrings.fr.xlf index 4d1ecc2883a..e82cf1c2ed1 100644 --- a/src/Aspire.Cli/Resources/xlf/StartCommandStrings.fr.xlf +++ b/src/Aspire.Cli/Resources/xlf/StartCommandStrings.fr.xlf @@ -3,10 +3,10 @@ - Start an apphost in the background. - Start an apphost in the background. + Start an apphost in the background + Start an apphost in the background - + \ No newline at end of file diff --git a/src/Aspire.Cli/Resources/xlf/StartCommandStrings.it.xlf b/src/Aspire.Cli/Resources/xlf/StartCommandStrings.it.xlf index 8cc171ceeef..1b427d49d37 100644 --- a/src/Aspire.Cli/Resources/xlf/StartCommandStrings.it.xlf +++ b/src/Aspire.Cli/Resources/xlf/StartCommandStrings.it.xlf @@ -3,10 +3,10 @@ - Start an apphost in the background. - Start an apphost in the background. + Start an apphost in the background + Start an apphost in the background - + \ No newline at end of file diff --git a/src/Aspire.Cli/Resources/xlf/StartCommandStrings.ja.xlf b/src/Aspire.Cli/Resources/xlf/StartCommandStrings.ja.xlf index 248c2d08b17..1521019251c 100644 --- a/src/Aspire.Cli/Resources/xlf/StartCommandStrings.ja.xlf +++ b/src/Aspire.Cli/Resources/xlf/StartCommandStrings.ja.xlf @@ -3,10 +3,10 @@ - Start an apphost in the background. - Start an apphost in the background. + Start an apphost in the background + Start an apphost in the background - + \ No newline at end of file diff --git a/src/Aspire.Cli/Resources/xlf/StartCommandStrings.ko.xlf b/src/Aspire.Cli/Resources/xlf/StartCommandStrings.ko.xlf index 9a1175fd687..52a07a99288 100644 --- a/src/Aspire.Cli/Resources/xlf/StartCommandStrings.ko.xlf +++ b/src/Aspire.Cli/Resources/xlf/StartCommandStrings.ko.xlf @@ -3,10 +3,10 @@ - Start an apphost in the background. - Start an apphost in the background. + Start an apphost in the background + Start an apphost in the background - + \ No newline at end of file diff --git a/src/Aspire.Cli/Resources/xlf/StartCommandStrings.pl.xlf b/src/Aspire.Cli/Resources/xlf/StartCommandStrings.pl.xlf index a919d1ee3df..fe2fe45bc25 100644 --- a/src/Aspire.Cli/Resources/xlf/StartCommandStrings.pl.xlf +++ b/src/Aspire.Cli/Resources/xlf/StartCommandStrings.pl.xlf @@ -3,10 +3,10 @@ - Start an apphost in the background. - Start an apphost in the background. + Start an apphost in the background + Start an apphost in the background - + \ No newline at end of file diff --git a/src/Aspire.Cli/Resources/xlf/StartCommandStrings.pt-BR.xlf b/src/Aspire.Cli/Resources/xlf/StartCommandStrings.pt-BR.xlf index e48f0a6ad9a..4709698ab19 100644 --- a/src/Aspire.Cli/Resources/xlf/StartCommandStrings.pt-BR.xlf +++ b/src/Aspire.Cli/Resources/xlf/StartCommandStrings.pt-BR.xlf @@ -3,10 +3,10 @@ - Start an apphost in the background. - Start an apphost in the background. + Start an apphost in the background + Start an apphost in the background - + \ No newline at end of file diff --git a/src/Aspire.Cli/Resources/xlf/StartCommandStrings.ru.xlf b/src/Aspire.Cli/Resources/xlf/StartCommandStrings.ru.xlf index 4cf60b12a69..030a4bd518b 100644 --- a/src/Aspire.Cli/Resources/xlf/StartCommandStrings.ru.xlf +++ b/src/Aspire.Cli/Resources/xlf/StartCommandStrings.ru.xlf @@ -3,10 +3,10 @@ - Start an apphost in the background. - Start an apphost in the background. + Start an apphost in the background + Start an apphost in the background - + \ No newline at end of file diff --git a/src/Aspire.Cli/Resources/xlf/StartCommandStrings.tr.xlf b/src/Aspire.Cli/Resources/xlf/StartCommandStrings.tr.xlf index 3c08449a7aa..625dd3c4cf2 100644 --- a/src/Aspire.Cli/Resources/xlf/StartCommandStrings.tr.xlf +++ b/src/Aspire.Cli/Resources/xlf/StartCommandStrings.tr.xlf @@ -3,10 +3,10 @@ - Start an apphost in the background. - Start an apphost in the background. + Start an apphost in the background + Start an apphost in the background - + \ No newline at end of file diff --git a/src/Aspire.Cli/Resources/xlf/StartCommandStrings.zh-Hans.xlf b/src/Aspire.Cli/Resources/xlf/StartCommandStrings.zh-Hans.xlf index 262dce60017..1b01c47d838 100644 --- a/src/Aspire.Cli/Resources/xlf/StartCommandStrings.zh-Hans.xlf +++ b/src/Aspire.Cli/Resources/xlf/StartCommandStrings.zh-Hans.xlf @@ -3,10 +3,10 @@ - Start an apphost in the background. - Start an apphost in the background. + Start an apphost in the background + Start an apphost in the background - + \ No newline at end of file diff --git a/src/Aspire.Cli/Resources/xlf/StartCommandStrings.zh-Hant.xlf b/src/Aspire.Cli/Resources/xlf/StartCommandStrings.zh-Hant.xlf index 15b5f3aee34..83350345008 100644 --- a/src/Aspire.Cli/Resources/xlf/StartCommandStrings.zh-Hant.xlf +++ b/src/Aspire.Cli/Resources/xlf/StartCommandStrings.zh-Hant.xlf @@ -3,10 +3,10 @@ - Start an apphost in the background. - Start an apphost in the background. + Start an apphost in the background + Start an apphost in the background - + \ No newline at end of file diff --git a/src/Aspire.Cli/Resources/xlf/StopCommandStrings.cs.xlf b/src/Aspire.Cli/Resources/xlf/StopCommandStrings.cs.xlf index 8e5e95cbc0c..44ffafdeae8 100644 --- a/src/Aspire.Cli/Resources/xlf/StopCommandStrings.cs.xlf +++ b/src/Aspire.Cli/Resources/xlf/StopCommandStrings.cs.xlf @@ -3,38 +3,38 @@ - Stop all running AppHosts. - Stop all running AppHosts. + Stop all running apphosts + Stop all running apphosts - AppHost stopped successfully. - Hostitel aplikací se úspěšně zastavil. + Apphost stopped successfully. + Hostitel aplikací se úspěšně zastavil. - Stop a running apphost. - Zastavte spuštěného hostitele aplikací Aspire. + Stop a running apphost + Zastavte spuštěného hostitele aplikací Aspire. - Failed to stop the AppHost. - Nepovedlo se zastavit hostitele aplikací. + Failed to stop the apphost. + Nepovedlo se zastavit hostitele aplikací. - Multiple AppHosts are running. Use {0} to specify which one to stop, or use {1} to stop all of them. - Multiple AppHosts are running. Use {0} to specify which one to stop, or use {1} to stop all of them. + Multiple apphosts are running. Use {0} to specify which one to stop, or use {1} to stop all of them. + Multiple apphosts are running. Use {0} to specify which one to stop, or use {1} to stop all of them. - Multiple AppHosts are running. Use --apphost to specify which one to stop, or select one: - Je spuštěno více hostitelů aplikací. Pomocí --apphost určete, který z nich se má zastavit, nebo vyberte jednoho z nich: + Multiple apphosts are running. Use --apphost to specify which one to stop, or select one: + Je spuštěno více hostitelů aplikací. Pomocí --apphost určete, který z nich se má zastavit, nebo vyberte jednoho z nich: - The path to the Aspire AppHost project file. - Cesta k souboru projektu Aspire AppHost. + The path to the Aspire apphost project file + Cesta k souboru projektu Aspire AppHost. diff --git a/src/Aspire.Cli/Resources/xlf/StopCommandStrings.de.xlf b/src/Aspire.Cli/Resources/xlf/StopCommandStrings.de.xlf index f11c98594e3..f84d76fab85 100644 --- a/src/Aspire.Cli/Resources/xlf/StopCommandStrings.de.xlf +++ b/src/Aspire.Cli/Resources/xlf/StopCommandStrings.de.xlf @@ -3,38 +3,38 @@ - Stop all running AppHosts. - Stop all running AppHosts. + Stop all running apphosts + Stop all running apphosts - AppHost stopped successfully. - AppHost wurde erfolgreich beendet. + Apphost stopped successfully. + AppHost wurde erfolgreich beendet. - Stop a running apphost. - Beenden Sie einen aktiven Aspire-AppHost. + Stop a running apphost + Beenden Sie einen aktiven Aspire-AppHost. - Failed to stop the AppHost. - Beim Beenden des AppHost ist ein Fehler aufgetreten. + Failed to stop the apphost. + Beim Beenden des AppHost ist ein Fehler aufgetreten. - Multiple AppHosts are running. Use {0} to specify which one to stop, or use {1} to stop all of them. - Multiple AppHosts are running. Use {0} to specify which one to stop, or use {1} to stop all of them. + Multiple apphosts are running. Use {0} to specify which one to stop, or use {1} to stop all of them. + Multiple apphosts are running. Use {0} to specify which one to stop, or use {1} to stop all of them. - Multiple AppHosts are running. Use --apphost to specify which one to stop, or select one: - Mehrere AppHosts sind aktiv. Verwenden Sie --apphost, um anzugeben, welcher AppHost gestoppt werden soll, oder wählen Sie einen aus: + Multiple apphosts are running. Use --apphost to specify which one to stop, or select one: + Mehrere AppHosts sind aktiv. Verwenden Sie --apphost, um anzugeben, welcher AppHost gestoppt werden soll, oder wählen Sie einen aus: - The path to the Aspire AppHost project file. - Der Pfad zur Aspire AppHost-Projektdatei. + The path to the Aspire apphost project file + Der Pfad zur Aspire AppHost-Projektdatei. diff --git a/src/Aspire.Cli/Resources/xlf/StopCommandStrings.es.xlf b/src/Aspire.Cli/Resources/xlf/StopCommandStrings.es.xlf index ed2560c6a93..5422044bbb4 100644 --- a/src/Aspire.Cli/Resources/xlf/StopCommandStrings.es.xlf +++ b/src/Aspire.Cli/Resources/xlf/StopCommandStrings.es.xlf @@ -3,38 +3,38 @@ - Stop all running AppHosts. - Stop all running AppHosts. + Stop all running apphosts + Stop all running apphosts - AppHost stopped successfully. - AppHost se detuvo correctamente. + Apphost stopped successfully. + AppHost se detuvo correctamente. - Stop a running apphost. - Detenga un apphost en ejecución de Aspire. + Stop a running apphost + Detenga un apphost en ejecución de Aspire. - Failed to stop the AppHost. - No se pudo detener AppHost. + Failed to stop the apphost. + No se pudo detener AppHost. - Multiple AppHosts are running. Use {0} to specify which one to stop, or use {1} to stop all of them. - Multiple AppHosts are running. Use {0} to specify which one to stop, or use {1} to stop all of them. + Multiple apphosts are running. Use {0} to specify which one to stop, or use {1} to stop all of them. + Multiple apphosts are running. Use {0} to specify which one to stop, or use {1} to stop all of them. - Multiple AppHosts are running. Use --apphost to specify which one to stop, or select one: - Se están ejecutando varios AppHost. Use --apphost para especificar cuál se va a detener o seleccione uno: + Multiple apphosts are running. Use --apphost to specify which one to stop, or select one: + Se están ejecutando varios AppHost. Use --apphost para especificar cuál se va a detener o seleccione uno: - The path to the Aspire AppHost project file. - La ruta de acceso al archivo del proyecto host de la AppHost Aspire. + The path to the Aspire apphost project file + La ruta de acceso al archivo del proyecto host de la AppHost Aspire. diff --git a/src/Aspire.Cli/Resources/xlf/StopCommandStrings.fr.xlf b/src/Aspire.Cli/Resources/xlf/StopCommandStrings.fr.xlf index ce390ab6a5c..0d0a7b20158 100644 --- a/src/Aspire.Cli/Resources/xlf/StopCommandStrings.fr.xlf +++ b/src/Aspire.Cli/Resources/xlf/StopCommandStrings.fr.xlf @@ -3,38 +3,38 @@ - Stop all running AppHosts. - Stop all running AppHosts. + Stop all running apphosts + Stop all running apphosts - AppHost stopped successfully. - AppHost s’est arrêtée avec succès. + Apphost stopped successfully. + AppHost s’est arrêtée avec succès. - Stop a running apphost. - Arrêtez un AppHost Aspire en cours d’exécution. + Stop a running apphost + Arrêtez un AppHost Aspire en cours d’exécution. - Failed to stop the AppHost. - Échec de l'arrêt d’AppHost. + Failed to stop the apphost. + Échec de l'arrêt d’AppHost. - Multiple AppHosts are running. Use {0} to specify which one to stop, or use {1} to stop all of them. - Multiple AppHosts are running. Use {0} to specify which one to stop, or use {1} to stop all of them. + Multiple apphosts are running. Use {0} to specify which one to stop, or use {1} to stop all of them. + Multiple apphosts are running. Use {0} to specify which one to stop, or use {1} to stop all of them. - Multiple AppHosts are running. Use --apphost to specify which one to stop, or select one: - Plusieurs AppHosts sont en cours d’exécution. Utilisez --apphost pour spécifier celui à arrêter ou sélectionnez-en un : + Multiple apphosts are running. Use --apphost to specify which one to stop, or select one: + Plusieurs AppHosts sont en cours d’exécution. Utilisez --apphost pour spécifier celui à arrêter ou sélectionnez-en un : - The path to the Aspire AppHost project file. - Chemin d’accès au fichier projet AppHost Aspire. + The path to the Aspire apphost project file + Chemin d’accès au fichier projet AppHost Aspire. diff --git a/src/Aspire.Cli/Resources/xlf/StopCommandStrings.it.xlf b/src/Aspire.Cli/Resources/xlf/StopCommandStrings.it.xlf index 115944c970f..9912b12079e 100644 --- a/src/Aspire.Cli/Resources/xlf/StopCommandStrings.it.xlf +++ b/src/Aspire.Cli/Resources/xlf/StopCommandStrings.it.xlf @@ -3,38 +3,38 @@ - Stop all running AppHosts. - Stop all running AppHosts. + Stop all running apphosts + Stop all running apphosts - AppHost stopped successfully. - AppHost è stato interrotto. + Apphost stopped successfully. + AppHost è stato interrotto. - Stop a running apphost. - Arrestare un apphost Aspire in esecuzione. + Stop a running apphost + Arrestare un apphost Aspire in esecuzione. - Failed to stop the AppHost. - Non è possibile arrestare AppHost. + Failed to stop the apphost. + Non è possibile arrestare AppHost. - Multiple AppHosts are running. Use {0} to specify which one to stop, or use {1} to stop all of them. - Multiple AppHosts are running. Use {0} to specify which one to stop, or use {1} to stop all of them. + Multiple apphosts are running. Use {0} to specify which one to stop, or use {1} to stop all of them. + Multiple apphosts are running. Use {0} to specify which one to stop, or use {1} to stop all of them. - Multiple AppHosts are running. Use --apphost to specify which one to stop, or select one: - Sono in esecuzione più AppHost. Usare --apphost per specificare quale interrompere o selezionarne uno: + Multiple apphosts are running. Use --apphost to specify which one to stop, or select one: + Sono in esecuzione più AppHost. Usare --apphost per specificare quale interrompere o selezionarne uno: - The path to the Aspire AppHost project file. - Percorso del file di un progetto AppHost di Aspire. + The path to the Aspire apphost project file + Percorso del file di un progetto AppHost di Aspire. diff --git a/src/Aspire.Cli/Resources/xlf/StopCommandStrings.ja.xlf b/src/Aspire.Cli/Resources/xlf/StopCommandStrings.ja.xlf index b6d1eb996a5..d55271072da 100644 --- a/src/Aspire.Cli/Resources/xlf/StopCommandStrings.ja.xlf +++ b/src/Aspire.Cli/Resources/xlf/StopCommandStrings.ja.xlf @@ -3,38 +3,38 @@ - Stop all running AppHosts. - Stop all running AppHosts. + Stop all running apphosts + Stop all running apphosts - AppHost stopped successfully. - AppHost が正常に停止しました。 + Apphost stopped successfully. + AppHost が正常に停止しました。 - Stop a running apphost. - 実行中の Aspire apphost を停止します。 + Stop a running apphost + 実行中の Aspire apphost を停止します。 - Failed to stop the AppHost. - AppHost を停止できませんでした。 + Failed to stop the apphost. + AppHost を停止できませんでした。 - Multiple AppHosts are running. Use {0} to specify which one to stop, or use {1} to stop all of them. - Multiple AppHosts are running. Use {0} to specify which one to stop, or use {1} to stop all of them. + Multiple apphosts are running. Use {0} to specify which one to stop, or use {1} to stop all of them. + Multiple apphosts are running. Use {0} to specify which one to stop, or use {1} to stop all of them. - Multiple AppHosts are running. Use --apphost to specify which one to stop, or select one: - 複数の AppHost が実行されています。--apphost を使用して停止するものを指定するか、次のいずれかを選択します。 + Multiple apphosts are running. Use --apphost to specify which one to stop, or select one: + 複数の AppHost が実行されています。--apphost を使用して停止するものを指定するか、次のいずれかを選択します。 - The path to the Aspire AppHost project file. - Aspire AppHost プロジェクト ファイルへのパス。 + The path to the Aspire apphost project file + Aspire AppHost プロジェクト ファイルへのパス。 diff --git a/src/Aspire.Cli/Resources/xlf/StopCommandStrings.ko.xlf b/src/Aspire.Cli/Resources/xlf/StopCommandStrings.ko.xlf index 5ee8ba39293..6fe7e44123d 100644 --- a/src/Aspire.Cli/Resources/xlf/StopCommandStrings.ko.xlf +++ b/src/Aspire.Cli/Resources/xlf/StopCommandStrings.ko.xlf @@ -3,38 +3,38 @@ - Stop all running AppHosts. - Stop all running AppHosts. + Stop all running apphosts + Stop all running apphosts - AppHost stopped successfully. - AppHost가 중지되었습니다. + Apphost stopped successfully. + AppHost가 중지되었습니다. - Stop a running apphost. - 실행 중인 Aspire AppHost를 중지합니다. + Stop a running apphost + 실행 중인 Aspire AppHost를 중지합니다. - Failed to stop the AppHost. - AppHost를 중지하지 못했습니다. + Failed to stop the apphost. + AppHost를 중지하지 못했습니다. - Multiple AppHosts are running. Use {0} to specify which one to stop, or use {1} to stop all of them. - Multiple AppHosts are running. Use {0} to specify which one to stop, or use {1} to stop all of them. + Multiple apphosts are running. Use {0} to specify which one to stop, or use {1} to stop all of them. + Multiple apphosts are running. Use {0} to specify which one to stop, or use {1} to stop all of them. - Multiple AppHosts are running. Use --apphost to specify which one to stop, or select one: - 여러 AppHost가 실행 중입니다. --apphost를 사용해 중지할 AppHost를 지정하거나 하나를 선택하세요. + Multiple apphosts are running. Use --apphost to specify which one to stop, or select one: + 여러 AppHost가 실행 중입니다. --apphost를 사용해 중지할 AppHost를 지정하거나 하나를 선택하세요. - The path to the Aspire AppHost project file. - Aspire AppHost 프로젝트 파일의 경로입니다. + The path to the Aspire apphost project file + Aspire AppHost 프로젝트 파일의 경로입니다. diff --git a/src/Aspire.Cli/Resources/xlf/StopCommandStrings.pl.xlf b/src/Aspire.Cli/Resources/xlf/StopCommandStrings.pl.xlf index d3528963b4b..a7ee70807f5 100644 --- a/src/Aspire.Cli/Resources/xlf/StopCommandStrings.pl.xlf +++ b/src/Aspire.Cli/Resources/xlf/StopCommandStrings.pl.xlf @@ -3,38 +3,38 @@ - Stop all running AppHosts. - Stop all running AppHosts. + Stop all running apphosts + Stop all running apphosts - AppHost stopped successfully. - Host aplikacji został pomyślnie zatrzymany. + Apphost stopped successfully. + Host aplikacji został pomyślnie zatrzymany. - Stop a running apphost. - Zatrzymaj uruchomiony host aplikacji Wyszukaj. + Stop a running apphost + Zatrzymaj uruchomiony host aplikacji Wyszukaj. - Failed to stop the AppHost. - Nie można zatrzymać hosta aplikacji. + Failed to stop the apphost. + Nie można zatrzymać hosta aplikacji. - Multiple AppHosts are running. Use {0} to specify which one to stop, or use {1} to stop all of them. - Multiple AppHosts are running. Use {0} to specify which one to stop, or use {1} to stop all of them. + Multiple apphosts are running. Use {0} to specify which one to stop, or use {1} to stop all of them. + Multiple apphosts are running. Use {0} to specify which one to stop, or use {1} to stop all of them. - Multiple AppHosts are running. Use --apphost to specify which one to stop, or select one: - Uruchomiono wiele hostów aplikacji. Użyj opcji --apphost, aby określić, która ma zostać zatrzymana, lub wybierz jedną z nich: + Multiple apphosts are running. Use --apphost to specify which one to stop, or select one: + Uruchomiono wiele hostów aplikacji. Użyj opcji --apphost, aby określić, która ma zostać zatrzymana, lub wybierz jedną z nich: - The path to the Aspire AppHost project file. - Ścieżka do pliku projektu hosta AppHost platformy Aspire. + The path to the Aspire apphost project file + Ścieżka do pliku projektu hosta AppHost platformy Aspire. diff --git a/src/Aspire.Cli/Resources/xlf/StopCommandStrings.pt-BR.xlf b/src/Aspire.Cli/Resources/xlf/StopCommandStrings.pt-BR.xlf index 1043d24ea40..3b7c1fd8e65 100644 --- a/src/Aspire.Cli/Resources/xlf/StopCommandStrings.pt-BR.xlf +++ b/src/Aspire.Cli/Resources/xlf/StopCommandStrings.pt-BR.xlf @@ -3,38 +3,38 @@ - Stop all running AppHosts. - Stop all running AppHosts. + Stop all running apphosts + Stop all running apphosts - AppHost stopped successfully. - AppHost interrompido com sucesso. + Apphost stopped successfully. + AppHost interrompido com sucesso. - Stop a running apphost. - Pare um AppHost Aspire em execução. + Stop a running apphost + Pare um AppHost Aspire em execução. - Failed to stop the AppHost. - Falha ao parar o AppHost. + Failed to stop the apphost. + Falha ao parar o AppHost. - Multiple AppHosts are running. Use {0} to specify which one to stop, or use {1} to stop all of them. - Multiple AppHosts are running. Use {0} to specify which one to stop, or use {1} to stop all of them. + Multiple apphosts are running. Use {0} to specify which one to stop, or use {1} to stop all of them. + Multiple apphosts are running. Use {0} to specify which one to stop, or use {1} to stop all of them. - Multiple AppHosts are running. Use --apphost to specify which one to stop, or select one: - Vários AppHosts estão em execução. Use --apphost para especificar qual parar ou escolha um: + Multiple apphosts are running. Use --apphost to specify which one to stop, or select one: + Vários AppHosts estão em execução. Use --apphost para especificar qual parar ou escolha um: - The path to the Aspire AppHost project file. - O caminho para o arquivo de projeto do Aspire AppHost. + The path to the Aspire apphost project file + O caminho para o arquivo de projeto do Aspire AppHost. diff --git a/src/Aspire.Cli/Resources/xlf/StopCommandStrings.ru.xlf b/src/Aspire.Cli/Resources/xlf/StopCommandStrings.ru.xlf index e7062c8526f..03c5eca2cfd 100644 --- a/src/Aspire.Cli/Resources/xlf/StopCommandStrings.ru.xlf +++ b/src/Aspire.Cli/Resources/xlf/StopCommandStrings.ru.xlf @@ -3,38 +3,38 @@ - Stop all running AppHosts. - Stop all running AppHosts. + Stop all running apphosts + Stop all running apphosts - AppHost stopped successfully. - Хост приложений остановлен. + Apphost stopped successfully. + Хост приложений остановлен. - Stop a running apphost. - Остановить запущенный хост приложений Aspire. + Stop a running apphost + Остановить запущенный хост приложений Aspire. - Failed to stop the AppHost. - Не удалось остановить хост приложений. + Failed to stop the apphost. + Не удалось остановить хост приложений. - Multiple AppHosts are running. Use {0} to specify which one to stop, or use {1} to stop all of them. - Multiple AppHosts are running. Use {0} to specify which one to stop, or use {1} to stop all of them. + Multiple apphosts are running. Use {0} to specify which one to stop, or use {1} to stop all of them. + Multiple apphosts are running. Use {0} to specify which one to stop, or use {1} to stop all of them. - Multiple AppHosts are running. Use --apphost to specify which one to stop, or select one: - Запущено несколько хостов приложений. Используйте параметр --apphost, чтобы указать, какой остановить, или выберите один из них: + Multiple apphosts are running. Use --apphost to specify which one to stop, or select one: + Запущено несколько хостов приложений. Используйте параметр --apphost, чтобы указать, какой остановить, или выберите один из них: - The path to the Aspire AppHost project file. - Путь к файлу проекта Aspire AppHost. + The path to the Aspire apphost project file + Путь к файлу проекта Aspire AppHost. diff --git a/src/Aspire.Cli/Resources/xlf/StopCommandStrings.tr.xlf b/src/Aspire.Cli/Resources/xlf/StopCommandStrings.tr.xlf index e73b952181d..922dfed35db 100644 --- a/src/Aspire.Cli/Resources/xlf/StopCommandStrings.tr.xlf +++ b/src/Aspire.Cli/Resources/xlf/StopCommandStrings.tr.xlf @@ -3,38 +3,38 @@ - Stop all running AppHosts. - Stop all running AppHosts. + Stop all running apphosts + Stop all running apphosts - AppHost stopped successfully. - AppHost başarıyla durduruldu. + Apphost stopped successfully. + AppHost başarıyla durduruldu. - Stop a running apphost. - Çalışan bir Aspire apphost'unu durdurun. + Stop a running apphost + Çalışan bir Aspire apphost'unu durdurun. - Failed to stop the AppHost. - AppHost durdurulamadı. + Failed to stop the apphost. + AppHost durdurulamadı. - Multiple AppHosts are running. Use {0} to specify which one to stop, or use {1} to stop all of them. - Multiple AppHosts are running. Use {0} to specify which one to stop, or use {1} to stop all of them. + Multiple apphosts are running. Use {0} to specify which one to stop, or use {1} to stop all of them. + Multiple apphosts are running. Use {0} to specify which one to stop, or use {1} to stop all of them. - Multiple AppHosts are running. Use --apphost to specify which one to stop, or select one: - Birden çok AppHost çalışıyor. Durdurulacak AppHost'u belirtmek için --apphost komutunu kullanın veya birini seçin: + Multiple apphosts are running. Use --apphost to specify which one to stop, or select one: + Birden çok AppHost çalışıyor. Durdurulacak AppHost'u belirtmek için --apphost komutunu kullanın veya birini seçin: - The path to the Aspire AppHost project file. - Aspire AppHost proje dosyasının yolu. + The path to the Aspire apphost project file + Aspire AppHost proje dosyasının yolu. diff --git a/src/Aspire.Cli/Resources/xlf/StopCommandStrings.zh-Hans.xlf b/src/Aspire.Cli/Resources/xlf/StopCommandStrings.zh-Hans.xlf index ef09b74f363..6f452924804 100644 --- a/src/Aspire.Cli/Resources/xlf/StopCommandStrings.zh-Hans.xlf +++ b/src/Aspire.Cli/Resources/xlf/StopCommandStrings.zh-Hans.xlf @@ -3,38 +3,38 @@ - Stop all running AppHosts. - Stop all running AppHosts. + Stop all running apphosts + Stop all running apphosts - AppHost stopped successfully. - 已成功停止 AppHost。 + Apphost stopped successfully. + 已成功停止 AppHost。 - Stop a running apphost. - 停止一个正在运行的 Aspire AppHost。 + Stop a running apphost + 停止一个正在运行的 Aspire AppHost。 - Failed to stop the AppHost. - 停止 AppHost 失败。 + Failed to stop the apphost. + 停止 AppHost 失败。 - Multiple AppHosts are running. Use {0} to specify which one to stop, or use {1} to stop all of them. - Multiple AppHosts are running. Use {0} to specify which one to stop, or use {1} to stop all of them. + Multiple apphosts are running. Use {0} to specify which one to stop, or use {1} to stop all of them. + Multiple apphosts are running. Use {0} to specify which one to stop, or use {1} to stop all of them. - Multiple AppHosts are running. Use --apphost to specify which one to stop, or select one: - 多个 AppHost 正在运行。使用 --apphost 指定要停止哪一个,或者选择一个: + Multiple apphosts are running. Use --apphost to specify which one to stop, or select one: + 多个 AppHost 正在运行。使用 --apphost 指定要停止哪一个,或者选择一个: - The path to the Aspire AppHost project file. - Aspire AppHost 项目文件的路径。 + The path to the Aspire apphost project file + Aspire AppHost 项目文件的路径。 diff --git a/src/Aspire.Cli/Resources/xlf/StopCommandStrings.zh-Hant.xlf b/src/Aspire.Cli/Resources/xlf/StopCommandStrings.zh-Hant.xlf index 97ea62d05d9..c17d611197f 100644 --- a/src/Aspire.Cli/Resources/xlf/StopCommandStrings.zh-Hant.xlf +++ b/src/Aspire.Cli/Resources/xlf/StopCommandStrings.zh-Hant.xlf @@ -3,38 +3,38 @@ - Stop all running AppHosts. - Stop all running AppHosts. + Stop all running apphosts + Stop all running apphosts - AppHost stopped successfully. - 已成功停止 AppHost。 + Apphost stopped successfully. + 已成功停止 AppHost。 - Stop a running apphost. - 停止正在執行的 Aspire apphost。 + Stop a running apphost + 停止正在執行的 Aspire apphost。 - Failed to stop the AppHost. - 無法停止 AppHost。 + Failed to stop the apphost. + 無法停止 AppHost。 - Multiple AppHosts are running. Use {0} to specify which one to stop, or use {1} to stop all of them. - Multiple AppHosts are running. Use {0} to specify which one to stop, or use {1} to stop all of them. + Multiple apphosts are running. Use {0} to specify which one to stop, or use {1} to stop all of them. + Multiple apphosts are running. Use {0} to specify which one to stop, or use {1} to stop all of them. - Multiple AppHosts are running. Use --apphost to specify which one to stop, or select one: - 多個 AppHost 正在執行。請使用 --apphost 指定要停止的 AppHost,或從中選取一個: + Multiple apphosts are running. Use --apphost to specify which one to stop, or select one: + 多個 AppHost 正在執行。請使用 --apphost 指定要停止的 AppHost,或從中選取一個: - The path to the Aspire AppHost project file. - Aspire AppHost 專案檔案的路徑。 + The path to the Aspire apphost project file + Aspire AppHost 專案檔案的路徑。 diff --git a/src/Aspire.Cli/Resources/xlf/TelemetryCommandStrings.cs.xlf b/src/Aspire.Cli/Resources/xlf/TelemetryCommandStrings.cs.xlf index b77d2df3fac..36d178d2741 100644 --- a/src/Aspire.Cli/Resources/xlf/TelemetryCommandStrings.cs.xlf +++ b/src/Aspire.Cli/Resources/xlf/TelemetryCommandStrings.cs.xlf @@ -3,12 +3,12 @@ - Dashboard API is not available. Ensure the AppHost is running with Dashboard enabled. - Rozhraní API řídicího panelu není k dispozici. Ujistěte se, že hostitel aplikací běží s povoleným řídicím panelem. + Dashboard API is not available. Ensure the apphost is running with Dashboard enabled. + Rozhraní API řídicího panelu není k dispozici. Ujistěte se, že hostitel aplikací běží s povoleným řídicím panelem. - View OpenTelemetry data (logs, spans, traces) from a running apphost. + View OpenTelemetry data (logs, spans, traces) from a running apphost Umožňuje zobrazit telemetrická data (protokoly, rozsahy, trasování) ze spuštěné aplikace Aspire. @@ -18,18 +18,18 @@ - Stream telemetry in real-time as it arrives. - Umožňuje streamovat telemetrii v reálném čase, jakmile dorazí. + Stream telemetry in real-time as it arrives + Umožňuje streamovat telemetrii v reálném čase, jakmile dorazí. - Output format (Table or Json). - Výstupní formát (tabulka nebo JSON). + Output format (Table or Json) + Výstupní formát (tabulka nebo JSON). - Filter by error status (true to show only errors, false to exclude errors). - Umožňuje filtrovat podle chybového stavu (true pro zobrazení pouze chyb, false pro vyloučení chyb). + Filter by error status (true to show only errors, false to exclude errors) + Umožňuje filtrovat podle chybového stavu (true pro zobrazení pouze chyb, false pro vyloučení chyb). @@ -63,18 +63,18 @@ - Maximum number of items to return. - Maximální počet položek, které se mají vrátit. + Maximum number of items to return + Maximální počet položek, které se mají vrátit. - View structured logs from the Dashboard telemetry API. - Umožňuje zobrazit strukturované protokoly z rozhraní API telemetrie řídicího panelu. + View structured logs from the Dashboard telemetry API + Umožňuje zobrazit strukturované protokoly z rozhraní API telemetrie řídicího panelu. - Filter by resource name. - Filtrovat podle názvu prostředku. + Filter by resource name + Filtrovat podle názvu prostředku. @@ -83,23 +83,23 @@ - Filter logs by minimum severity (Trace, Debug, Information, Warning, Error, Critical). - Umožňuje filtrovat protokoly podle minimální závažnosti (trasování, ladění, informace, upozornění, chyba, kritické). + Filter logs by minimum severity (Trace, Debug, Information, Warning, Error, Critical) + Umožňuje filtrovat protokoly podle minimální závažnosti (trasování, ladění, informace, upozornění, chyba, kritické). - View spans from the Dashboard telemetry API. - Umožňuje zobrazit rozsahy z rozhraní API telemetrie řídicího panelu. + View spans from the Dashboard telemetry API + Umožňuje zobrazit rozsahy z rozhraní API telemetrie řídicího panelu. The trace ID to view. If not specified, lists all traces. - ID trasování, které se má zobrazit. Pokud není zadáno, vypíše všechna trasování. + ID trasování, které se má zobrazit. Pokud není zadáno, vypíše všechna trasování. - Filter by trace ID. - Umožňuje filtrovat podle ID trasování. + Filter by trace ID + Umožňuje filtrovat podle ID trasování. @@ -108,8 +108,8 @@ - View traces from the Dashboard telemetry API. - Umožňuje zobrazit trasování z rozhraní API telemetrie řídicího panelu. + View traces from the Dashboard telemetry API + Umožňuje zobrazit trasování z rozhraní API telemetrie řídicího panelu. diff --git a/src/Aspire.Cli/Resources/xlf/TelemetryCommandStrings.de.xlf b/src/Aspire.Cli/Resources/xlf/TelemetryCommandStrings.de.xlf index 6132a2e42bf..7bc3d234c00 100644 --- a/src/Aspire.Cli/Resources/xlf/TelemetryCommandStrings.de.xlf +++ b/src/Aspire.Cli/Resources/xlf/TelemetryCommandStrings.de.xlf @@ -3,12 +3,12 @@ - Dashboard API is not available. Ensure the AppHost is running with Dashboard enabled. - Die Dashboard-API ist nicht verfügbar. Stellen Sie sicher, dass der AppHost mit aktiviertem Dashboard ausgeführt wird. + Dashboard API is not available. Ensure the apphost is running with Dashboard enabled. + Die Dashboard-API ist nicht verfügbar. Stellen Sie sicher, dass der AppHost mit aktiviertem Dashboard ausgeführt wird. - View OpenTelemetry data (logs, spans, traces) from a running apphost. + View OpenTelemetry data (logs, spans, traces) from a running apphost Zeigen Sie Telemetriedaten (Protokolle, Spans, Traces) einer laufenden Aspire-Anwendung an. @@ -18,18 +18,18 @@ - Stream telemetry in real-time as it arrives. - Streamen Sie Telemetriedaten in Echtzeit, sobald sie eintreffen. + Stream telemetry in real-time as it arrives + Streamen Sie Telemetriedaten in Echtzeit, sobald sie eintreffen. - Output format (Table or Json). - Ausgabeformat (Tabelle oder JSON). + Output format (Table or Json) + Ausgabeformat (Tabelle oder JSON). - Filter by error status (true to show only errors, false to exclude errors). - Filtern Sie nach Fehlerstatus (true, um nur Fehler anzuzeigen; false, um Fehler auszuschließen). + Filter by error status (true to show only errors, false to exclude errors) + Filtern Sie nach Fehlerstatus (true, um nur Fehler anzuzeigen; false, um Fehler auszuschließen). @@ -63,18 +63,18 @@ - Maximum number of items to return. - Maximale Anzahl zurückzugebender Elemente. + Maximum number of items to return + Maximale Anzahl zurückzugebender Elemente. - View structured logs from the Dashboard telemetry API. - Zeigen Sie strukturierte Protokolle aus der Dashboard-Telemetrie-API an. + View structured logs from the Dashboard telemetry API + Zeigen Sie strukturierte Protokolle aus der Dashboard-Telemetrie-API an. - Filter by resource name. - Filtern Sie nach Ressourcennamen. + Filter by resource name + Filtern Sie nach Ressourcennamen. @@ -83,23 +83,23 @@ - Filter logs by minimum severity (Trace, Debug, Information, Warning, Error, Critical). - Filtern Sie Protokolle nach minimaler Schwere (Trace, Debug, Information, Warnung, Fehler, Kritisch). + Filter logs by minimum severity (Trace, Debug, Information, Warning, Error, Critical) + Filtern Sie Protokolle nach minimaler Schwere (Trace, Debug, Information, Warnung, Fehler, Kritisch). - View spans from the Dashboard telemetry API. - Zeigen Sie Bereiche aus der Dashboard-Telemetrie-API an. + View spans from the Dashboard telemetry API + Zeigen Sie Bereiche aus der Dashboard-Telemetrie-API an. The trace ID to view. If not specified, lists all traces. - Die anzuzeigende Trace-ID. Wenn keine angegeben wird, werden alle Traces aufgelistet. + Die anzuzeigende Trace-ID. Wenn keine angegeben wird, werden alle Traces aufgelistet. - Filter by trace ID. - Nach Ablaufverfolgungs-ID filtern. + Filter by trace ID + Nach Ablaufverfolgungs-ID filtern. @@ -108,8 +108,8 @@ - View traces from the Dashboard telemetry API. - Zeigen Sie Ablaufverfolgungen aus der Dashboard-Telemetrie-API an. + View traces from the Dashboard telemetry API + Zeigen Sie Ablaufverfolgungen aus der Dashboard-Telemetrie-API an. diff --git a/src/Aspire.Cli/Resources/xlf/TelemetryCommandStrings.es.xlf b/src/Aspire.Cli/Resources/xlf/TelemetryCommandStrings.es.xlf index ffdde263163..a52b7b2b5b2 100644 --- a/src/Aspire.Cli/Resources/xlf/TelemetryCommandStrings.es.xlf +++ b/src/Aspire.Cli/Resources/xlf/TelemetryCommandStrings.es.xlf @@ -3,12 +3,12 @@ - Dashboard API is not available. Ensure the AppHost is running with Dashboard enabled. - La API de panel no está disponible. Asegúrese de que AppHost se esté ejecutando con Panel habilitado. + Dashboard API is not available. Ensure the apphost is running with Dashboard enabled. + La API de panel no está disponible. Asegúrese de que AppHost se esté ejecutando con Panel habilitado. - View OpenTelemetry data (logs, spans, traces) from a running apphost. + View OpenTelemetry data (logs, spans, traces) from a running apphost Ver los datos de telemetría (registros, intervalos, seguimientos) de una aplicación de Aspire en ejecución. @@ -18,18 +18,18 @@ - Stream telemetry in real-time as it arrives. - Transmitir datos de telemetría en tiempo real a medida que llegan. + Stream telemetry in real-time as it arrives + Transmitir datos de telemetría en tiempo real a medida que llegan. - Output format (Table or Json). - Formato de salida (tabla o JSON). + Output format (Table or Json) + Formato de salida (tabla o JSON). - Filter by error status (true to show only errors, false to exclude errors). - Filtrar por estado de error (true para mostrar solo los errores, false para excluir errores). + Filter by error status (true to show only errors, false to exclude errors) + Filtrar por estado de error (true para mostrar solo los errores, false para excluir errores). @@ -63,18 +63,18 @@ - Maximum number of items to return. - Número máximo de elementos que se van a devolver. + Maximum number of items to return + Número máximo de elementos que se van a devolver. - View structured logs from the Dashboard telemetry API. - Ver los registros estructurados desde la API de telemetría del panel. + View structured logs from the Dashboard telemetry API + Ver los registros estructurados desde la API de telemetría del panel. - Filter by resource name. - Filtrar por nombre de recurso. + Filter by resource name + Filtrar por nombre de recurso. @@ -83,23 +83,23 @@ - Filter logs by minimum severity (Trace, Debug, Information, Warning, Error, Critical). - Filtrar los registros por gravedad mínima (Seguimiento, Depuración, Información, Advertencia, Error, Crítico). + Filter logs by minimum severity (Trace, Debug, Information, Warning, Error, Critical) + Filtrar los registros por gravedad mínima (Seguimiento, Depuración, Información, Advertencia, Error, Crítico). - View spans from the Dashboard telemetry API. - Ver intervalos de la API de telemetría del panel. + View spans from the Dashboard telemetry API + Ver intervalos de la API de telemetría del panel. The trace ID to view. If not specified, lists all traces. - El id. de rastreo que se desea ver. Si no se especifica, enumera todos los seguimientos. + El id. de rastreo que se desea ver. Si no se especifica, enumera todos los seguimientos. - Filter by trace ID. - Filtre por id. de seguimiento. + Filter by trace ID + Filtre por id. de seguimiento. @@ -108,8 +108,8 @@ - View traces from the Dashboard telemetry API. - Ver seguimientos desde la API de telemetría del panel. + View traces from the Dashboard telemetry API + Ver seguimientos desde la API de telemetría del panel. diff --git a/src/Aspire.Cli/Resources/xlf/TelemetryCommandStrings.fr.xlf b/src/Aspire.Cli/Resources/xlf/TelemetryCommandStrings.fr.xlf index 56bed81db8f..91ee6260b75 100644 --- a/src/Aspire.Cli/Resources/xlf/TelemetryCommandStrings.fr.xlf +++ b/src/Aspire.Cli/Resources/xlf/TelemetryCommandStrings.fr.xlf @@ -3,12 +3,12 @@ - Dashboard API is not available. Ensure the AppHost is running with Dashboard enabled. - Désolé, l’API du tableau de bord n’est pas disponible. Vérifiez que AppHost fonctionne avec le tableau de bord activé. + Dashboard API is not available. Ensure the apphost is running with Dashboard enabled. + Désolé, l’API du tableau de bord n’est pas disponible. Vérifiez que AppHost fonctionne avec le tableau de bord activé. - View OpenTelemetry data (logs, spans, traces) from a running apphost. + View OpenTelemetry data (logs, spans, traces) from a running apphost Affichez les données de télémétrie (journaux, spans, traces) d’une application Aspire en cours d’exécution. @@ -18,18 +18,18 @@ - Stream telemetry in real-time as it arrives. - Diffuser la télémétrie en temps réel dès son arrivée. + Stream telemetry in real-time as it arrives + Diffuser la télémétrie en temps réel dès son arrivée. - Output format (Table or Json). - Format de sortie (Tableau ou JSON). + Output format (Table or Json) + Format de sortie (Tableau ou JSON). - Filter by error status (true to show only errors, false to exclude errors). - Filtrer selon le statut d’erreur (true pour afficher uniquement les erreurs, false pour exclure les erreurs). + Filter by error status (true to show only errors, false to exclude errors) + Filtrer selon le statut d’erreur (true pour afficher uniquement les erreurs, false pour exclure les erreurs). @@ -63,18 +63,18 @@ - Maximum number of items to return. - Nombre maximal d’éléments à retourner. + Maximum number of items to return + Nombre maximal d’éléments à retourner. - View structured logs from the Dashboard telemetry API. - Afficher les journaux structurés via l’API de télémétrie du tableau de bord. + View structured logs from the Dashboard telemetry API + Afficher les journaux structurés via l’API de télémétrie du tableau de bord. - Filter by resource name. - Filtrer par nom de ressource. + Filter by resource name + Filtrer par nom de ressource. @@ -83,23 +83,23 @@ - Filter logs by minimum severity (Trace, Debug, Information, Warning, Error, Critical). - Filtrer les journaux selon la gravité minimale (Trace, Debug, Information, Warning, Error, Critical). + Filter logs by minimum severity (Trace, Debug, Information, Warning, Error, Critical) + Filtrer les journaux selon la gravité minimale (Trace, Debug, Information, Warning, Error, Critical). - View spans from the Dashboard telemetry API. - Afficher les intervalles à partir de l’API de télémétrie du tableau de bord. + View spans from the Dashboard telemetry API + Afficher les intervalles à partir de l’API de télémétrie du tableau de bord. The trace ID to view. If not specified, lists all traces. - ID de trace à afficher. Si aucun n’est spécifié, liste toutes les traces. + ID de trace à afficher. Si aucun n’est spécifié, liste toutes les traces. - Filter by trace ID. - Filtrer par ID de trace. + Filter by trace ID + Filtrer par ID de trace. @@ -108,8 +108,8 @@ - View traces from the Dashboard telemetry API. - Afficher les traces via l’API de télémétrie du tableau de bord. + View traces from the Dashboard telemetry API + Afficher les traces via l’API de télémétrie du tableau de bord. diff --git a/src/Aspire.Cli/Resources/xlf/TelemetryCommandStrings.it.xlf b/src/Aspire.Cli/Resources/xlf/TelemetryCommandStrings.it.xlf index 4cb535a3876..1949a06ded2 100644 --- a/src/Aspire.Cli/Resources/xlf/TelemetryCommandStrings.it.xlf +++ b/src/Aspire.Cli/Resources/xlf/TelemetryCommandStrings.it.xlf @@ -3,12 +3,12 @@ - Dashboard API is not available. Ensure the AppHost is running with Dashboard enabled. - L'API del dashboard non è disponibile. Verificare che AppHost sia in esecuzione con il dashboard abilitato. + Dashboard API is not available. Ensure the apphost is running with Dashboard enabled. + L'API del dashboard non è disponibile. Verificare che AppHost sia in esecuzione con il dashboard abilitato. - View OpenTelemetry data (logs, spans, traces) from a running apphost. + View OpenTelemetry data (logs, spans, traces) from a running apphost Visualizza i dati di telemetria (log, span, tracce) da un'applicazione Aspire in esecuzione. @@ -18,18 +18,18 @@ - Stream telemetry in real-time as it arrives. - Trasmetti i dati di telemetria in tempo reale non appena arrivano. + Stream telemetry in real-time as it arrives + Trasmetti i dati di telemetria in tempo reale non appena arrivano. - Output format (Table or Json). - Formato di output (Tabella o JSON). + Output format (Table or Json) + Formato di output (Tabella o JSON). - Filter by error status (true to show only errors, false to exclude errors). - Filtra per stato di errore (true per mostrare solo gli errori, false per escluderli). + Filter by error status (true to show only errors, false to exclude errors) + Filtra per stato di errore (true per mostrare solo gli errori, false per escluderli). @@ -63,18 +63,18 @@ - Maximum number of items to return. - Numero massimo di elementi da restituire. + Maximum number of items to return + Numero massimo di elementi da restituire. - View structured logs from the Dashboard telemetry API. - Visualizza i log strutturati dall'API di telemetria del dashboard. + View structured logs from the Dashboard telemetry API + Visualizza i log strutturati dall'API di telemetria del dashboard. - Filter by resource name. - Filtrare per nome della risorsa. + Filter by resource name + Filtrare per nome della risorsa. @@ -83,23 +83,23 @@ - Filter logs by minimum severity (Trace, Debug, Information, Warning, Error, Critical). - Filtra i log in base alla gravità minima (Traccia, Debug, Informazioni, Avviso, Errore, Critico). + Filter logs by minimum severity (Trace, Debug, Information, Warning, Error, Critical) + Filtra i log in base alla gravità minima (Traccia, Debug, Informazioni, Avviso, Errore, Critico). - View spans from the Dashboard telemetry API. - Visualizza gli span dall'API di telemetria del dashboard. + View spans from the Dashboard telemetry API + Visualizza gli span dall'API di telemetria del dashboard. The trace ID to view. If not specified, lists all traces. - L'ID traccia da visualizzare. Se non specificato, vengono elencate tutte le tracce. + L'ID traccia da visualizzare. Se non specificato, vengono elencate tutte le tracce. - Filter by trace ID. - Filtra per ID traccia. + Filter by trace ID + Filtra per ID traccia. @@ -108,8 +108,8 @@ - View traces from the Dashboard telemetry API. - Visualizza le tracce dall'API di telemetria del dashboard. + View traces from the Dashboard telemetry API + Visualizza le tracce dall'API di telemetria del dashboard. diff --git a/src/Aspire.Cli/Resources/xlf/TelemetryCommandStrings.ja.xlf b/src/Aspire.Cli/Resources/xlf/TelemetryCommandStrings.ja.xlf index 6dfbda46862..d036b1766dd 100644 --- a/src/Aspire.Cli/Resources/xlf/TelemetryCommandStrings.ja.xlf +++ b/src/Aspire.Cli/Resources/xlf/TelemetryCommandStrings.ja.xlf @@ -3,12 +3,12 @@ - Dashboard API is not available. Ensure the AppHost is running with Dashboard enabled. - ダッシュボード API は利用できません。ダッシュボードが有効になっている状態で AppHost が実行されていることを確認します。 + Dashboard API is not available. Ensure the apphost is running with Dashboard enabled. + ダッシュボード API は利用できません。ダッシュボードが有効になっている状態で AppHost が実行されていることを確認します。 - View OpenTelemetry data (logs, spans, traces) from a running apphost. + View OpenTelemetry data (logs, spans, traces) from a running apphost 実行中の Aspire アプリケーションのテレメトリ データ (ログ、スパン、トレース) を表示します。 @@ -18,18 +18,18 @@ - Stream telemetry in real-time as it arrives. - テレメトリが到着すると、リアルタイムでストリーミングします。 + Stream telemetry in real-time as it arrives + テレメトリが到着すると、リアルタイムでストリーミングします。 - Output format (Table or Json). - 出力形式 (テーブルまたは JSON)。 + Output format (Table or Json) + 出力形式 (テーブルまたは JSON)。 - Filter by error status (true to show only errors, false to exclude errors). - エラーの状態でフィルター処理します (エラーのみを表示する場合は true、エラーを除外するには false)。 + Filter by error status (true to show only errors, false to exclude errors) + エラーの状態でフィルター処理します (エラーのみを表示する場合は true、エラーを除外するには false)。 @@ -63,18 +63,18 @@ - Maximum number of items to return. - 返される項目の最大数。 + Maximum number of items to return + 返される項目の最大数。 - View structured logs from the Dashboard telemetry API. - ダッシュボード テレメトリ API から構造化ログを表示します。 + View structured logs from the Dashboard telemetry API + ダッシュボード テレメトリ API から構造化ログを表示します。 - Filter by resource name. - リソース名でフィルター処理します。 + Filter by resource name + リソース名でフィルター処理します。 @@ -83,23 +83,23 @@ - Filter logs by minimum severity (Trace, Debug, Information, Warning, Error, Critical). - 最小重大度 (トレース、デバッグ、情報、警告、エラー、重大) でログをフィルター処理します。 + Filter logs by minimum severity (Trace, Debug, Information, Warning, Error, Critical) + 最小重大度 (トレース、デバッグ、情報、警告、エラー、重大) でログをフィルター処理します。 - View spans from the Dashboard telemetry API. - ダッシュボード テレメトリ API からスパンを表示します。 + View spans from the Dashboard telemetry API + ダッシュボード テレメトリ API からスパンを表示します。 The trace ID to view. If not specified, lists all traces. - 表示するトレース ID。指定しない場合は、すべてのトレースが一覧表示されます。 + 表示するトレース ID。指定しない場合は、すべてのトレースが一覧表示されます。 - Filter by trace ID. - トレース ID でフィルター処理します。 + Filter by trace ID + トレース ID でフィルター処理します。 @@ -108,8 +108,8 @@ - View traces from the Dashboard telemetry API. - ダッシュボード テレメトリ API からトレースを表示します。 + View traces from the Dashboard telemetry API + ダッシュボード テレメトリ API からトレースを表示します。 diff --git a/src/Aspire.Cli/Resources/xlf/TelemetryCommandStrings.ko.xlf b/src/Aspire.Cli/Resources/xlf/TelemetryCommandStrings.ko.xlf index e33e8315c39..134a3588546 100644 --- a/src/Aspire.Cli/Resources/xlf/TelemetryCommandStrings.ko.xlf +++ b/src/Aspire.Cli/Resources/xlf/TelemetryCommandStrings.ko.xlf @@ -3,12 +3,12 @@ - Dashboard API is not available. Ensure the AppHost is running with Dashboard enabled. - 대시보드 API를 사용할 수 없습니다. AppHost가 대시보드를 활성화한 상태로 실행 중인지 확인하세요. + Dashboard API is not available. Ensure the apphost is running with Dashboard enabled. + 대시보드 API를 사용할 수 없습니다. AppHost가 대시보드를 활성화한 상태로 실행 중인지 확인하세요. - View OpenTelemetry data (logs, spans, traces) from a running apphost. + View OpenTelemetry data (logs, spans, traces) from a running apphost 실행 중인 Aspire 애플리케이션의 원격 분석 데이터(로그, 범위, 추적)를 확인합니다. @@ -18,18 +18,18 @@ - Stream telemetry in real-time as it arrives. - 원격 분석 데이터를 실시간으로 스트림합니다. + Stream telemetry in real-time as it arrives + 원격 분석 데이터를 실시간으로 스트림합니다. - Output format (Table or Json). - 출력 형식(테이블 또는 JSON)입니다. + Output format (Table or Json) + 출력 형식(테이블 또는 JSON)입니다. - Filter by error status (true to show only errors, false to exclude errors). - 오류 상태로 필터링합니다(true면 오류만, false면 오류 제외). + Filter by error status (true to show only errors, false to exclude errors) + 오류 상태로 필터링합니다(true면 오류만, false면 오류 제외). @@ -63,18 +63,18 @@ - Maximum number of items to return. - 반환할 최대 항목 수입니다. + Maximum number of items to return + 반환할 최대 항목 수입니다. - View structured logs from the Dashboard telemetry API. - 대시보드 원격 분석 API에서 구조화된 로그를 확인합니다. + View structured logs from the Dashboard telemetry API + 대시보드 원격 분석 API에서 구조화된 로그를 확인합니다. - Filter by resource name. - 리소스 이름으로 필터링 + Filter by resource name + 리소스 이름으로 필터링 @@ -83,23 +83,23 @@ - Filter logs by minimum severity (Trace, Debug, Information, Warning, Error, Critical). - 최소 심각도(Trace, Debug, Information, Warning, Error, Critical)로 로그를 필터링합니다. + Filter logs by minimum severity (Trace, Debug, Information, Warning, Error, Critical) + 최소 심각도(Trace, Debug, Information, Warning, Error, Critical)로 로그를 필터링합니다. - View spans from the Dashboard telemetry API. - 대시보드 원격 분석 API에서 범위를 확인합니다. + View spans from the Dashboard telemetry API + 대시보드 원격 분석 API에서 범위를 확인합니다. The trace ID to view. If not specified, lists all traces. - 조회할 추적 ID입니다. 지정하지 않으면 모든 추적이 나열됩니다. + 조회할 추적 ID입니다. 지정하지 않으면 모든 추적이 나열됩니다. - Filter by trace ID. - 추적 ID로 필터링합니다. + Filter by trace ID + 추적 ID로 필터링합니다. @@ -108,8 +108,8 @@ - View traces from the Dashboard telemetry API. - 대시보드 원격 분석 API에서 추적을 확인하세요. + View traces from the Dashboard telemetry API + 대시보드 원격 분석 API에서 추적을 확인하세요. diff --git a/src/Aspire.Cli/Resources/xlf/TelemetryCommandStrings.pl.xlf b/src/Aspire.Cli/Resources/xlf/TelemetryCommandStrings.pl.xlf index 40e177ca1f7..47cf949bb6c 100644 --- a/src/Aspire.Cli/Resources/xlf/TelemetryCommandStrings.pl.xlf +++ b/src/Aspire.Cli/Resources/xlf/TelemetryCommandStrings.pl.xlf @@ -3,12 +3,12 @@ - Dashboard API is not available. Ensure the AppHost is running with Dashboard enabled. - Interfejs API pulpitu nawigacyjnego jest niedostępny. Upewnij się, że host aplikacji działa z włączonym pulpitem nawigacyjnym. + Dashboard API is not available. Ensure the apphost is running with Dashboard enabled. + Interfejs API pulpitu nawigacyjnego jest niedostępny. Upewnij się, że host aplikacji działa z włączonym pulpitem nawigacyjnym. - View OpenTelemetry data (logs, spans, traces) from a running apphost. + View OpenTelemetry data (logs, spans, traces) from a running apphost Wyświetl dane telemetryczne (logi, zakresy, śledzenia) z uruchomionej aplikacji Aspire. @@ -18,18 +18,18 @@ - Stream telemetry in real-time as it arrives. - Strumieniuj telemetrię w czasie rzeczywistym, gdy tylko nadejdzie. + Stream telemetry in real-time as it arrives + Strumieniuj telemetrię w czasie rzeczywistym, gdy tylko nadejdzie. - Output format (Table or Json). - Format wyjściowy (tabela lub JSON). + Output format (Table or Json) + Format wyjściowy (tabela lub JSON). - Filter by error status (true to show only errors, false to exclude errors). - Filtruj według statusu błędu (wartość true, aby pokazać tylko błędy, false, aby je wykluczyć). + Filter by error status (true to show only errors, false to exclude errors) + Filtruj według statusu błędu (wartość true, aby pokazać tylko błędy, false, aby je wykluczyć). @@ -63,18 +63,18 @@ - Maximum number of items to return. - Maksymalna liczba elementów do zwrócenia. + Maximum number of items to return + Maksymalna liczba elementów do zwrócenia. - View structured logs from the Dashboard telemetry API. - Wyświetl strukturalne logi z interfejsu API telemetrii pulpitu nawigacyjnego. + View structured logs from the Dashboard telemetry API + Wyświetl strukturalne logi z interfejsu API telemetrii pulpitu nawigacyjnego. - Filter by resource name. - Filtruj według nazwy zasobu. + Filter by resource name + Filtruj według nazwy zasobu. @@ -83,23 +83,23 @@ - Filter logs by minimum severity (Trace, Debug, Information, Warning, Error, Critical). - Filtruj logi według minimalnego poziomu ważności (Śledzenie, Debugowanie, Informacja, Ostrzeżenie, Błąd, Krytyczne). + Filter logs by minimum severity (Trace, Debug, Information, Warning, Error, Critical) + Filtruj logi według minimalnego poziomu ważności (Śledzenie, Debugowanie, Informacja, Ostrzeżenie, Błąd, Krytyczne). - View spans from the Dashboard telemetry API. - Wyświetl zakresy z interfejsu API telemetrii pulpitu nawigacyjnego. + View spans from the Dashboard telemetry API + Wyświetl zakresy z interfejsu API telemetrii pulpitu nawigacyjnego. The trace ID to view. If not specified, lists all traces. - Identyfikator śledzenia do wyświetlenia. Jeśli nie zostanie podany, wyświetli listę wszystkich śledzeń. + Identyfikator śledzenia do wyświetlenia. Jeśli nie zostanie podany, wyświetli listę wszystkich śledzeń. - Filter by trace ID. - Filtruj według identyfikatora śledzenia. + Filter by trace ID + Filtruj według identyfikatora śledzenia. @@ -108,8 +108,8 @@ - View traces from the Dashboard telemetry API. - Wyświetl ślady z interfejsu API telemetrii pulpitu nawigacyjnego. + View traces from the Dashboard telemetry API + Wyświetl ślady z interfejsu API telemetrii pulpitu nawigacyjnego. diff --git a/src/Aspire.Cli/Resources/xlf/TelemetryCommandStrings.pt-BR.xlf b/src/Aspire.Cli/Resources/xlf/TelemetryCommandStrings.pt-BR.xlf index 6f0f0cd665e..12e9ee6f199 100644 --- a/src/Aspire.Cli/Resources/xlf/TelemetryCommandStrings.pt-BR.xlf +++ b/src/Aspire.Cli/Resources/xlf/TelemetryCommandStrings.pt-BR.xlf @@ -3,12 +3,12 @@ - Dashboard API is not available. Ensure the AppHost is running with Dashboard enabled. - A API do painel não está disponível. Verifique se o AppHost está em execução com o Painel habilitado. + Dashboard API is not available. Ensure the apphost is running with Dashboard enabled. + A API do painel não está disponível. Verifique se o AppHost está em execução com o Painel habilitado. - View OpenTelemetry data (logs, spans, traces) from a running apphost. + View OpenTelemetry data (logs, spans, traces) from a running apphost Veja os dados de telemetria (logs, spans, rastreamentos) de um aplicativo Aspire em execução. @@ -18,18 +18,18 @@ - Stream telemetry in real-time as it arrives. - Transmita telemetria em tempo real conforme ela chega. + Stream telemetry in real-time as it arrives + Transmita telemetria em tempo real conforme ela chega. - Output format (Table or Json). - Formato de saída (Tabela ou Json). + Output format (Table or Json) + Formato de saída (Tabela ou Json). - Filter by error status (true to show only errors, false to exclude errors). - Filtrar por status de erro (true para mostrar apenas erros, false para excluir erros). + Filter by error status (true to show only errors, false to exclude errors) + Filtrar por status de erro (true para mostrar apenas erros, false para excluir erros). @@ -63,18 +63,18 @@ - Maximum number of items to return. - Número máximo de itens a serem retornados. + Maximum number of items to return + Número máximo de itens a serem retornados. - View structured logs from the Dashboard telemetry API. - Veja os logs estruturados da API de telemetria do Painel. + View structured logs from the Dashboard telemetry API + Veja os logs estruturados da API de telemetria do Painel. - Filter by resource name. - Filtre por nome de recurso. + Filter by resource name + Filtre por nome de recurso. @@ -83,23 +83,23 @@ - Filter logs by minimum severity (Trace, Debug, Information, Warning, Error, Critical). - Filtre os logs por severidade mínima (Rastreamento, Depuração, Informações, Aviso, Erro, Crítico). + Filter logs by minimum severity (Trace, Debug, Information, Warning, Error, Critical) + Filtre os logs por severidade mínima (Rastreamento, Depuração, Informações, Aviso, Erro, Crítico). - View spans from the Dashboard telemetry API. - Veja os spans da API de telemetria do Painel. + View spans from the Dashboard telemetry API + Veja os spans da API de telemetria do Painel. The trace ID to view. If not specified, lists all traces. - A ID de rastreamento a ser visualizada. Se não for especificado, listará todos os rastreamentos. + A ID de rastreamento a ser visualizada. Se não for especificado, listará todos os rastreamentos. - Filter by trace ID. - Filtrar por ID de rastreamento. + Filter by trace ID + Filtrar por ID de rastreamento. @@ -108,8 +108,8 @@ - View traces from the Dashboard telemetry API. - Veja os rastreamentos da API de telemetria do Painel. + View traces from the Dashboard telemetry API + Veja os rastreamentos da API de telemetria do Painel. diff --git a/src/Aspire.Cli/Resources/xlf/TelemetryCommandStrings.ru.xlf b/src/Aspire.Cli/Resources/xlf/TelemetryCommandStrings.ru.xlf index 2b60de02f03..d891decd765 100644 --- a/src/Aspire.Cli/Resources/xlf/TelemetryCommandStrings.ru.xlf +++ b/src/Aspire.Cli/Resources/xlf/TelemetryCommandStrings.ru.xlf @@ -3,12 +3,12 @@ - Dashboard API is not available. Ensure the AppHost is running with Dashboard enabled. - API панели мониторинга недоступен. Убедитесь, что AppHost запущен с включенной панелью мониторинга. + Dashboard API is not available. Ensure the apphost is running with Dashboard enabled. + API панели мониторинга недоступен. Убедитесь, что AppHost запущен с включенной панелью мониторинга. - View OpenTelemetry data (logs, spans, traces) from a running apphost. + View OpenTelemetry data (logs, spans, traces) from a running apphost Просмотр данных телеметрии (журналы, диапазоны, трассировки) из запущенного приложения Aspire. @@ -18,18 +18,18 @@ - Stream telemetry in real-time as it arrives. - Потоковая передача телеметрии в реальном времени по мере поступления. + Stream telemetry in real-time as it arrives + Потоковая передача телеметрии в реальном времени по мере поступления. - Output format (Table or Json). - Формат вывода (таблица или JSON). + Output format (Table or Json) + Формат вывода (таблица или JSON). - Filter by error status (true to show only errors, false to exclude errors). - Фильтрация по состоянию ошибки (true — показывать только ошибки, false — исключать ошибки). + Filter by error status (true to show only errors, false to exclude errors) + Фильтрация по состоянию ошибки (true — показывать только ошибки, false — исключать ошибки). @@ -63,18 +63,18 @@ - Maximum number of items to return. - Максимальное возвращаемое количество элементов. + Maximum number of items to return + Максимальное возвращаемое количество элементов. - View structured logs from the Dashboard telemetry API. - Просмотр структурированных журналов через API телеметрии панели мониторинга. + View structured logs from the Dashboard telemetry API + Просмотр структурированных журналов через API телеметрии панели мониторинга. - Filter by resource name. - Фильтровать по имени ресурса. + Filter by resource name + Фильтровать по имени ресурса. @@ -83,23 +83,23 @@ - Filter logs by minimum severity (Trace, Debug, Information, Warning, Error, Critical). - Фильтрация журналов по минимальному уровню серьезности (трассировка, отладка, информация, предупреждение, ошибка, критическое). + Filter logs by minimum severity (Trace, Debug, Information, Warning, Error, Critical) + Фильтрация журналов по минимальному уровню серьезности (трассировка, отладка, информация, предупреждение, ошибка, критическое). - View spans from the Dashboard telemetry API. - Просмотр диапазонов через API телеметрии панели мониторинга. + View spans from the Dashboard telemetry API + Просмотр диапазонов через API телеметрии панели мониторинга. The trace ID to view. If not specified, lists all traces. - Идентификатор трассировки для просмотра. Если не указан, отображаются все трассировки. + Идентификатор трассировки для просмотра. Если не указан, отображаются все трассировки. - Filter by trace ID. - Фильтровать по идентификатору трассировки. + Filter by trace ID + Фильтровать по идентификатору трассировки. @@ -108,8 +108,8 @@ - View traces from the Dashboard telemetry API. - Просмотр трассировок через API телеметрии панели мониторинга. + View traces from the Dashboard telemetry API + Просмотр трассировок через API телеметрии панели мониторинга. diff --git a/src/Aspire.Cli/Resources/xlf/TelemetryCommandStrings.tr.xlf b/src/Aspire.Cli/Resources/xlf/TelemetryCommandStrings.tr.xlf index e4b0c483738..1bb8b04d0b4 100644 --- a/src/Aspire.Cli/Resources/xlf/TelemetryCommandStrings.tr.xlf +++ b/src/Aspire.Cli/Resources/xlf/TelemetryCommandStrings.tr.xlf @@ -3,12 +3,12 @@ - Dashboard API is not available. Ensure the AppHost is running with Dashboard enabled. - Pano API'si kullanılamıyor. AppHost'un Pano özelliği etkin olarak çalıştığından emin olun. + Dashboard API is not available. Ensure the apphost is running with Dashboard enabled. + Pano API'si kullanılamıyor. AppHost'un Pano özelliği etkin olarak çalıştığından emin olun. - View OpenTelemetry data (logs, spans, traces) from a running apphost. + View OpenTelemetry data (logs, spans, traces) from a running apphost Çalışan bir Aspire uygulamasından telemetri verilerini (günlükler, yayılmalar, izlemeler) görüntüleyin. @@ -18,18 +18,18 @@ - Stream telemetry in real-time as it arrives. - Telemetri geldikçe gerçek zamanlı olarak akışını yapın. + Stream telemetry in real-time as it arrives + Telemetri geldikçe gerçek zamanlı olarak akışını yapın. - Output format (Table or Json). - Çıktı biçimi (Tablo veya Json). + Output format (Table or Json) + Çıktı biçimi (Tablo veya Json). - Filter by error status (true to show only errors, false to exclude errors). - Hata durumuna göre filtreleyin (yalnızca hataları göstermek için true, hataları hariç tutmak için false). + Filter by error status (true to show only errors, false to exclude errors) + Hata durumuna göre filtreleyin (yalnızca hataları göstermek için true, hataları hariç tutmak için false). @@ -63,18 +63,18 @@ - Maximum number of items to return. - Döndürülecek maksimum öğe sayısı. + Maximum number of items to return + Döndürülecek maksimum öğe sayısı. - View structured logs from the Dashboard telemetry API. - Pano telemetri API'sinden yapılandırılmış günlükleri görüntüleyin. + View structured logs from the Dashboard telemetry API + Pano telemetri API'sinden yapılandırılmış günlükleri görüntüleyin. - Filter by resource name. - Kaynak adına göre filtreleyin. + Filter by resource name + Kaynak adına göre filtreleyin. @@ -83,23 +83,23 @@ - Filter logs by minimum severity (Trace, Debug, Information, Warning, Error, Critical). - Günlükleri en düşük önem derecesine göre filtreleyin (İzleme, Hata Ayıklama, Bilgi, Uyarı, Hata, Kritik). + Filter logs by minimum severity (Trace, Debug, Information, Warning, Error, Critical) + Günlükleri en düşük önem derecesine göre filtreleyin (İzleme, Hata Ayıklama, Bilgi, Uyarı, Hata, Kritik). - View spans from the Dashboard telemetry API. - Pano telemetri API'sinden yayılmaları görüntüleyin. + View spans from the Dashboard telemetry API + Pano telemetri API'sinden yayılmaları görüntüleyin. The trace ID to view. If not specified, lists all traces. - Görüntülenecek izleme kimliği. Belirtilmezse, tüm izlemeler listelenir. + Görüntülenecek izleme kimliği. Belirtilmezse, tüm izlemeler listelenir. - Filter by trace ID. - İzleme kimliğine göre filtreleyin. + Filter by trace ID + İzleme kimliğine göre filtreleyin. @@ -108,8 +108,8 @@ - View traces from the Dashboard telemetry API. - Pano telemetri API'sinden izlemeleri görüntüleyin. + View traces from the Dashboard telemetry API + Pano telemetri API'sinden izlemeleri görüntüleyin. diff --git a/src/Aspire.Cli/Resources/xlf/TelemetryCommandStrings.zh-Hans.xlf b/src/Aspire.Cli/Resources/xlf/TelemetryCommandStrings.zh-Hans.xlf index 3729489f782..33be6ccd22a 100644 --- a/src/Aspire.Cli/Resources/xlf/TelemetryCommandStrings.zh-Hans.xlf +++ b/src/Aspire.Cli/Resources/xlf/TelemetryCommandStrings.zh-Hans.xlf @@ -3,12 +3,12 @@ - Dashboard API is not available. Ensure the AppHost is running with Dashboard enabled. - 仪表板 API 不可用。请确保 AppHost 在运行时启用了仪表板。 + Dashboard API is not available. Ensure the apphost is running with Dashboard enabled. + 仪表板 API 不可用。请确保 AppHost 在运行时启用了仪表板。 - View OpenTelemetry data (logs, spans, traces) from a running apphost. + View OpenTelemetry data (logs, spans, traces) from a running apphost 查看正在运行的 Aspire 应用程序中的遥测数据(日志、跨度、跟踪)。 @@ -18,18 +18,18 @@ - Stream telemetry in real-time as it arrives. - 在遥测数据到来时,将其实时流式传输。 + Stream telemetry in real-time as it arrives + 在遥测数据到来时,将其实时流式传输。 - Output format (Table or Json). - 输出格式(表格或 Json)。 + Output format (Table or Json) + 输出格式(表格或 Json)。 - Filter by error status (true to show only errors, false to exclude errors). - 按错误状态筛选(true 表示仅显示错误,false 表示排除错误)。 + Filter by error status (true to show only errors, false to exclude errors) + 按错误状态筛选(true 表示仅显示错误,false 表示排除错误)。 @@ -63,18 +63,18 @@ - Maximum number of items to return. - 要返回的最大项目数。 + Maximum number of items to return + 要返回的最大项目数。 - View structured logs from the Dashboard telemetry API. - 查看仪表板遥测 API 中的结构化日志。 + View structured logs from the Dashboard telemetry API + 查看仪表板遥测 API 中的结构化日志。 - Filter by resource name. - 按资源名称筛选。 + Filter by resource name + 按资源名称筛选。 @@ -83,23 +83,23 @@ - Filter logs by minimum severity (Trace, Debug, Information, Warning, Error, Critical). - 按最低严重级别(跟踪、调试、信息、警告、错误、严重)筛选日志。 + Filter logs by minimum severity (Trace, Debug, Information, Warning, Error, Critical) + 按最低严重级别(跟踪、调试、信息、警告、错误、严重)筛选日志。 - View spans from the Dashboard telemetry API. - 查看仪表板遥测 API 中的跨度。 + View spans from the Dashboard telemetry API + 查看仪表板遥测 API 中的跨度。 The trace ID to view. If not specified, lists all traces. - 要查看的跟踪 ID。如果未指定,则列出所有跟踪。 + 要查看的跟踪 ID。如果未指定,则列出所有跟踪。 - Filter by trace ID. - 按跟踪 ID 筛选。 + Filter by trace ID + 按跟踪 ID 筛选。 @@ -108,8 +108,8 @@ - View traces from the Dashboard telemetry API. - 查看仪表板遥测 API 中的跟踪。 + View traces from the Dashboard telemetry API + 查看仪表板遥测 API 中的跟踪。 diff --git a/src/Aspire.Cli/Resources/xlf/TelemetryCommandStrings.zh-Hant.xlf b/src/Aspire.Cli/Resources/xlf/TelemetryCommandStrings.zh-Hant.xlf index dccc53de57c..ee93848e57b 100644 --- a/src/Aspire.Cli/Resources/xlf/TelemetryCommandStrings.zh-Hant.xlf +++ b/src/Aspire.Cli/Resources/xlf/TelemetryCommandStrings.zh-Hant.xlf @@ -3,12 +3,12 @@ - Dashboard API is not available. Ensure the AppHost is running with Dashboard enabled. - 儀表板 API 無法使用。確保 AppHost 執行中且儀表板功能已啟用。 + Dashboard API is not available. Ensure the apphost is running with Dashboard enabled. + 儀表板 API 無法使用。確保 AppHost 執行中且儀表板功能已啟用。 - View OpenTelemetry data (logs, spans, traces) from a running apphost. + View OpenTelemetry data (logs, spans, traces) from a running apphost 從執行中的 Aspire 應用程式檢視遙測資料 (記錄、範圍、追蹤)。 @@ -18,18 +18,18 @@ - Stream telemetry in real-time as it arrives. - 在遙測抵達時即時串流遙測。 + Stream telemetry in real-time as it arrives + 在遙測抵達時即時串流遙測。 - Output format (Table or Json). - 輸出格式 (資料表或 Json)。 + Output format (Table or Json) + 輸出格式 (資料表或 Json)。 - Filter by error status (true to show only errors, false to exclude errors). - 依錯誤狀態篩選 (true 以僅顯示錯誤,false 以排除錯誤)。 + Filter by error status (true to show only errors, false to exclude errors) + 依錯誤狀態篩選 (true 以僅顯示錯誤,false 以排除錯誤)。 @@ -63,18 +63,18 @@ - Maximum number of items to return. - 要傳回的項目數上限。 + Maximum number of items to return + 要傳回的項目數上限。 - View structured logs from the Dashboard telemetry API. - 從儀表板遙測 API 檢視結構化記錄。 + View structured logs from the Dashboard telemetry API + 從儀表板遙測 API 檢視結構化記錄。 - Filter by resource name. - 依資源名稱篩選。 + Filter by resource name + 依資源名稱篩選。 @@ -83,23 +83,23 @@ - Filter logs by minimum severity (Trace, Debug, Information, Warning, Error, Critical). - 依最低嚴重性篩選記錄 (追蹤、偵錯、資訊、警告、錯誤、重大)。 + Filter logs by minimum severity (Trace, Debug, Information, Warning, Error, Critical) + 依最低嚴重性篩選記錄 (追蹤、偵錯、資訊、警告、錯誤、重大)。 - View spans from the Dashboard telemetry API. - 從儀表板遙測 API 檢視範圍。 + View spans from the Dashboard telemetry API + 從儀表板遙測 API 檢視範圍。 The trace ID to view. If not specified, lists all traces. - 要檢視的追蹤識別碼。如果未指定,則列出所有追蹤。 + 要檢視的追蹤識別碼。如果未指定,則列出所有追蹤。 - Filter by trace ID. - 依追蹤識別碼篩選。 + Filter by trace ID + 依追蹤識別碼篩選。 @@ -108,8 +108,8 @@ - View traces from the Dashboard telemetry API. - 從儀表板遙測 API 檢視追蹤。 + View traces from the Dashboard telemetry API + 從儀表板遙測 API 檢視追蹤。 diff --git a/src/Aspire.Cli/Resources/xlf/TemplatingStrings.cs.xlf b/src/Aspire.Cli/Resources/xlf/TemplatingStrings.cs.xlf index 09416d8b90b..af0f81f6f9d 100644 --- a/src/Aspire.Cli/Resources/xlf/TemplatingStrings.cs.xlf +++ b/src/Aspire.Cli/Resources/xlf/TemplatingStrings.cs.xlf @@ -218,13 +218,13 @@ - Run 'aspire run' to start your AppHost. - Run 'aspire run' to start your AppHost. + Run 'aspire run' to start your apphost. + Run 'aspire run' to start your apphost. - Run 'cd "{0}"' and then 'aspire run' to start your AppHost. - Run 'cd "{0}"' and then 'aspire run' to start your AppHost. + Run 'cd "{0}"' and then 'aspire run' to start your apphost. + Run 'cd "{0}"' and then 'aspire run' to start your apphost. {0} is the relative path to the project directory diff --git a/src/Aspire.Cli/Resources/xlf/TemplatingStrings.de.xlf b/src/Aspire.Cli/Resources/xlf/TemplatingStrings.de.xlf index 8cea6486644..1d9c0ef29ef 100644 --- a/src/Aspire.Cli/Resources/xlf/TemplatingStrings.de.xlf +++ b/src/Aspire.Cli/Resources/xlf/TemplatingStrings.de.xlf @@ -218,13 +218,13 @@ - Run 'aspire run' to start your AppHost. - Run 'aspire run' to start your AppHost. + Run 'aspire run' to start your apphost. + Run 'aspire run' to start your apphost. - Run 'cd "{0}"' and then 'aspire run' to start your AppHost. - Run 'cd "{0}"' and then 'aspire run' to start your AppHost. + Run 'cd "{0}"' and then 'aspire run' to start your apphost. + Run 'cd "{0}"' and then 'aspire run' to start your apphost. {0} is the relative path to the project directory diff --git a/src/Aspire.Cli/Resources/xlf/TemplatingStrings.es.xlf b/src/Aspire.Cli/Resources/xlf/TemplatingStrings.es.xlf index 30e7f42adae..6be0689c02c 100644 --- a/src/Aspire.Cli/Resources/xlf/TemplatingStrings.es.xlf +++ b/src/Aspire.Cli/Resources/xlf/TemplatingStrings.es.xlf @@ -218,13 +218,13 @@ - Run 'aspire run' to start your AppHost. - Run 'aspire run' to start your AppHost. + Run 'aspire run' to start your apphost. + Run 'aspire run' to start your apphost. - Run 'cd "{0}"' and then 'aspire run' to start your AppHost. - Run 'cd "{0}"' and then 'aspire run' to start your AppHost. + Run 'cd "{0}"' and then 'aspire run' to start your apphost. + Run 'cd "{0}"' and then 'aspire run' to start your apphost. {0} is the relative path to the project directory diff --git a/src/Aspire.Cli/Resources/xlf/TemplatingStrings.fr.xlf b/src/Aspire.Cli/Resources/xlf/TemplatingStrings.fr.xlf index 74013a8cfb5..9b75a16f6f9 100644 --- a/src/Aspire.Cli/Resources/xlf/TemplatingStrings.fr.xlf +++ b/src/Aspire.Cli/Resources/xlf/TemplatingStrings.fr.xlf @@ -218,13 +218,13 @@ - Run 'aspire run' to start your AppHost. - Run 'aspire run' to start your AppHost. + Run 'aspire run' to start your apphost. + Run 'aspire run' to start your apphost. - Run 'cd "{0}"' and then 'aspire run' to start your AppHost. - Run 'cd "{0}"' and then 'aspire run' to start your AppHost. + Run 'cd "{0}"' and then 'aspire run' to start your apphost. + Run 'cd "{0}"' and then 'aspire run' to start your apphost. {0} is the relative path to the project directory diff --git a/src/Aspire.Cli/Resources/xlf/TemplatingStrings.it.xlf b/src/Aspire.Cli/Resources/xlf/TemplatingStrings.it.xlf index 462d351fcc7..ac35b6ef50b 100644 --- a/src/Aspire.Cli/Resources/xlf/TemplatingStrings.it.xlf +++ b/src/Aspire.Cli/Resources/xlf/TemplatingStrings.it.xlf @@ -218,13 +218,13 @@ - Run 'aspire run' to start your AppHost. - Run 'aspire run' to start your AppHost. + Run 'aspire run' to start your apphost. + Run 'aspire run' to start your apphost. - Run 'cd "{0}"' and then 'aspire run' to start your AppHost. - Run 'cd "{0}"' and then 'aspire run' to start your AppHost. + Run 'cd "{0}"' and then 'aspire run' to start your apphost. + Run 'cd "{0}"' and then 'aspire run' to start your apphost. {0} is the relative path to the project directory diff --git a/src/Aspire.Cli/Resources/xlf/TemplatingStrings.ja.xlf b/src/Aspire.Cli/Resources/xlf/TemplatingStrings.ja.xlf index a8d1b3e3a1a..6c3e323041d 100644 --- a/src/Aspire.Cli/Resources/xlf/TemplatingStrings.ja.xlf +++ b/src/Aspire.Cli/Resources/xlf/TemplatingStrings.ja.xlf @@ -218,13 +218,13 @@ - Run 'aspire run' to start your AppHost. - Run 'aspire run' to start your AppHost. + Run 'aspire run' to start your apphost. + Run 'aspire run' to start your apphost. - Run 'cd "{0}"' and then 'aspire run' to start your AppHost. - Run 'cd "{0}"' and then 'aspire run' to start your AppHost. + Run 'cd "{0}"' and then 'aspire run' to start your apphost. + Run 'cd "{0}"' and then 'aspire run' to start your apphost. {0} is the relative path to the project directory diff --git a/src/Aspire.Cli/Resources/xlf/TemplatingStrings.ko.xlf b/src/Aspire.Cli/Resources/xlf/TemplatingStrings.ko.xlf index d539fbd7954..aeb0a8bf03a 100644 --- a/src/Aspire.Cli/Resources/xlf/TemplatingStrings.ko.xlf +++ b/src/Aspire.Cli/Resources/xlf/TemplatingStrings.ko.xlf @@ -218,13 +218,13 @@ - Run 'aspire run' to start your AppHost. - Run 'aspire run' to start your AppHost. + Run 'aspire run' to start your apphost. + Run 'aspire run' to start your apphost. - Run 'cd "{0}"' and then 'aspire run' to start your AppHost. - Run 'cd "{0}"' and then 'aspire run' to start your AppHost. + Run 'cd "{0}"' and then 'aspire run' to start your apphost. + Run 'cd "{0}"' and then 'aspire run' to start your apphost. {0} is the relative path to the project directory diff --git a/src/Aspire.Cli/Resources/xlf/TemplatingStrings.pl.xlf b/src/Aspire.Cli/Resources/xlf/TemplatingStrings.pl.xlf index 6735e71410b..13a8b5e8bb1 100644 --- a/src/Aspire.Cli/Resources/xlf/TemplatingStrings.pl.xlf +++ b/src/Aspire.Cli/Resources/xlf/TemplatingStrings.pl.xlf @@ -218,13 +218,13 @@ - Run 'aspire run' to start your AppHost. - Run 'aspire run' to start your AppHost. + Run 'aspire run' to start your apphost. + Run 'aspire run' to start your apphost. - Run 'cd "{0}"' and then 'aspire run' to start your AppHost. - Run 'cd "{0}"' and then 'aspire run' to start your AppHost. + Run 'cd "{0}"' and then 'aspire run' to start your apphost. + Run 'cd "{0}"' and then 'aspire run' to start your apphost. {0} is the relative path to the project directory diff --git a/src/Aspire.Cli/Resources/xlf/TemplatingStrings.pt-BR.xlf b/src/Aspire.Cli/Resources/xlf/TemplatingStrings.pt-BR.xlf index e9149af6575..04339ca6842 100644 --- a/src/Aspire.Cli/Resources/xlf/TemplatingStrings.pt-BR.xlf +++ b/src/Aspire.Cli/Resources/xlf/TemplatingStrings.pt-BR.xlf @@ -218,13 +218,13 @@ - Run 'aspire run' to start your AppHost. - Run 'aspire run' to start your AppHost. + Run 'aspire run' to start your apphost. + Run 'aspire run' to start your apphost. - Run 'cd "{0}"' and then 'aspire run' to start your AppHost. - Run 'cd "{0}"' and then 'aspire run' to start your AppHost. + Run 'cd "{0}"' and then 'aspire run' to start your apphost. + Run 'cd "{0}"' and then 'aspire run' to start your apphost. {0} is the relative path to the project directory diff --git a/src/Aspire.Cli/Resources/xlf/TemplatingStrings.ru.xlf b/src/Aspire.Cli/Resources/xlf/TemplatingStrings.ru.xlf index c333ab9fce9..2560c1ce4b7 100644 --- a/src/Aspire.Cli/Resources/xlf/TemplatingStrings.ru.xlf +++ b/src/Aspire.Cli/Resources/xlf/TemplatingStrings.ru.xlf @@ -218,13 +218,13 @@ - Run 'aspire run' to start your AppHost. - Run 'aspire run' to start your AppHost. + Run 'aspire run' to start your apphost. + Run 'aspire run' to start your apphost. - Run 'cd "{0}"' and then 'aspire run' to start your AppHost. - Run 'cd "{0}"' and then 'aspire run' to start your AppHost. + Run 'cd "{0}"' and then 'aspire run' to start your apphost. + Run 'cd "{0}"' and then 'aspire run' to start your apphost. {0} is the relative path to the project directory diff --git a/src/Aspire.Cli/Resources/xlf/TemplatingStrings.tr.xlf b/src/Aspire.Cli/Resources/xlf/TemplatingStrings.tr.xlf index 2d669e80c76..69160bbc170 100644 --- a/src/Aspire.Cli/Resources/xlf/TemplatingStrings.tr.xlf +++ b/src/Aspire.Cli/Resources/xlf/TemplatingStrings.tr.xlf @@ -218,13 +218,13 @@ - Run 'aspire run' to start your AppHost. - Run 'aspire run' to start your AppHost. + Run 'aspire run' to start your apphost. + Run 'aspire run' to start your apphost. - Run 'cd "{0}"' and then 'aspire run' to start your AppHost. - Run 'cd "{0}"' and then 'aspire run' to start your AppHost. + Run 'cd "{0}"' and then 'aspire run' to start your apphost. + Run 'cd "{0}"' and then 'aspire run' to start your apphost. {0} is the relative path to the project directory diff --git a/src/Aspire.Cli/Resources/xlf/TemplatingStrings.zh-Hans.xlf b/src/Aspire.Cli/Resources/xlf/TemplatingStrings.zh-Hans.xlf index dc62f2773f3..70585b9c899 100644 --- a/src/Aspire.Cli/Resources/xlf/TemplatingStrings.zh-Hans.xlf +++ b/src/Aspire.Cli/Resources/xlf/TemplatingStrings.zh-Hans.xlf @@ -218,13 +218,13 @@ - Run 'aspire run' to start your AppHost. - Run 'aspire run' to start your AppHost. + Run 'aspire run' to start your apphost. + Run 'aspire run' to start your apphost. - Run 'cd "{0}"' and then 'aspire run' to start your AppHost. - Run 'cd "{0}"' and then 'aspire run' to start your AppHost. + Run 'cd "{0}"' and then 'aspire run' to start your apphost. + Run 'cd "{0}"' and then 'aspire run' to start your apphost. {0} is the relative path to the project directory diff --git a/src/Aspire.Cli/Resources/xlf/TemplatingStrings.zh-Hant.xlf b/src/Aspire.Cli/Resources/xlf/TemplatingStrings.zh-Hant.xlf index 3cc851c4eb4..22bf299db0d 100644 --- a/src/Aspire.Cli/Resources/xlf/TemplatingStrings.zh-Hant.xlf +++ b/src/Aspire.Cli/Resources/xlf/TemplatingStrings.zh-Hant.xlf @@ -218,13 +218,13 @@ - Run 'aspire run' to start your AppHost. - Run 'aspire run' to start your AppHost. + Run 'aspire run' to start your apphost. + Run 'aspire run' to start your apphost. - Run 'cd "{0}"' and then 'aspire run' to start your AppHost. - Run 'cd "{0}"' and then 'aspire run' to start your AppHost. + Run 'cd "{0}"' and then 'aspire run' to start your apphost. + Run 'cd "{0}"' and then 'aspire run' to start your apphost. {0} is the relative path to the project directory diff --git a/src/Aspire.Cli/Resources/xlf/UpdateCommandStrings.cs.xlf b/src/Aspire.Cli/Resources/xlf/UpdateCommandStrings.cs.xlf index 9e918b2a747..8cadf60c6a1 100644 --- a/src/Aspire.Cli/Resources/xlf/UpdateCommandStrings.cs.xlf +++ b/src/Aspire.Cli/Resources/xlf/UpdateCommandStrings.cs.xlf @@ -8,13 +8,13 @@ - Analyze App Host - Analyzovat hostitele aplikací + Analyze apphost + Analyzovat hostitele aplikací - Analyze App Host SDK - Analyzovat sadu SDK hostitele aplikací + Analyze apphost SDK + Analyzovat sadu SDK hostitele aplikací @@ -73,8 +73,8 @@ - Update integrations in the Aspire project. (Preview) - Aktualizujte integrace v projektu Aspire. (Preview) + Update integrations in the Aspire project (Preview) + Aktualizujte integrace v projektu Aspire. (Preview) @@ -113,8 +113,8 @@ - Note: Update plan generated using fallback parsing due to unresolvable AppHost SDK. Dependency analysis may have reduced accuracy. - Poznámka: Plán aktualizace byl vygenerován pomocí náhradní analýzy kvůli nevyřešitelné sadě AppHost SDK. Analýza závislostí může mít sníženou přesnost. + Note: Update plan generated using fallback parsing due to unresolvable apphost SDK. Dependency analysis may have reduced accuracy. + Poznámka: Plán aktualizace byl vygenerován pomocí náhradní analýzy kvůli nevyřešitelné sadě AppHost SDK. Analýza závislostí může mít sníženou přesnost. @@ -138,8 +138,8 @@ - No Aspire AppHost project found. Would you like to update the Aspire CLI instead? - Nenašel se žádný projekt Aspire AppHost. Chcete místo toho aktualizovat rozhraní CLI Aspire? + No Aspire apphost project found. Would you like to update the Aspire CLI instead? + Nenašel se žádný projekt Aspire AppHost. Chcete místo toho aktualizovat rozhraní CLI Aspire? @@ -173,8 +173,8 @@ - The path to the Aspire AppHost project file. - Cesta k souboru projektu Aspire AppHost. + The path to the Aspire apphost project file + Cesta k souboru projektu Aspire AppHost. @@ -227,6 +227,11 @@ Vyberte kanál: + + Update the Aspire CLI itself to the latest version + Update the Aspire CLI itself to the latest version + + Unexpected code path. Neočekávaná cesta kódu. diff --git a/src/Aspire.Cli/Resources/xlf/UpdateCommandStrings.de.xlf b/src/Aspire.Cli/Resources/xlf/UpdateCommandStrings.de.xlf index 1565748d480..19c75ce5f9f 100644 --- a/src/Aspire.Cli/Resources/xlf/UpdateCommandStrings.de.xlf +++ b/src/Aspire.Cli/Resources/xlf/UpdateCommandStrings.de.xlf @@ -8,13 +8,13 @@ - Analyze App Host - App-Host analysieren + Analyze apphost + App-Host analysieren - Analyze App Host SDK - App-Host-SDK analysieren + Analyze apphost SDK + App-Host-SDK analysieren @@ -73,8 +73,8 @@ - Update integrations in the Aspire project. (Preview) - Dient zum Aktualisieren von Integrationen im Aproject. (Vorschau) + Update integrations in the Aspire project (Preview) + Dient zum Aktualisieren von Integrationen im Aproject. (Vorschau) @@ -113,8 +113,8 @@ - Note: Update plan generated using fallback parsing due to unresolvable AppHost SDK. Dependency analysis may have reduced accuracy. - Hinweis: Aktualisieren Sie den Plan, der mithilfe der Fallbackanalyse generiert wurde, da das AppHost-SDK nicht auflösbar ist. Die Abhängigkeitsanalyse weist möglicherweise eine geringere Genauigkeit auf. + Note: Update plan generated using fallback parsing due to unresolvable apphost SDK. Dependency analysis may have reduced accuracy. + Hinweis: Aktualisieren Sie den Plan, der mithilfe der Fallbackanalyse generiert wurde, da das AppHost-SDK nicht auflösbar ist. Die Abhängigkeitsanalyse weist möglicherweise eine geringere Genauigkeit auf. @@ -138,8 +138,8 @@ - No Aspire AppHost project found. Would you like to update the Aspire CLI instead? - Es wurde kein Aspire-AppHost-Projekt gefunden. Möchten Sie stattdessen die Aspire-CLI aktualisieren? + No Aspire apphost project found. Would you like to update the Aspire CLI instead? + Es wurde kein Aspire-AppHost-Projekt gefunden. Möchten Sie stattdessen die Aspire-CLI aktualisieren? @@ -173,8 +173,8 @@ - The path to the Aspire AppHost project file. - Der Pfad zur Aspire AppHost-Projektdatei. + The path to the Aspire apphost project file + Der Pfad zur Aspire AppHost-Projektdatei. @@ -227,6 +227,11 @@ Wählen Sie einen Kanal aus. + + Update the Aspire CLI itself to the latest version + Update the Aspire CLI itself to the latest version + + Unexpected code path. Unerwarteter Codepfad diff --git a/src/Aspire.Cli/Resources/xlf/UpdateCommandStrings.es.xlf b/src/Aspire.Cli/Resources/xlf/UpdateCommandStrings.es.xlf index c2a11711aa0..e5a6462d08c 100644 --- a/src/Aspire.Cli/Resources/xlf/UpdateCommandStrings.es.xlf +++ b/src/Aspire.Cli/Resources/xlf/UpdateCommandStrings.es.xlf @@ -8,13 +8,13 @@ - Analyze App Host - Analizar host de aplicación + Analyze apphost + Analizar host de aplicación - Analyze App Host SDK - Analizar el SDK de host de aplicaciones + Analyze apphost SDK + Analizar el SDK de host de aplicaciones @@ -73,8 +73,8 @@ - Update integrations in the Aspire project. (Preview) - Actualizar las integraciones en el proyecto Aspire. (Versión preliminar) + Update integrations in the Aspire project (Preview) + Actualizar las integraciones en el proyecto Aspire. (Versión preliminar) @@ -113,8 +113,8 @@ - Note: Update plan generated using fallback parsing due to unresolvable AppHost SDK. Dependency analysis may have reduced accuracy. - Nota: El plan de actualización se generó usando un análisis alternativo debido a un SDK de AppHost no resoluble. El análisis de dependencias puede ser menos preciso. + Note: Update plan generated using fallback parsing due to unresolvable apphost SDK. Dependency analysis may have reduced accuracy. + Nota: El plan de actualización se generó usando un análisis alternativo debido a un SDK de AppHost no resoluble. El análisis de dependencias puede ser menos preciso. @@ -138,8 +138,8 @@ - No Aspire AppHost project found. Would you like to update the Aspire CLI instead? - No se encontró ningún proyecto de AppHost. ¿Quiere actualizar la CLI de Aspire en su lugar? + No Aspire apphost project found. Would you like to update the Aspire CLI instead? + No se encontró ningún proyecto de AppHost. ¿Quiere actualizar la CLI de Aspire en su lugar? @@ -173,8 +173,8 @@ - The path to the Aspire AppHost project file. - La ruta de acceso al archivo del proyecto host de la AppHost Aspire. + The path to the Aspire apphost project file + La ruta de acceso al archivo del proyecto host de la AppHost Aspire. @@ -227,6 +227,11 @@ Seleccionar un canal: + + Update the Aspire CLI itself to the latest version + Update the Aspire CLI itself to the latest version + + Unexpected code path. Ruta de acceso al código inesperada. diff --git a/src/Aspire.Cli/Resources/xlf/UpdateCommandStrings.fr.xlf b/src/Aspire.Cli/Resources/xlf/UpdateCommandStrings.fr.xlf index 6db234e838a..3b5cf835780 100644 --- a/src/Aspire.Cli/Resources/xlf/UpdateCommandStrings.fr.xlf +++ b/src/Aspire.Cli/Resources/xlf/UpdateCommandStrings.fr.xlf @@ -8,13 +8,13 @@ - Analyze App Host - Analyser l’hôte d’application + Analyze apphost + Analyser l’hôte d’application - Analyze App Host SDK - Analyser le SDK hôte d’application + Analyze apphost SDK + Analyser le SDK hôte d’application @@ -73,8 +73,8 @@ - Update integrations in the Aspire project. (Preview) - Mettre à jour les intégrations dans le projet Aspire. (Préversion) + Update integrations in the Aspire project (Preview) + Mettre à jour les intégrations dans le projet Aspire. (Préversion) @@ -113,8 +113,8 @@ - Note: Update plan generated using fallback parsing due to unresolvable AppHost SDK. Dependency analysis may have reduced accuracy. - Remarque : plan de mise à jour généré à l’aide de l’analyse de secours en raison d’un Kit de développement logiciel (SDK) AppHost non résolu. L’analyse des dépendances peut avoir une précision réduite. + Note: Update plan generated using fallback parsing due to unresolvable apphost SDK. Dependency analysis may have reduced accuracy. + Remarque : plan de mise à jour généré à l’aide de l’analyse de secours en raison d’un Kit de développement logiciel (SDK) AppHost non résolu. L’analyse des dépendances peut avoir une précision réduite. @@ -138,8 +138,8 @@ - No Aspire AppHost project found. Would you like to update the Aspire CLI instead? - Aucun projet Aspire AppHost trouvé. Voulez-vous plutôt mettre à jour l’interface CLI Aspire ? + No Aspire apphost project found. Would you like to update the Aspire CLI instead? + Aucun projet Aspire AppHost trouvé. Voulez-vous plutôt mettre à jour l’interface CLI Aspire ? @@ -173,8 +173,8 @@ - The path to the Aspire AppHost project file. - Chemin d’accès au fichier projet AppHost Aspire. + The path to the Aspire apphost project file + Chemin d’accès au fichier projet AppHost Aspire. @@ -227,6 +227,11 @@ Sélectionnez un canal : + + Update the Aspire CLI itself to the latest version + Update the Aspire CLI itself to the latest version + + Unexpected code path. Chemin de code inattendu. diff --git a/src/Aspire.Cli/Resources/xlf/UpdateCommandStrings.it.xlf b/src/Aspire.Cli/Resources/xlf/UpdateCommandStrings.it.xlf index 1c8dc06b660..7f1323a2586 100644 --- a/src/Aspire.Cli/Resources/xlf/UpdateCommandStrings.it.xlf +++ b/src/Aspire.Cli/Resources/xlf/UpdateCommandStrings.it.xlf @@ -8,13 +8,13 @@ - Analyze App Host - Analizza host delle app + Analyze apphost + Analizza host delle app - Analyze App Host SDK - Analizza SDK dell'host delle app + Analyze apphost SDK + Analizza SDK dell'host delle app @@ -73,8 +73,8 @@ - Update integrations in the Aspire project. (Preview) - Consente di aggiornare le integrazioni nel progetto di Aspire. (Anteprima) + Update integrations in the Aspire project (Preview) + Consente di aggiornare le integrazioni nel progetto di Aspire. (Anteprima) @@ -113,8 +113,8 @@ - Note: Update plan generated using fallback parsing due to unresolvable AppHost SDK. Dependency analysis may have reduced accuracy. - Nota: il piano di aggiornamento è stato generato usando l'analisi di fallback perché AppHost SDK non è risolvibile. L'analisi delle dipendenze potrebbe risultare meno accurata. + Note: Update plan generated using fallback parsing due to unresolvable apphost SDK. Dependency analysis may have reduced accuracy. + Nota: il piano di aggiornamento è stato generato usando l'analisi di fallback perché AppHost SDK non è risolvibile. L'analisi delle dipendenze potrebbe risultare meno accurata. @@ -138,8 +138,8 @@ - No Aspire AppHost project found. Would you like to update the Aspire CLI instead? - Nessun progetto Aspire AppHost trovato. Aggiornare invece l'interfaccia della riga di comando Aspire? + No Aspire apphost project found. Would you like to update the Aspire CLI instead? + Nessun progetto Aspire AppHost trovato. Aggiornare invece l'interfaccia della riga di comando Aspire? @@ -173,8 +173,8 @@ - The path to the Aspire AppHost project file. - Percorso del file di un progetto AppHost di Aspire. + The path to the Aspire apphost project file + Percorso del file di un progetto AppHost di Aspire. @@ -227,6 +227,11 @@ Selezionare un canale: + + Update the Aspire CLI itself to the latest version + Update the Aspire CLI itself to the latest version + + Unexpected code path. Percorso del codice imprevisto. diff --git a/src/Aspire.Cli/Resources/xlf/UpdateCommandStrings.ja.xlf b/src/Aspire.Cli/Resources/xlf/UpdateCommandStrings.ja.xlf index d3ce03430c7..580abf470c6 100644 --- a/src/Aspire.Cli/Resources/xlf/UpdateCommandStrings.ja.xlf +++ b/src/Aspire.Cli/Resources/xlf/UpdateCommandStrings.ja.xlf @@ -8,13 +8,13 @@ - Analyze App Host - アプリ ホスティング プロセスの分析 + Analyze apphost + アプリ ホスティング プロセスの分析 - Analyze App Host SDK - アプリ ホスティング プロセス SDK の分析 + Analyze apphost SDK + アプリ ホスティング プロセス SDK の分析 @@ -73,8 +73,8 @@ - Update integrations in the Aspire project. (Preview) - Aspire プロジェクトの統合を更新します。(プレビュー) + Update integrations in the Aspire project (Preview) + Aspire プロジェクトの統合を更新します。(プレビュー) @@ -113,8 +113,8 @@ - Note: Update plan generated using fallback parsing due to unresolvable AppHost SDK. Dependency analysis may have reduced accuracy. - 注: 解決できない AppHost SDK が原因でフォールバック解析を使用して生成されたプランを更新します。依存関係分析の精度が低下する可能性があります。 + Note: Update plan generated using fallback parsing due to unresolvable apphost SDK. Dependency analysis may have reduced accuracy. + 注: 解決できない AppHost SDK が原因でフォールバック解析を使用して生成されたプランを更新します。依存関係分析の精度が低下する可能性があります。 @@ -138,8 +138,8 @@ - No Aspire AppHost project found. Would you like to update the Aspire CLI instead? - Aspire AppHost プロジェクトが見つかりませんでした。代わりに Aspire CLI を更新しますか? + No Aspire apphost project found. Would you like to update the Aspire CLI instead? + Aspire AppHost プロジェクトが見つかりませんでした。代わりに Aspire CLI を更新しますか? @@ -173,8 +173,8 @@ - The path to the Aspire AppHost project file. - Aspire アプリ ホスティング プロセス プロジェクト ファイルへのパス。 + The path to the Aspire apphost project file + Aspire アプリ ホスティング プロセス プロジェクト ファイルへのパス。 @@ -227,6 +227,11 @@ チャネルを選択: + + Update the Aspire CLI itself to the latest version + Update the Aspire CLI itself to the latest version + + Unexpected code path. 予期しないコード パスです。 diff --git a/src/Aspire.Cli/Resources/xlf/UpdateCommandStrings.ko.xlf b/src/Aspire.Cli/Resources/xlf/UpdateCommandStrings.ko.xlf index 19eaa99a2d2..1c01bb2e7c4 100644 --- a/src/Aspire.Cli/Resources/xlf/UpdateCommandStrings.ko.xlf +++ b/src/Aspire.Cli/Resources/xlf/UpdateCommandStrings.ko.xlf @@ -8,13 +8,13 @@ - Analyze App Host - 앱 호스트 분석 + Analyze apphost + 앱 호스트 분석 - Analyze App Host SDK - 앱 호스트 SDK 분석 + Analyze apphost SDK + 앱 호스트 SDK 분석 @@ -73,8 +73,8 @@ - Update integrations in the Aspire project. (Preview) - Aspire 프로젝트에서 통합을 업데이트합니다. (미리 보기) + Update integrations in the Aspire project (Preview) + Aspire 프로젝트에서 통합을 업데이트합니다. (미리 보기) @@ -113,8 +113,8 @@ - Note: Update plan generated using fallback parsing due to unresolvable AppHost SDK. Dependency analysis may have reduced accuracy. - 참고: 해결할 수 없는 AppHost SDK 때문에 대체 구문 분석을 사용하여 업데이트 계획이 생성되었습니다. 종속성 분석의 정확도가 낮아질 수 있습니다. + Note: Update plan generated using fallback parsing due to unresolvable apphost SDK. Dependency analysis may have reduced accuracy. + 참고: 해결할 수 없는 AppHost SDK 때문에 대체 구문 분석을 사용하여 업데이트 계획이 생성되었습니다. 종속성 분석의 정확도가 낮아질 수 있습니다. @@ -138,8 +138,8 @@ - No Aspire AppHost project found. Would you like to update the Aspire CLI instead? - Azure AppHost 프로젝트를 찾을 수 없습니다. 대신 Aspire CLI를 업데이트하시겠어요? + No Aspire apphost project found. Would you like to update the Aspire CLI instead? + Azure AppHost 프로젝트를 찾을 수 없습니다. 대신 Aspire CLI를 업데이트하시겠어요? @@ -173,8 +173,8 @@ - The path to the Aspire AppHost project file. - Aspire AppHost 프로젝트 파일의 경로입니다. + The path to the Aspire apphost project file + Aspire AppHost 프로젝트 파일의 경로입니다. @@ -227,6 +227,11 @@ 채널 선택: + + Update the Aspire CLI itself to the latest version + Update the Aspire CLI itself to the latest version + + Unexpected code path. 예기치 않은 코드 경로입니다. diff --git a/src/Aspire.Cli/Resources/xlf/UpdateCommandStrings.pl.xlf b/src/Aspire.Cli/Resources/xlf/UpdateCommandStrings.pl.xlf index c370eaf8f74..952453d19a1 100644 --- a/src/Aspire.Cli/Resources/xlf/UpdateCommandStrings.pl.xlf +++ b/src/Aspire.Cli/Resources/xlf/UpdateCommandStrings.pl.xlf @@ -8,13 +8,13 @@ - Analyze App Host - Analizowanie hosta aplikacji + Analyze apphost + Analizowanie hosta aplikacji - Analyze App Host SDK - Analizowanie zestawu SDK hosta aplikacji + Analyze apphost SDK + Analizowanie zestawu SDK hosta aplikacji @@ -73,8 +73,8 @@ - Update integrations in the Aspire project. (Preview) - Zaktualizuj integracje w projekcie Aspire. (Wersja zapoznawcza) + Update integrations in the Aspire project (Preview) + Zaktualizuj integracje w projekcie Aspire. (Wersja zapoznawcza) @@ -113,8 +113,8 @@ - Note: Update plan generated using fallback parsing due to unresolvable AppHost SDK. Dependency analysis may have reduced accuracy. - Uwaga: plan aktualizacji został wygenerowany przy użyciu analizy zapasowej z powodu nierozpoznanego zestawu AppHost SDK. Analiza zależności może być mniej dokładna. + Note: Update plan generated using fallback parsing due to unresolvable apphost SDK. Dependency analysis may have reduced accuracy. + Uwaga: plan aktualizacji został wygenerowany przy użyciu analizy zapasowej z powodu nierozpoznanego zestawu AppHost SDK. Analiza zależności może być mniej dokładna. @@ -138,8 +138,8 @@ - No Aspire AppHost project found. Would you like to update the Aspire CLI instead? - Nie znaleziono projektu Aspire AppHost. Czy chcesz zamiast tego zaktualizować narzędzie Aspire CLI? + No Aspire apphost project found. Would you like to update the Aspire CLI instead? + Nie znaleziono projektu Aspire AppHost. Czy chcesz zamiast tego zaktualizować narzędzie Aspire CLI? @@ -173,8 +173,8 @@ - The path to the Aspire AppHost project file. - Ścieżka do pliku projektu hosta AppHost platformy Aspire. + The path to the Aspire apphost project file + Ścieżka do pliku projektu hosta AppHost platformy Aspire. @@ -227,6 +227,11 @@ Wybierz kanał: + + Update the Aspire CLI itself to the latest version + Update the Aspire CLI itself to the latest version + + Unexpected code path. Nieoczekiwana ścieżka w kodzie. diff --git a/src/Aspire.Cli/Resources/xlf/UpdateCommandStrings.pt-BR.xlf b/src/Aspire.Cli/Resources/xlf/UpdateCommandStrings.pt-BR.xlf index 9a298067e2f..26684fbcc96 100644 --- a/src/Aspire.Cli/Resources/xlf/UpdateCommandStrings.pt-BR.xlf +++ b/src/Aspire.Cli/Resources/xlf/UpdateCommandStrings.pt-BR.xlf @@ -8,13 +8,13 @@ - Analyze App Host - Analisar o Host de Aplicativo + Analyze apphost + Analisar o Host de Aplicativo - Analyze App Host SDK - Analisar o SDK do Host de Aplicativo + Analyze apphost SDK + Analisar o SDK do Host de Aplicativo @@ -73,8 +73,8 @@ - Update integrations in the Aspire project. (Preview) - Atualizar integrações no projeto Aspire. (Versão Prévia) + Update integrations in the Aspire project (Preview) + Atualizar integrações no projeto Aspire. (Versão Prévia) @@ -113,8 +113,8 @@ - Note: Update plan generated using fallback parsing due to unresolvable AppHost SDK. Dependency analysis may have reduced accuracy. - Observação: o plano de atualização gerado usando a análise de fallback devido ao SDK do AppHost não resolvido. A análise de dependência pode ter uma precisão reduzida. + Note: Update plan generated using fallback parsing due to unresolvable apphost SDK. Dependency analysis may have reduced accuracy. + Observação: o plano de atualização gerado usando a análise de fallback devido ao SDK do AppHost não resolvido. A análise de dependência pode ter uma precisão reduzida. @@ -138,8 +138,8 @@ - No Aspire AppHost project found. Would you like to update the Aspire CLI instead? - Não foram encontrados projetos AppHost do Aspire. Você quer atualizar a CLI do Aspire em vez disso? + No Aspire apphost project found. Would you like to update the Aspire CLI instead? + Não foram encontrados projetos AppHost do Aspire. Você quer atualizar a CLI do Aspire em vez disso? @@ -173,8 +173,8 @@ - The path to the Aspire AppHost project file. - O caminho para o arquivo de projeto do Aspire AppHost. + The path to the Aspire apphost project file + O caminho para o arquivo de projeto do Aspire AppHost. @@ -227,6 +227,11 @@ Selecionar um canal: + + Update the Aspire CLI itself to the latest version + Update the Aspire CLI itself to the latest version + + Unexpected code path. Caminho de código inesperado. diff --git a/src/Aspire.Cli/Resources/xlf/UpdateCommandStrings.ru.xlf b/src/Aspire.Cli/Resources/xlf/UpdateCommandStrings.ru.xlf index 4c9b2bd5e48..6520f013b3b 100644 --- a/src/Aspire.Cli/Resources/xlf/UpdateCommandStrings.ru.xlf +++ b/src/Aspire.Cli/Resources/xlf/UpdateCommandStrings.ru.xlf @@ -8,13 +8,13 @@ - Analyze App Host - Анализ хоста приложений + Analyze apphost + Анализ хоста приложений - Analyze App Host SDK - Анализ SDK хоста приложений + Analyze apphost SDK + Анализ SDK хоста приложений @@ -73,8 +73,8 @@ - Update integrations in the Aspire project. (Preview) - Обновление интеграций в проекте Aspire. (предварительная версия) + Update integrations in the Aspire project (Preview) + Обновление интеграций в проекте Aspire. (предварительная версия) @@ -113,8 +113,8 @@ - Note: Update plan generated using fallback parsing due to unresolvable AppHost SDK. Dependency analysis may have reduced accuracy. - Примечание. План обновления создан с использованием резервного анализа из-за невозможности разрешить SDK AppHost. Точность анализа зависимостей может быть снижена. + Note: Update plan generated using fallback parsing due to unresolvable apphost SDK. Dependency analysis may have reduced accuracy. + Примечание. План обновления создан с использованием резервного анализа из-за невозможности разрешить SDK AppHost. Точность анализа зависимостей может быть снижена. @@ -138,8 +138,8 @@ - No Aspire AppHost project found. Would you like to update the Aspire CLI instead? - Проект Aspire AppHost не найден. Хотите вместо этого обновить Aspire CLI? + No Aspire apphost project found. Would you like to update the Aspire CLI instead? + Проект Aspire AppHost не найден. Хотите вместо этого обновить Aspire CLI? @@ -173,8 +173,8 @@ - The path to the Aspire AppHost project file. - Путь к файлу проекта Aspire AppHost. + The path to the Aspire apphost project file + Путь к файлу проекта Aspire AppHost. @@ -227,6 +227,11 @@ Выберите канал: + + Update the Aspire CLI itself to the latest version + Update the Aspire CLI itself to the latest version + + Unexpected code path. Непредвиденный путь к коду. diff --git a/src/Aspire.Cli/Resources/xlf/UpdateCommandStrings.tr.xlf b/src/Aspire.Cli/Resources/xlf/UpdateCommandStrings.tr.xlf index c05dc1cf87c..300d2ed9a44 100644 --- a/src/Aspire.Cli/Resources/xlf/UpdateCommandStrings.tr.xlf +++ b/src/Aspire.Cli/Resources/xlf/UpdateCommandStrings.tr.xlf @@ -8,13 +8,13 @@ - Analyze App Host - Uygulama Ana İşlemi + Analyze apphost + Uygulama Ana İşlemi - Analyze App Host SDK - Uygulama Ana İşlemi SDK’sini Analiz Etme + Analyze apphost SDK + Uygulama Ana İşlemi SDK’sini Analiz Etme @@ -73,8 +73,8 @@ - Update integrations in the Aspire project. (Preview) - Aspire projesindeki tümleştirme güncelleştirmelerini yapın. (Önizleme) + Update integrations in the Aspire project (Preview) + Aspire projesindeki tümleştirme güncelleştirmelerini yapın. (Önizleme) @@ -113,8 +113,8 @@ - Note: Update plan generated using fallback parsing due to unresolvable AppHost SDK. Dependency analysis may have reduced accuracy. - Not: Çözülemeyen AppHost SDK nedeniyle geri dönüş ayrıştırması kullanılarak oluşturulan güncelleştirme planı. Bağımlılık analizi doğruluğu azaltmış olabilir. + Note: Update plan generated using fallback parsing due to unresolvable apphost SDK. Dependency analysis may have reduced accuracy. + Not: Çözülemeyen AppHost SDK nedeniyle geri dönüş ayrıştırması kullanılarak oluşturulan güncelleştirme planı. Bağımlılık analizi doğruluğu azaltmış olabilir. @@ -138,8 +138,8 @@ - No Aspire AppHost project found. Would you like to update the Aspire CLI instead? - Aspire AppHost projesi bulunamadı. Bunun yerine Aspire CLI'yı güncelleştirmek ister misiniz? + No Aspire apphost project found. Would you like to update the Aspire CLI instead? + Aspire AppHost projesi bulunamadı. Bunun yerine Aspire CLI'yı güncelleştirmek ister misiniz? @@ -173,8 +173,8 @@ - The path to the Aspire AppHost project file. - Aspire AppHost proje dosyasının yolu. + The path to the Aspire apphost project file + Aspire AppHost proje dosyasının yolu. @@ -227,6 +227,11 @@ Kanal seçin: + + Update the Aspire CLI itself to the latest version + Update the Aspire CLI itself to the latest version + + Unexpected code path. Beklenmeyen kod yolu. diff --git a/src/Aspire.Cli/Resources/xlf/UpdateCommandStrings.zh-Hans.xlf b/src/Aspire.Cli/Resources/xlf/UpdateCommandStrings.zh-Hans.xlf index ca57f107045..8b0fb094dec 100644 --- a/src/Aspire.Cli/Resources/xlf/UpdateCommandStrings.zh-Hans.xlf +++ b/src/Aspire.Cli/Resources/xlf/UpdateCommandStrings.zh-Hans.xlf @@ -8,13 +8,13 @@ - Analyze App Host - 分析应用主机 + Analyze apphost + 分析应用主机 - Analyze App Host SDK - 分析应用主机 SDK + Analyze apphost SDK + 分析应用主机 SDK @@ -73,8 +73,8 @@ - Update integrations in the Aspire project. (Preview) - 更新 Aspire 项目中的集成。(预览版) + Update integrations in the Aspire project (Preview) + 更新 Aspire 项目中的集成。(预览版) @@ -113,8 +113,8 @@ - Note: Update plan generated using fallback parsing due to unresolvable AppHost SDK. Dependency analysis may have reduced accuracy. - 注意: 由于 AppHost SDK 无法解析,已采用回退解析生成更新计划。依赖项分析的准确性可能有所降低。 + Note: Update plan generated using fallback parsing due to unresolvable apphost SDK. Dependency analysis may have reduced accuracy. + 注意: 由于 AppHost SDK 无法解析,已采用回退解析生成更新计划。依赖项分析的准确性可能有所降低。 @@ -138,8 +138,8 @@ - No Aspire AppHost project found. Would you like to update the Aspire CLI instead? - 找不到 Aspire AppHost 项目。是否改为更新 Aspire CLI? + No Aspire apphost project found. Would you like to update the Aspire CLI instead? + 找不到 Aspire AppHost 项目。是否改为更新 Aspire CLI? @@ -173,8 +173,8 @@ - The path to the Aspire AppHost project file. - Aspire AppHost 项目文件的路径。 + The path to the Aspire apphost project file + Aspire AppHost 项目文件的路径。 @@ -227,6 +227,11 @@ 选择频道: + + Update the Aspire CLI itself to the latest version + Update the Aspire CLI itself to the latest version + + Unexpected code path. 意外的代码路径。 diff --git a/src/Aspire.Cli/Resources/xlf/UpdateCommandStrings.zh-Hant.xlf b/src/Aspire.Cli/Resources/xlf/UpdateCommandStrings.zh-Hant.xlf index 47aedafc849..94f71b6db85 100644 --- a/src/Aspire.Cli/Resources/xlf/UpdateCommandStrings.zh-Hant.xlf +++ b/src/Aspire.Cli/Resources/xlf/UpdateCommandStrings.zh-Hant.xlf @@ -8,13 +8,13 @@ - Analyze App Host - 分析應用程式主機 + Analyze apphost + 分析應用程式主機 - Analyze App Host SDK - 分析應用程式主機 SDK + Analyze apphost SDK + 分析應用程式主機 SDK @@ -73,8 +73,8 @@ - Update integrations in the Aspire project. (Preview) - 更新 Aspire 專案中的整合。(預覽) + Update integrations in the Aspire project (Preview) + 更新 Aspire 專案中的整合。(預覽) @@ -113,8 +113,8 @@ - Note: Update plan generated using fallback parsing due to unresolvable AppHost SDK. Dependency analysis may have reduced accuracy. - 注意: 由於無法解析的 AppHost SDK,已使用後援剖析產生更新計劃。相依性分析的正確性可能因此降低。 + Note: Update plan generated using fallback parsing due to unresolvable apphost SDK. Dependency analysis may have reduced accuracy. + 注意: 由於無法解析的 AppHost SDK,已使用後援剖析產生更新計劃。相依性分析的正確性可能因此降低。 @@ -138,8 +138,8 @@ - No Aspire AppHost project found. Would you like to update the Aspire CLI instead? - 找不到任何 Aspire AppHost 專案。您是否要改為更新 Aspire CLI? + No Aspire apphost project found. Would you like to update the Aspire CLI instead? + 找不到任何 Aspire AppHost 專案。您是否要改為更新 Aspire CLI? @@ -173,8 +173,8 @@ - The path to the Aspire AppHost project file. - Aspire AppHost 專案檔案的路徑。 + The path to the Aspire apphost project file + Aspire AppHost 專案檔案的路徑。 @@ -227,6 +227,11 @@ 選取通道: + + Update the Aspire CLI itself to the latest version + Update the Aspire CLI itself to the latest version + + Unexpected code path. 未預期的程式碼路徑。 diff --git a/src/Aspire.Cli/Resources/xlf/WaitCommandStrings.cs.xlf b/src/Aspire.Cli/Resources/xlf/WaitCommandStrings.cs.xlf index 39aefcbfa04..920fd2d832e 100644 --- a/src/Aspire.Cli/Resources/xlf/WaitCommandStrings.cs.xlf +++ b/src/Aspire.Cli/Resources/xlf/WaitCommandStrings.cs.xlf @@ -3,8 +3,8 @@ - Wait for a resource to reach a target status. - Wait for a resource to reach a target status. + Wait for a resource to reach a target status + Wait for a resource to reach a target status @@ -13,8 +13,8 @@ - The name of the resource to wait for. - The name of the resource to wait for. + The name of the resource to wait for + The name of the resource to wait for diff --git a/src/Aspire.Cli/Resources/xlf/WaitCommandStrings.de.xlf b/src/Aspire.Cli/Resources/xlf/WaitCommandStrings.de.xlf index 589d9dd244e..87033d0cc49 100644 --- a/src/Aspire.Cli/Resources/xlf/WaitCommandStrings.de.xlf +++ b/src/Aspire.Cli/Resources/xlf/WaitCommandStrings.de.xlf @@ -3,8 +3,8 @@ - Wait for a resource to reach a target status. - Wait for a resource to reach a target status. + Wait for a resource to reach a target status + Wait for a resource to reach a target status @@ -13,8 +13,8 @@ - The name of the resource to wait for. - The name of the resource to wait for. + The name of the resource to wait for + The name of the resource to wait for diff --git a/src/Aspire.Cli/Resources/xlf/WaitCommandStrings.es.xlf b/src/Aspire.Cli/Resources/xlf/WaitCommandStrings.es.xlf index b4d09f677b5..0961e17d0c2 100644 --- a/src/Aspire.Cli/Resources/xlf/WaitCommandStrings.es.xlf +++ b/src/Aspire.Cli/Resources/xlf/WaitCommandStrings.es.xlf @@ -3,8 +3,8 @@ - Wait for a resource to reach a target status. - Wait for a resource to reach a target status. + Wait for a resource to reach a target status + Wait for a resource to reach a target status @@ -13,8 +13,8 @@ - The name of the resource to wait for. - The name of the resource to wait for. + The name of the resource to wait for + The name of the resource to wait for diff --git a/src/Aspire.Cli/Resources/xlf/WaitCommandStrings.fr.xlf b/src/Aspire.Cli/Resources/xlf/WaitCommandStrings.fr.xlf index a6cccb8b994..0a4bf42f3cd 100644 --- a/src/Aspire.Cli/Resources/xlf/WaitCommandStrings.fr.xlf +++ b/src/Aspire.Cli/Resources/xlf/WaitCommandStrings.fr.xlf @@ -3,8 +3,8 @@ - Wait for a resource to reach a target status. - Wait for a resource to reach a target status. + Wait for a resource to reach a target status + Wait for a resource to reach a target status @@ -13,8 +13,8 @@ - The name of the resource to wait for. - The name of the resource to wait for. + The name of the resource to wait for + The name of the resource to wait for diff --git a/src/Aspire.Cli/Resources/xlf/WaitCommandStrings.it.xlf b/src/Aspire.Cli/Resources/xlf/WaitCommandStrings.it.xlf index 1631266f589..0f8b211c18c 100644 --- a/src/Aspire.Cli/Resources/xlf/WaitCommandStrings.it.xlf +++ b/src/Aspire.Cli/Resources/xlf/WaitCommandStrings.it.xlf @@ -3,8 +3,8 @@ - Wait for a resource to reach a target status. - Wait for a resource to reach a target status. + Wait for a resource to reach a target status + Wait for a resource to reach a target status @@ -13,8 +13,8 @@ - The name of the resource to wait for. - The name of the resource to wait for. + The name of the resource to wait for + The name of the resource to wait for diff --git a/src/Aspire.Cli/Resources/xlf/WaitCommandStrings.ja.xlf b/src/Aspire.Cli/Resources/xlf/WaitCommandStrings.ja.xlf index 0da125fd8fb..28f0e0bf39f 100644 --- a/src/Aspire.Cli/Resources/xlf/WaitCommandStrings.ja.xlf +++ b/src/Aspire.Cli/Resources/xlf/WaitCommandStrings.ja.xlf @@ -3,8 +3,8 @@ - Wait for a resource to reach a target status. - Wait for a resource to reach a target status. + Wait for a resource to reach a target status + Wait for a resource to reach a target status @@ -13,8 +13,8 @@ - The name of the resource to wait for. - The name of the resource to wait for. + The name of the resource to wait for + The name of the resource to wait for diff --git a/src/Aspire.Cli/Resources/xlf/WaitCommandStrings.ko.xlf b/src/Aspire.Cli/Resources/xlf/WaitCommandStrings.ko.xlf index c13d609f816..f290a4a224f 100644 --- a/src/Aspire.Cli/Resources/xlf/WaitCommandStrings.ko.xlf +++ b/src/Aspire.Cli/Resources/xlf/WaitCommandStrings.ko.xlf @@ -3,8 +3,8 @@ - Wait for a resource to reach a target status. - Wait for a resource to reach a target status. + Wait for a resource to reach a target status + Wait for a resource to reach a target status @@ -13,8 +13,8 @@ - The name of the resource to wait for. - The name of the resource to wait for. + The name of the resource to wait for + The name of the resource to wait for diff --git a/src/Aspire.Cli/Resources/xlf/WaitCommandStrings.pl.xlf b/src/Aspire.Cli/Resources/xlf/WaitCommandStrings.pl.xlf index 6db72d611a0..e80ea3da122 100644 --- a/src/Aspire.Cli/Resources/xlf/WaitCommandStrings.pl.xlf +++ b/src/Aspire.Cli/Resources/xlf/WaitCommandStrings.pl.xlf @@ -3,8 +3,8 @@ - Wait for a resource to reach a target status. - Wait for a resource to reach a target status. + Wait for a resource to reach a target status + Wait for a resource to reach a target status @@ -13,8 +13,8 @@ - The name of the resource to wait for. - The name of the resource to wait for. + The name of the resource to wait for + The name of the resource to wait for diff --git a/src/Aspire.Cli/Resources/xlf/WaitCommandStrings.pt-BR.xlf b/src/Aspire.Cli/Resources/xlf/WaitCommandStrings.pt-BR.xlf index f8782dfe0af..cfa53297686 100644 --- a/src/Aspire.Cli/Resources/xlf/WaitCommandStrings.pt-BR.xlf +++ b/src/Aspire.Cli/Resources/xlf/WaitCommandStrings.pt-BR.xlf @@ -3,8 +3,8 @@ - Wait for a resource to reach a target status. - Wait for a resource to reach a target status. + Wait for a resource to reach a target status + Wait for a resource to reach a target status @@ -13,8 +13,8 @@ - The name of the resource to wait for. - The name of the resource to wait for. + The name of the resource to wait for + The name of the resource to wait for diff --git a/src/Aspire.Cli/Resources/xlf/WaitCommandStrings.ru.xlf b/src/Aspire.Cli/Resources/xlf/WaitCommandStrings.ru.xlf index 63998c50b33..a9ff7ff7529 100644 --- a/src/Aspire.Cli/Resources/xlf/WaitCommandStrings.ru.xlf +++ b/src/Aspire.Cli/Resources/xlf/WaitCommandStrings.ru.xlf @@ -3,8 +3,8 @@ - Wait for a resource to reach a target status. - Wait for a resource to reach a target status. + Wait for a resource to reach a target status + Wait for a resource to reach a target status @@ -13,8 +13,8 @@ - The name of the resource to wait for. - The name of the resource to wait for. + The name of the resource to wait for + The name of the resource to wait for diff --git a/src/Aspire.Cli/Resources/xlf/WaitCommandStrings.tr.xlf b/src/Aspire.Cli/Resources/xlf/WaitCommandStrings.tr.xlf index 2ba9f993810..8497647c432 100644 --- a/src/Aspire.Cli/Resources/xlf/WaitCommandStrings.tr.xlf +++ b/src/Aspire.Cli/Resources/xlf/WaitCommandStrings.tr.xlf @@ -3,8 +3,8 @@ - Wait for a resource to reach a target status. - Wait for a resource to reach a target status. + Wait for a resource to reach a target status + Wait for a resource to reach a target status @@ -13,8 +13,8 @@ - The name of the resource to wait for. - The name of the resource to wait for. + The name of the resource to wait for + The name of the resource to wait for diff --git a/src/Aspire.Cli/Resources/xlf/WaitCommandStrings.zh-Hans.xlf b/src/Aspire.Cli/Resources/xlf/WaitCommandStrings.zh-Hans.xlf index 6cdc75edec9..7d3881dbb21 100644 --- a/src/Aspire.Cli/Resources/xlf/WaitCommandStrings.zh-Hans.xlf +++ b/src/Aspire.Cli/Resources/xlf/WaitCommandStrings.zh-Hans.xlf @@ -3,8 +3,8 @@ - Wait for a resource to reach a target status. - Wait for a resource to reach a target status. + Wait for a resource to reach a target status + Wait for a resource to reach a target status @@ -13,8 +13,8 @@ - The name of the resource to wait for. - The name of the resource to wait for. + The name of the resource to wait for + The name of the resource to wait for diff --git a/src/Aspire.Cli/Resources/xlf/WaitCommandStrings.zh-Hant.xlf b/src/Aspire.Cli/Resources/xlf/WaitCommandStrings.zh-Hant.xlf index 9bfe2702d91..52b2af94d3d 100644 --- a/src/Aspire.Cli/Resources/xlf/WaitCommandStrings.zh-Hant.xlf +++ b/src/Aspire.Cli/Resources/xlf/WaitCommandStrings.zh-Hant.xlf @@ -3,8 +3,8 @@ - Wait for a resource to reach a target status. - Wait for a resource to reach a target status. + Wait for a resource to reach a target status + Wait for a resource to reach a target status @@ -13,8 +13,8 @@ - The name of the resource to wait for. - The name of the resource to wait for. + The name of the resource to wait for + The name of the resource to wait for diff --git a/tests/Aspire.Cli.EndToEnd.Tests/Aspire.Cli.EndToEnd.Tests.csproj b/tests/Aspire.Cli.EndToEnd.Tests/Aspire.Cli.EndToEnd.Tests.csproj index 6befab87739..c7ee32971e9 100644 --- a/tests/Aspire.Cli.EndToEnd.Tests/Aspire.Cli.EndToEnd.Tests.csproj +++ b/tests/Aspire.Cli.EndToEnd.Tests/Aspire.Cli.EndToEnd.Tests.csproj @@ -62,4 +62,18 @@ + + + + + + + + + + + + + + diff --git a/tests/Aspire.Cli.EndToEnd.Tests/DescribeCommandTests.cs b/tests/Aspire.Cli.EndToEnd.Tests/DescribeCommandTests.cs index 4def8ac6116..5548f661567 100644 --- a/tests/Aspire.Cli.EndToEnd.Tests/DescribeCommandTests.cs +++ b/tests/Aspire.Cli.EndToEnd.Tests/DescribeCommandTests.cs @@ -2,6 +2,7 @@ // The .NET Foundation licenses this file to you under the MIT license. using Aspire.Cli.EndToEnd.Tests.Helpers; +using Aspire.Cli.Resources; using Aspire.Cli.Tests.Utils; using Hex1b.Automation; using Xunit; @@ -44,7 +45,7 @@ public async Task DescribeCommandShowsRunningResources() // Start the AppHost in the background using aspire start await auto.TypeAsync("aspire start"); await auto.EnterAsync(); - await auto.WaitUntilTextAsync("AppHost started successfully.", timeout: TimeSpan.FromMinutes(3)); + await auto.WaitUntilTextAsync(RunCommandStrings.AppHostStartedSuccessfully, timeout: TimeSpan.FromMinutes(3)); await auto.WaitForSuccessPromptAsync(counter); // Wait a bit for resources to stabilize @@ -74,7 +75,7 @@ public async Task DescribeCommandShowsRunningResources() // Stop the AppHost using aspire stop await auto.TypeAsync("aspire stop"); await auto.EnterAsync(); - await auto.WaitUntilTextAsync("AppHost stopped successfully.", timeout: TimeSpan.FromMinutes(1)); + await auto.WaitUntilTextAsync(StopCommandStrings.AppHostStoppedSuccessfully, timeout: TimeSpan.FromMinutes(1)); await auto.WaitForSuccessPromptAsync(counter); // Exit the shell @@ -142,7 +143,7 @@ public async Task DescribeCommandResolvesReplicaNames() // Start the AppHost in the background using aspire start await auto.TypeAsync("aspire start"); await auto.EnterAsync(); - await auto.WaitUntilTextAsync("AppHost started successfully.", timeout: TimeSpan.FromMinutes(3)); + await auto.WaitUntilTextAsync(RunCommandStrings.AppHostStartedSuccessfully, timeout: TimeSpan.FromMinutes(3)); await auto.WaitForSuccessPromptAsync(counter); // Wait for resources to stabilize @@ -193,7 +194,7 @@ public async Task DescribeCommandResolvesReplicaNames() // Stop the AppHost using aspire stop await auto.TypeAsync("aspire stop"); await auto.EnterAsync(); - await auto.WaitUntilTextAsync("AppHost stopped successfully.", timeout: TimeSpan.FromMinutes(1)); + await auto.WaitUntilTextAsync(StopCommandStrings.AppHostStoppedSuccessfully, timeout: TimeSpan.FromMinutes(1)); await auto.WaitForSuccessPromptAsync(counter); // Exit the shell diff --git a/tests/Aspire.Cli.EndToEnd.Tests/LogsCommandTests.cs b/tests/Aspire.Cli.EndToEnd.Tests/LogsCommandTests.cs index c09c5c091c0..929fd851248 100644 --- a/tests/Aspire.Cli.EndToEnd.Tests/LogsCommandTests.cs +++ b/tests/Aspire.Cli.EndToEnd.Tests/LogsCommandTests.cs @@ -2,6 +2,7 @@ // The .NET Foundation licenses this file to you under the MIT license. using Aspire.Cli.EndToEnd.Tests.Helpers; +using Aspire.Cli.Resources; using Aspire.Cli.Tests.Utils; using Hex1b.Automation; using Xunit; @@ -44,7 +45,7 @@ public async Task LogsCommandShowsResourceLogs() // Start the AppHost in the background using aspire start await auto.TypeAsync("aspire start"); await auto.EnterAsync(); - await auto.WaitUntilTextAsync("AppHost started successfully.", timeout: TimeSpan.FromMinutes(3)); + await auto.WaitUntilTextAsync(RunCommandStrings.AppHostStartedSuccessfully, timeout: TimeSpan.FromMinutes(3)); await auto.WaitForSuccessPromptAsync(counter); // Wait for resources to fully start and produce logs @@ -82,7 +83,7 @@ public async Task LogsCommandShowsResourceLogs() // Stop the AppHost using aspire stop await auto.TypeAsync("aspire stop"); await auto.EnterAsync(); - await auto.WaitUntilTextAsync("AppHost stopped successfully.", timeout: TimeSpan.FromMinutes(1)); + await auto.WaitUntilTextAsync(StopCommandStrings.AppHostStoppedSuccessfully, timeout: TimeSpan.FromMinutes(1)); await auto.WaitForSuccessPromptAsync(counter); // Exit the shell diff --git a/tests/Aspire.Cli.EndToEnd.Tests/ProjectReferenceTests.cs b/tests/Aspire.Cli.EndToEnd.Tests/ProjectReferenceTests.cs index 1e85cb4a5dc..0f1438b6146 100644 --- a/tests/Aspire.Cli.EndToEnd.Tests/ProjectReferenceTests.cs +++ b/tests/Aspire.Cli.EndToEnd.Tests/ProjectReferenceTests.cs @@ -4,6 +4,7 @@ using System.Text.Json; using System.Text.Json.Nodes; using Aspire.Cli.EndToEnd.Tests.Helpers; +using Aspire.Cli.Resources; using Aspire.Cli.Tests.Utils; using Hex1b.Automation; using Xunit; @@ -146,12 +147,12 @@ public static IResourceBuilder AddMyService( await auto.EnterAsync(); await auto.WaitUntilAsync(s => { - if (s.ContainsText("AppHost failed to build")) + if (s.ContainsText(RunCommandStrings.AppHostFailedToBuild)) { // Dump child logs before failing return true; } - return s.ContainsText("AppHost started successfully."); + return s.ContainsText(RunCommandStrings.AppHostStartedSuccessfully); }, timeout: TimeSpan.FromMinutes(2), description: "waiting for apphost start success or failure"); await auto.WaitForSuccessPromptAsync(counter); diff --git a/tests/Aspire.Cli.EndToEnd.Tests/PsCommandTests.cs b/tests/Aspire.Cli.EndToEnd.Tests/PsCommandTests.cs index bf5842ff459..1860ecf2c9b 100644 --- a/tests/Aspire.Cli.EndToEnd.Tests/PsCommandTests.cs +++ b/tests/Aspire.Cli.EndToEnd.Tests/PsCommandTests.cs @@ -2,6 +2,7 @@ // The .NET Foundation licenses this file to you under the MIT license. using Aspire.Cli.EndToEnd.Tests.Helpers; +using Aspire.Cli.Resources; using Aspire.Cli.Tests.Utils; using Hex1b.Automation; using Xunit; @@ -44,13 +45,13 @@ public async Task PsCommandListsRunningAppHost() // First, verify aspire ps shows no running AppHosts await auto.TypeAsync("aspire ps"); await auto.EnterAsync(); - await auto.WaitUntilTextAsync("No running AppHost found", timeout: TimeSpan.FromSeconds(30)); + await auto.WaitUntilTextAsync(SharedCommandStrings.AppHostNotRunning, timeout: TimeSpan.FromSeconds(30)); await auto.WaitForSuccessPromptAsync(counter); // Start the AppHost in the background using aspire start await auto.TypeAsync("aspire start"); await auto.EnterAsync(); - await auto.WaitUntilTextAsync("AppHost started successfully.", timeout: TimeSpan.FromMinutes(3)); + await auto.WaitUntilTextAsync(RunCommandStrings.AppHostStartedSuccessfully, timeout: TimeSpan.FromMinutes(3)); await auto.WaitForSuccessPromptAsync(counter); // Now verify aspire ps shows the running AppHost @@ -68,13 +69,13 @@ public async Task PsCommandListsRunningAppHost() // Stop the AppHost using aspire stop await auto.TypeAsync("aspire stop"); await auto.EnterAsync(); - await auto.WaitUntilTextAsync("AppHost stopped successfully.", timeout: TimeSpan.FromMinutes(1)); + await auto.WaitUntilTextAsync(StopCommandStrings.AppHostStoppedSuccessfully, timeout: TimeSpan.FromMinutes(1)); await auto.WaitForSuccessPromptAsync(counter); // Verify aspire ps shows no running AppHosts again after stop await auto.TypeAsync("aspire ps"); await auto.EnterAsync(); - await auto.WaitUntilTextAsync("No running AppHost found", timeout: TimeSpan.FromSeconds(30)); + await auto.WaitUntilTextAsync(SharedCommandStrings.AppHostNotRunning, timeout: TimeSpan.FromSeconds(30)); await auto.WaitForSuccessPromptAsync(counter); // Exit the shell diff --git a/tests/Aspire.Cli.EndToEnd.Tests/StartStopTests.cs b/tests/Aspire.Cli.EndToEnd.Tests/StartStopTests.cs index a0d03c7b7dd..5c896edf4d8 100644 --- a/tests/Aspire.Cli.EndToEnd.Tests/StartStopTests.cs +++ b/tests/Aspire.Cli.EndToEnd.Tests/StartStopTests.cs @@ -2,6 +2,7 @@ // The .NET Foundation licenses this file to you under the MIT license. using Aspire.Cli.EndToEnd.Tests.Helpers; +using Aspire.Cli.Resources; using Aspire.Cli.Tests.Utils; using Hex1b.Automation; using Xunit; @@ -46,13 +47,13 @@ public async Task CreateStartAndStopAspireProject() // Start the AppHost in the background using aspire start await auto.TypeAsync("aspire start"); await auto.EnterAsync(); - await auto.WaitUntilTextAsync("AppHost started successfully.", timeout: TimeSpan.FromMinutes(3)); + await auto.WaitUntilTextAsync(RunCommandStrings.AppHostStartedSuccessfully, timeout: TimeSpan.FromMinutes(3)); await auto.WaitForSuccessPromptAsync(counter); // Stop the AppHost using aspire stop await auto.TypeAsync("aspire stop"); await auto.EnterAsync(); - await auto.WaitUntilTextAsync("AppHost stopped successfully.", timeout: TimeSpan.FromMinutes(1)); + await auto.WaitUntilTextAsync(StopCommandStrings.AppHostStoppedSuccessfully, timeout: TimeSpan.FromMinutes(1)); await auto.WaitForSuccessPromptAsync(counter); // Exit the shell @@ -86,7 +87,7 @@ public async Task StopWithNoRunningAppHostExitsSuccessfully() // Run aspire stop with no running AppHost - should exit with code 0 await auto.TypeAsync("aspire stop"); await auto.EnterAsync(); - await auto.WaitUntilTextAsync("No running AppHost found", timeout: TimeSpan.FromSeconds(30)); + await auto.WaitUntilTextAsync(SharedCommandStrings.AppHostNotRunning, timeout: TimeSpan.FromSeconds(30)); await auto.WaitForSuccessPromptAsync(counter); // Exit the shell @@ -128,7 +129,7 @@ public async Task AddPackageWhileAppHostRunningDetached() // Start the AppHost in detached mode (locks the project file) await auto.TypeAsync("aspire start"); await auto.EnterAsync(); - await auto.WaitUntilTextAsync("AppHost started successfully.", timeout: TimeSpan.FromMinutes(3)); + await auto.WaitUntilTextAsync(RunCommandStrings.AppHostStartedSuccessfully, timeout: TimeSpan.FromMinutes(3)); await auto.WaitForSuccessPromptAsync(counter); // Add a package while the AppHost is running - this should auto-stop the @@ -145,7 +146,7 @@ public async Task AddPackageWhileAppHostRunningDetached() await auto.TypeAsync("aspire stop"); await auto.EnterAsync(); await auto.WaitUntilAsync(s => - s.ContainsText("No running AppHost found") || s.ContainsText("AppHost stopped successfully."), + s.ContainsText(SharedCommandStrings.AppHostNotRunning) || s.ContainsText(StopCommandStrings.AppHostStoppedSuccessfully), timeout: TimeSpan.FromMinutes(1), description: "AppHost stopped or no running AppHost"); await auto.WaitForAnyPromptAsync(counter); @@ -188,7 +189,7 @@ public async Task AddPackageInteractiveWhileAppHostRunningDetached() // Start the AppHost in detached mode (locks the project file) await auto.TypeAsync("aspire start"); await auto.EnterAsync(); - await auto.WaitUntilTextAsync("AppHost started successfully.", timeout: TimeSpan.FromMinutes(3)); + await auto.WaitUntilTextAsync(RunCommandStrings.AppHostStartedSuccessfully, timeout: TimeSpan.FromMinutes(3)); await auto.WaitForSuccessPromptAsync(counter); // Run aspire add interactively (no integration argument) while AppHost is running. @@ -196,7 +197,7 @@ public async Task AddPackageInteractiveWhileAppHostRunningDetached() // running instance is auto-stopped before modifying the project. await auto.TypeAsync("aspire add"); await auto.EnterAsync(); - await auto.WaitUntilTextAsync("Select an integration to add:", timeout: TimeSpan.FromMinutes(1)); + await auto.WaitUntilTextAsync(AddCommandStrings.SelectAnIntegrationToAdd, timeout: TimeSpan.FromMinutes(1)); await auto.TypeAsync("mongodb"); // type to filter the list await auto.EnterAsync(); // select the filtered result await auto.WaitUntilTextAsync("Select a version of", timeout: TimeSpan.FromSeconds(30)); @@ -210,7 +211,7 @@ public async Task AddPackageInteractiveWhileAppHostRunningDetached() await auto.TypeAsync("aspire stop"); await auto.EnterAsync(); await auto.WaitUntilAsync(s => - s.ContainsText("No running AppHost found") || s.ContainsText("AppHost stopped successfully."), + s.ContainsText(SharedCommandStrings.AppHostNotRunning) || s.ContainsText(StopCommandStrings.AppHostStoppedSuccessfully), timeout: TimeSpan.FromMinutes(1), description: "AppHost stopped or no running AppHost"); await auto.WaitForAnyPromptAsync(counter); diff --git a/tests/Aspire.Cli.EndToEnd.Tests/StopNonInteractiveTests.cs b/tests/Aspire.Cli.EndToEnd.Tests/StopNonInteractiveTests.cs index 912f3185b4e..e3fda37ec3c 100644 --- a/tests/Aspire.Cli.EndToEnd.Tests/StopNonInteractiveTests.cs +++ b/tests/Aspire.Cli.EndToEnd.Tests/StopNonInteractiveTests.cs @@ -2,6 +2,7 @@ // The .NET Foundation licenses this file to you under the MIT license. using Aspire.Cli.EndToEnd.Tests.Helpers; +using Aspire.Cli.Resources; using Aspire.Cli.Tests.Utils; using Hex1b.Automation; using Xunit; @@ -43,7 +44,7 @@ public async Task StopNonInteractiveSingleAppHost() // Start the AppHost in the background using aspire start await auto.TypeAsync("aspire start"); await auto.EnterAsync(); - await auto.WaitUntilTextAsync("AppHost started successfully.", timeout: TimeSpan.FromMinutes(3)); + await auto.WaitUntilTextAsync(RunCommandStrings.AppHostStartedSuccessfully, timeout: TimeSpan.FromMinutes(3)); await auto.WaitForSuccessPromptAsync(counter); // Clear screen to avoid matching old patterns @@ -52,7 +53,7 @@ public async Task StopNonInteractiveSingleAppHost() // Stop the AppHost using aspire stop --non-interactive --project (targets specific AppHost) await auto.TypeAsync("aspire stop --non-interactive --project TestStopApp.AppHost.csproj"); await auto.EnterAsync(); - await auto.WaitUntilTextAsync("AppHost stopped successfully.", timeout: TimeSpan.FromMinutes(1)); + await auto.WaitUntilTextAsync(StopCommandStrings.AppHostStoppedSuccessfully, timeout: TimeSpan.FromMinutes(1)); await auto.WaitForSuccessPromptAsync(counter); // Clear screen @@ -61,7 +62,7 @@ public async Task StopNonInteractiveSingleAppHost() // Verify that stop --non-interactive handles no running AppHosts gracefully await auto.TypeAsync("aspire stop --non-interactive"); await auto.EnterAsync(); - await auto.WaitUntilTextAsync("No running AppHost found", timeout: TimeSpan.FromSeconds(30)); + await auto.WaitUntilTextAsync(SharedCommandStrings.AppHostNotRunning, timeout: TimeSpan.FromSeconds(30)); await auto.WaitForAnyPromptAsync(counter, TimeSpan.FromSeconds(30)); // Exit the shell @@ -101,7 +102,7 @@ public async Task StopAllAppHostsFromAppHostDirectory() // Start first AppHost in background await auto.TypeAsync("cd App1/App1.AppHost && aspire start"); await auto.EnterAsync(); - await auto.WaitUntilTextAsync("AppHost started successfully.", timeout: TimeSpan.FromMinutes(3)); + await auto.WaitUntilTextAsync(RunCommandStrings.AppHostStartedSuccessfully, timeout: TimeSpan.FromMinutes(3)); await auto.WaitForSuccessPromptAsync(counter); // Clear screen before starting second apphost @@ -110,7 +111,7 @@ public async Task StopAllAppHostsFromAppHostDirectory() // Navigate back and start second AppHost in background await auto.TypeAsync("cd ../../App2/App2.AppHost && aspire start"); await auto.EnterAsync(); - await auto.WaitUntilTextAsync("AppHost started successfully.", timeout: TimeSpan.FromMinutes(3)); + await auto.WaitUntilTextAsync(RunCommandStrings.AppHostStartedSuccessfully, timeout: TimeSpan.FromMinutes(3)); await auto.WaitForSuccessPromptAsync(counter); // Clear screen @@ -119,7 +120,7 @@ public async Task StopAllAppHostsFromAppHostDirectory() // Stop all AppHosts from within an AppHost directory using --non-interactive --all await auto.TypeAsync("aspire stop --non-interactive --all"); await auto.EnterAsync(); - await auto.WaitUntilTextAsync("AppHost stopped successfully.", timeout: TimeSpan.FromMinutes(1)); + await auto.WaitUntilTextAsync(StopCommandStrings.AppHostStoppedSuccessfully, timeout: TimeSpan.FromMinutes(1)); await auto.WaitForSuccessPromptAsync(counter); // Clear screen @@ -128,7 +129,7 @@ public async Task StopAllAppHostsFromAppHostDirectory() // Verify no AppHosts are running await auto.TypeAsync("aspire stop --non-interactive"); await auto.EnterAsync(); - await auto.WaitUntilTextAsync("No running AppHost found", timeout: TimeSpan.FromSeconds(30)); + await auto.WaitUntilTextAsync(SharedCommandStrings.AppHostNotRunning, timeout: TimeSpan.FromSeconds(30)); await auto.WaitForAnyPromptAsync(counter, TimeSpan.FromSeconds(30)); // Exit the shell @@ -168,7 +169,7 @@ public async Task StopAllAppHostsFromUnrelatedDirectory() // Start first AppHost in background await auto.TypeAsync("cd App1/App1.AppHost && aspire start"); await auto.EnterAsync(); - await auto.WaitUntilTextAsync("AppHost started successfully.", timeout: TimeSpan.FromMinutes(3)); + await auto.WaitUntilTextAsync(RunCommandStrings.AppHostStartedSuccessfully, timeout: TimeSpan.FromMinutes(3)); await auto.WaitForSuccessPromptAsync(counter); // Clear screen before starting second apphost @@ -177,7 +178,7 @@ public async Task StopAllAppHostsFromUnrelatedDirectory() // Navigate back and start second AppHost in background await auto.TypeAsync("cd ../../App2/App2.AppHost && aspire start"); await auto.EnterAsync(); - await auto.WaitUntilTextAsync("AppHost started successfully.", timeout: TimeSpan.FromMinutes(3)); + await auto.WaitUntilTextAsync(RunCommandStrings.AppHostStartedSuccessfully, timeout: TimeSpan.FromMinutes(3)); await auto.WaitForSuccessPromptAsync(counter); // Navigate to workspace root (unrelated to any AppHost directory) @@ -191,7 +192,7 @@ public async Task StopAllAppHostsFromUnrelatedDirectory() // Stop all AppHosts from an unrelated directory using --non-interactive --all await auto.TypeAsync("aspire stop --non-interactive --all"); await auto.EnterAsync(); - await auto.WaitUntilTextAsync("AppHost stopped successfully.", timeout: TimeSpan.FromMinutes(1)); + await auto.WaitUntilTextAsync(StopCommandStrings.AppHostStoppedSuccessfully, timeout: TimeSpan.FromMinutes(1)); await auto.WaitForSuccessPromptAsync(counter); // Clear screen @@ -200,7 +201,7 @@ public async Task StopAllAppHostsFromUnrelatedDirectory() // Verify no AppHosts are running await auto.TypeAsync("aspire stop --non-interactive"); await auto.EnterAsync(); - await auto.WaitUntilTextAsync("No running AppHost found", timeout: TimeSpan.FromSeconds(30)); + await auto.WaitUntilTextAsync(SharedCommandStrings.AppHostNotRunning, timeout: TimeSpan.FromSeconds(30)); await auto.WaitForAnyPromptAsync(counter, TimeSpan.FromSeconds(30)); // Exit the shell @@ -240,7 +241,7 @@ public async Task StopNonInteractiveMultipleAppHostsShowsError() // Start first AppHost in background await auto.TypeAsync("cd App1/App1.AppHost && aspire start"); await auto.EnterAsync(); - await auto.WaitUntilTextAsync("AppHost started successfully.", timeout: TimeSpan.FromMinutes(3)); + await auto.WaitUntilTextAsync(RunCommandStrings.AppHostStartedSuccessfully, timeout: TimeSpan.FromMinutes(3)); await auto.WaitForSuccessPromptAsync(counter); // Clear screen before starting second apphost @@ -249,7 +250,7 @@ public async Task StopNonInteractiveMultipleAppHostsShowsError() // Navigate back and start second AppHost in background await auto.TypeAsync("cd ../../App2/App2.AppHost && aspire start"); await auto.EnterAsync(); - await auto.WaitUntilTextAsync("AppHost started successfully.", timeout: TimeSpan.FromMinutes(3)); + await auto.WaitUntilTextAsync(RunCommandStrings.AppHostStartedSuccessfully, timeout: TimeSpan.FromMinutes(3)); await auto.WaitForSuccessPromptAsync(counter); // Navigate to workspace root @@ -263,7 +264,7 @@ public async Task StopNonInteractiveMultipleAppHostsShowsError() // Try to stop in non-interactive mode - should get an error about multiple AppHosts await auto.TypeAsync("aspire stop --non-interactive"); await auto.EnterAsync(); - await auto.WaitUntilTextAsync("Multiple AppHosts are running", timeout: TimeSpan.FromSeconds(30)); + await auto.WaitUntilTextAsync("Multiple apphosts are running", timeout: TimeSpan.FromSeconds(30)); await auto.WaitForAnyPromptAsync(counter, TimeSpan.FromSeconds(30)); // Clear screen @@ -272,7 +273,7 @@ public async Task StopNonInteractiveMultipleAppHostsShowsError() // Now use --all to stop all AppHosts await auto.TypeAsync("aspire stop --all"); await auto.EnterAsync(); - await auto.WaitUntilTextAsync("AppHost stopped successfully.", timeout: TimeSpan.FromMinutes(1)); + await auto.WaitUntilTextAsync(StopCommandStrings.AppHostStoppedSuccessfully, timeout: TimeSpan.FromMinutes(1)); await auto.WaitForSuccessPromptAsync(counter); // Exit the shell diff --git a/tests/Aspire.Cli.EndToEnd.Tests/WaitCommandTests.cs b/tests/Aspire.Cli.EndToEnd.Tests/WaitCommandTests.cs index 4d5e30f57dc..51cc7046e66 100644 --- a/tests/Aspire.Cli.EndToEnd.Tests/WaitCommandTests.cs +++ b/tests/Aspire.Cli.EndToEnd.Tests/WaitCommandTests.cs @@ -2,6 +2,7 @@ // The .NET Foundation licenses this file to you under the MIT license. using Aspire.Cli.EndToEnd.Tests.Helpers; +using Aspire.Cli.Resources; using Aspire.Cli.Tests.Utils; using Aspire.TestUtilities; using Hex1b.Automation; @@ -48,7 +49,7 @@ public async Task CreateStartWaitAndStopAspireProject() // Start the AppHost in the background using aspire start await auto.TypeAsync("aspire start"); await auto.EnterAsync(); - await auto.WaitUntilTextAsync("AppHost started successfully.", timeout: TimeSpan.FromMinutes(3)); + await auto.WaitUntilTextAsync(RunCommandStrings.AppHostStartedSuccessfully, timeout: TimeSpan.FromMinutes(3)); await auto.WaitForSuccessPromptAsync(counter); // Wait for the webfrontend resource to be up (running). @@ -61,7 +62,7 @@ public async Task CreateStartWaitAndStopAspireProject() // Stop the AppHost using aspire stop await auto.TypeAsync("aspire stop"); await auto.EnterAsync(); - await auto.WaitUntilTextAsync("AppHost stopped successfully.", timeout: TimeSpan.FromMinutes(1)); + await auto.WaitUntilTextAsync(StopCommandStrings.AppHostStoppedSuccessfully, timeout: TimeSpan.FromMinutes(1)); await auto.WaitForSuccessPromptAsync(counter); // Exit the shell