diff options
| author | Aldrik Ramaekers <aldrik@mailbox.org> | 2026-01-11 18:12:51 +0100 |
|---|---|---|
| committer | Aldrik Ramaekers <aldrik@mailbox.org> | 2026-01-11 18:12:51 +0100 |
| commit | c011cfe0cb4b2b29c2e1d48b5bfd6db1d7fdc6d8 (patch) | |
| tree | 9c3b1fed55c2da1015f37df2af29e9f7b864252f /src/ui/imgui_extensions.cpp | |
| parent | 1ab0d5fb96624e0fb92b961fc02b3e6344126033 (diff) | |
localizations
Diffstat (limited to 'src/ui/imgui_extensions.cpp')
| -rw-r--r-- | src/ui/imgui_extensions.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/ui/imgui_extensions.cpp b/src/ui/imgui_extensions.cpp index e3e917c..496bbe2 100644 --- a/src/ui/imgui_extensions.cpp +++ b/src/ui/imgui_extensions.cpp @@ -814,7 +814,7 @@ namespace ImGui { if (ImGui::BeginComboPreview()) { - ImGui::Text("Sending"); // @Localize + ImGui::Text(locale::get("form.sending")); ImGui::SameLine(); ImGui::LoadingIndicatorCircleSmall(); ImGui::EndComboPreview(); @@ -830,11 +830,11 @@ namespace ImGui { if (last_err == E_ERR_SUCCESS) { DrawSuccessMark(0, false); - ImGui::Text("Success"); // @Localize + ImGui::Text(locale::get("form.success")); } else { DrawFailureMark(0, false); - ImGui::Text("Failed"); // @Localize + ImGui::Text(locale::get("form.failure")); } ImGui::EndComboPreview(); } |
