Skip to content

Commit

Permalink
missing translation strings in web server config
Browse files Browse the repository at this point in the history
  • Loading branch information
xorus committed Jun 16, 2024
1 parent 4e7a939 commit 1cf2e08
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
5 changes: 3 additions & 2 deletions Plugin/EngageTimer.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -33,5 +33,6 @@ image_urls:
category_tags:
- jobs
changelog: |-
- Hide floating window border by default (you can re-enable it in floating window -> styling)
- Fix not being able to disable alarms
- Fix not being able to disable alarms
- Missing translation strings in web server config
- Hide floating window border by default (you can re-enable it in Floating Window -> styling)
4 changes: 2 additions & 2 deletions Plugin/Ui/SettingsTab/WebServerTab.cs
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,8 @@ public static class WebServerTab
public static void Draw()
{
ImGui.PushTextWrapPos();
Components.Text("Settings_Web_Help");
Components.Text("Settings_Web_HelpAdd");
Components.Text("Settings_Web_Help".Tr());
Components.Text("Settings_Web_HelpAdd".Tr());
ImGui.Text($"http://localhost:{Plugin.Config.WebServer.Port}/");
ImGui.SameLine();
if (ImGuiComponents.IconButton(FontAwesomeIcon.Copy))
Expand Down

0 comments on commit 1cf2e08

Please sign in to comment.