Add descriptive name for zone increment/decrement buttons (#7867)

This commit is contained in:
vldmr11080
2020-11-05 15:01:07 +01:00
committed by GitHub
parent 8fa04fe2cf
commit fc1feab7ec
3 changed files with 26 additions and 2 deletions

View File

@@ -248,5 +248,23 @@ namespace FancyZonesEditor.Properties {
return ResourceManager.GetString("Templates", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Decrement number of zones in template layout.
/// </summary>
public static string Zone_Count_Decrement {
get {
return ResourceManager.GetString("Zone_Count_Decrement", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Increment number of zones in template layout.
/// </summary>
public static string Zone_Count_Increment {
get {
return ResourceManager.GetString("Zone_Count_Increment", resourceCulture);
}
}
}
}

View File

@@ -180,4 +180,10 @@
<data name="Templates" xml:space="preserve">
<value>Templates</value>
</data>
<data name="Zone_Count_Decrement" xml:space="preserve">
<value>Decrement number of zones in template layout</value>
</data>
<data name="Zone_Count_Increment" xml:space="preserve">
<value>Increment number of zones in template layout</value>
</data>
</root>