mirror of
https://github.com/microsoft/PowerToys.git
synced 2026-04-08 12:18:50 +02:00
PT Run Service notification improvements (#9772)
This commit is contained in:
committed by
GitHub
parent
a29b3aa500
commit
ff4a78a7f9
@@ -124,7 +124,16 @@ namespace Microsoft.PowerToys.Run.Plugin.Service.Properties {
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Looks up a localized string similar to {0} has been restarted.
|
||||
/// Looks up a localized string similar to An error occurred while restarting the service.
|
||||
/// </summary>
|
||||
internal static string wox_plugin_service_restart_error_notification {
|
||||
get {
|
||||
return ResourceManager.GetString("wox_plugin_service_restart_error_notification", resourceCulture);
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Looks up a localized string similar to The service has been restarted.
|
||||
/// </summary>
|
||||
internal static string wox_plugin_service_restarted_notification {
|
||||
get {
|
||||
@@ -150,6 +159,15 @@ namespace Microsoft.PowerToys.Run.Plugin.Service.Properties {
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Looks up a localized string similar to An error occurred while starting the service.
|
||||
/// </summary>
|
||||
internal static string wox_plugin_service_start_error_notification {
|
||||
get {
|
||||
return ResourceManager.GetString("wox_plugin_service_start_error_notification", resourceCulture);
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Looks up a localized string similar to Automatic.
|
||||
/// </summary>
|
||||
@@ -214,7 +232,7 @@ namespace Microsoft.PowerToys.Run.Plugin.Service.Properties {
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Looks up a localized string similar to {0} has been started.
|
||||
/// Looks up a localized string similar to The service has been started.
|
||||
/// </summary>
|
||||
internal static string wox_plugin_service_started_notification {
|
||||
get {
|
||||
@@ -249,6 +267,15 @@ namespace Microsoft.PowerToys.Run.Plugin.Service.Properties {
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Looks up a localized string similar to An error occurred while stopping the service.
|
||||
/// </summary>
|
||||
internal static string wox_plugin_service_stop_error_notification {
|
||||
get {
|
||||
return ResourceManager.GetString("wox_plugin_service_stop_error_notification", resourceCulture);
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Looks up a localized string similar to Stopping.
|
||||
/// </summary>
|
||||
@@ -268,7 +295,7 @@ namespace Microsoft.PowerToys.Run.Plugin.Service.Properties {
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Looks up a localized string similar to {0} has been stopped.
|
||||
/// Looks up a localized string similar to The service has been stopped.
|
||||
/// </summary>
|
||||
internal static string wox_plugin_service_stopped_notification {
|
||||
get {
|
||||
|
||||
@@ -139,7 +139,10 @@
|
||||
<value>Restart (Ctrl+R)</value>
|
||||
</data>
|
||||
<data name="wox_plugin_service_restarted_notification" xml:space="preserve">
|
||||
<value>{0} has been restarted</value>
|
||||
<value>The service has been restarted</value>
|
||||
</data>
|
||||
<data name="wox_plugin_service_restart_error_notification" xml:space="preserve">
|
||||
<value>An error occurred while restarting the service</value>
|
||||
</data>
|
||||
<data name="wox_plugin_service_running" xml:space="preserve">
|
||||
<value>Running</value>
|
||||
@@ -151,11 +154,14 @@
|
||||
<value>Started</value>
|
||||
</data>
|
||||
<data name="wox_plugin_service_started_notification" xml:space="preserve">
|
||||
<value>{0} has been started</value>
|
||||
<value>The service has been started</value>
|
||||
</data>
|
||||
<data name="wox_plugin_service_startup" xml:space="preserve">
|
||||
<value>Startup</value>
|
||||
</data>
|
||||
<data name="wox_plugin_service_start_error_notification" xml:space="preserve">
|
||||
<value>An error occurred while starting the service</value>
|
||||
</data>
|
||||
<data name="wox_plugin_service_start_mode_automatic" xml:space="preserve">
|
||||
<value>Automatic</value>
|
||||
</data>
|
||||
@@ -184,7 +190,10 @@
|
||||
<value>Stopped</value>
|
||||
</data>
|
||||
<data name="wox_plugin_service_stopped_notification" xml:space="preserve">
|
||||
<value>{0} has been stopped</value>
|
||||
<value>The service has been stopped</value>
|
||||
</data>
|
||||
<data name="wox_plugin_service_stop_error_notification" xml:space="preserve">
|
||||
<value>An error occurred while stopping the service</value>
|
||||
</data>
|
||||
<data name="wox_plugin_service_stop_pending" xml:space="preserve">
|
||||
<value>Stopping</value>
|
||||
|
||||
Reference in New Issue
Block a user