fix: use placeholder

This commit is contained in:
Anna 2022-02-07 02:24:57 -05:00
parent 956b1daaad
commit 2159f7a36d
2 changed files with 2 additions and 2 deletions

View File

@ -399,6 +399,6 @@
<value>Command help side</value>
</data>
<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>
</root>

View File

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