From 9c2a304995a308db8821cfc84bfe1957e66c9ca2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Piotr=20Ta=C5=84ski?= Date: Mon, 11 Oct 2021 19:39:28 +0200 Subject: [PATCH] [EGD-7769] Fixed private number translation It wasn't properly translated in call log details window. --- .../application-calllog/windows/CallLogDetailsWindow.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/module-apps/application-calllog/windows/CallLogDetailsWindow.cpp b/module-apps/application-calllog/windows/CallLogDetailsWindow.cpp index 00666fcba1b3ce16155b7c9a575a88930cab423d..65d2789af9a7635d9edc4b784d1e786e017a6d81 100644 --- a/module-apps/application-calllog/windows/CallLogDetailsWindow.cpp +++ b/module-apps/application-calllog/windows/CallLogDetailsWindow.cpp @@ -146,7 +146,8 @@ namespace gui ActiveIconFactory factory(this->application); const auto &numberView = record.phoneNumber; if (record.presentation == PresentationType::PR_UNKNOWN) { - numberHBox->addText(callLogStyle::strings::privateNumber, style::window::font::mediumbold); + numberHBox->addText(utils::translate(callLogStyle::strings::privateNumber), + style::window::font::mediumbold); } else { numberHBox->addText(numberView.getFormatted(), style::window::font::mediumbold);