summaryrefslogtreecommitdiff
path: root/src/ui/imgui_extensions.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/ui/imgui_extensions.cpp')
-rw-r--r--src/ui/imgui_extensions.cpp6
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();
}