From 0c585fc454be53dbb02a34227bea7c990a7b14d3 Mon Sep 17 00:00:00 2001 From: Dart Raiden Date: Tue, 1 Jul 2014 19:31:24 +0000 Subject: these strings do not need to be translated git-svn-id: http://svn.miranda-ng.org/main/trunk@9639 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c --- plugins/HistoryStats/src/dlgoption_subcolumns.cpp | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'plugins/HistoryStats') diff --git a/plugins/HistoryStats/src/dlgoption_subcolumns.cpp b/plugins/HistoryStats/src/dlgoption_subcolumns.cpp index a6a361515d..24cff27083 100644 --- a/plugins/HistoryStats/src/dlgoption_subcolumns.cpp +++ b/plugins/HistoryStats/src/dlgoption_subcolumns.cpp @@ -420,14 +420,14 @@ void DlgOption::SubColumns::onColSelChanged(HANDLE hItem, INT_PTR dwData) if (restrictions & Column::crHTMLMask) { // MEMO: don't distinguish between full/partial since not yet supported - msg += TranslateT("HTML"); + msg += _T("HTML"); } if (restrictions & Column::crPNGMask) { if (restrictions & Column::crHTMLMask) msg += _T(", "); - msg += ((restrictions & Column::crPNGMask) == Column::crPNGPartial) ? TranslateT("PNG (partial)") : TranslateT("PNG"); + msg += ((restrictions & Column::crPNGMask) == Column::crPNGPartial) ? TranslateT("PNG (partial)") : _T("PNG"); } tvi.item.pszText = const_cast(msg.c_str()); @@ -455,18 +455,18 @@ void DlgOption::SubColumns::onColSelChanged(HANDLE hItem, INT_PTR dwData) */ if (!bPNGOutput) { - msg += ((restrictions & Column::crHTMLMask) == Column::crHTMLFull) ? TranslateT("HTML") : TranslateT("Nothing (column will be skipped)"); + msg += ((restrictions & Column::crHTMLMask) == Column::crHTMLFull) ? _T("HTML") : TranslateT("Nothing (column will be skipped)"); } else if (nPNGMode != Settings::pmPreferHTML) // && bPNGOutput { if (restrictions == (Column::crHTMLFull | Column::crPNGPartial)) msg += (nPNGMode == Settings::pmHTMLFallBack) ? TranslateT("HTML as fallback") : TranslateT("PNG, ignoring some settings"); else // !(html-full | png-partial) - msg += ((restrictions & Column::crPNGMask) == Column::crPNGFull) ? TranslateT("PNG") : TranslateT("HTML"); + msg += ((restrictions & Column::crPNGMask) == Column::crPNGFull) ? _T("PNG") : _T("HTML"); } else // bPNGOutput && nPNGMode == Settings::pmPreferHTML { - msg += ((restrictions & Column::crHTMLMask) == Column::crHTMLFull) ? TranslateT("HTML") : TranslateT("PNG"); + msg += ((restrictions & Column::crHTMLMask) == Column::crHTMLFull) ? _T("HTML") : _T("PNG"); } tvi.item.pszText = const_cast(msg.c_str()); -- cgit v1.2.3