Add info messages if service not installed or running

This commit is contained in:
2018-09-11 20:52:27 -04:00
parent e956bf6553
commit 61d74ff9db
3 changed files with 43 additions and 4 deletions

View File

@@ -242,6 +242,24 @@ namespace SystemTemperatureStatusWindow.Properties {
}
}
/// <summary>
/// Looks up a localized string similar to Service not installed - please restart application.
/// </summary>
public static string ServiceNotInstalled {
get {
return ResourceManager.GetString("ServiceNotInstalled", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Waiting for service to start....
/// </summary>
public static string ServiceNotStarted {
get {
return ResourceManager.GetString("ServiceNotStarted", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to _Start when Windows starts.
/// </summary>

View File

@@ -190,4 +190,10 @@
<data name="OptionsWindow_Title" xml:space="preserve">
<value>Options</value>
</data>
<data name="ServiceNotInstalled" xml:space="preserve">
<value>Service not installed - please restart application</value>
</data>
<data name="ServiceNotStarted" xml:space="preserve">
<value>Waiting for service to start...</value>
</data>
</root>