fix: use placeholder

This commit is contained in:
Anna 2022-02-07 02:24:57 -05:00
parent 64d1ac9bfc
commit c4b8cfbf6e
Signed by: anna
GPG Key ID: 0B391D8F06FCD9E0
2 changed files with 2 additions and 2 deletions

View File

@ -399,6 +399,6 @@
<value>Command help side</value> <value>Command help side</value>
</data> </data>
<data name="Options_CommandHelpSide_Description" xml:space="preserve"> <data name="Options_CommandHelpSide_Description" xml:space="preserve">
<value>The side of Chat 2 to display help for commands on.</value> <value>The side of {0} to display help for commands on.</value>
</data> </data>
</root> </root>

View File

@ -70,7 +70,7 @@ internal sealed class Display : ISettingsTab {
ImGui.EndCombo(); ImGui.EndCombo();
} }
ImGuiUtil.HelpText(Language.Options_CommandHelpSide_Description); ImGuiUtil.HelpText(string.Format(Language.Options_CommandHelpSide_Description, Plugin.PluginName));
ImGui.Spacing(); ImGui.Spacing();
if (ImGui.DragFloat(Language.Options_WindowOpacity_Name, ref this.Mutable.WindowAlpha, .0025f, 0f, 1f, $"{this.Mutable.WindowAlpha * 100f:N2}%%")) { if (ImGui.DragFloat(Language.Options_WindowOpacity_Name, ref this.Mutable.WindowAlpha, .0025f, 0f, 1f, $"{this.Mutable.WindowAlpha * 100f:N2}%%")) {