From da2d804e5c2e6e764fda7d1e39e869572be7e349 Mon Sep 17 00:00:00 2001 From: Alexander Lantsev Date: Sat, 27 Feb 2016 09:55:31 +0000 Subject: Dropbox: fixed translate issues git-svn-id: http://svn.miranda-ng.org/main/trunk@16353 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c --- plugins/Dropbox/src/dropbox_options.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'plugins/Dropbox') diff --git a/plugins/Dropbox/src/dropbox_options.cpp b/plugins/Dropbox/src/dropbox_options.cpp index 047e59b006..6d39f8beee 100644 --- a/plugins/Dropbox/src/dropbox_options.cpp +++ b/plugins/Dropbox/src/dropbox_options.cpp @@ -63,8 +63,8 @@ void CDropboxOptionsInterception::OnInitDialog() m_accounts.SetExtendedListViewStyle(LVS_EX_FULLROWSELECT | LVS_EX_CHECKBOXES | LVS_EX_INFOTIP); - m_accounts.AddColumn(0, _T("Account name"), 50); - m_accounts.AddColumn(1, _T("Protocol"), 50); + m_accounts.AddColumn(0, TranslateT("Account name"), 50); + m_accounts.AddColumn(1, TranslateT("Protocol"), 50); int count; PROTOACCOUNT** accounts; @@ -133,11 +133,11 @@ int CDropbox::OnOptionsInitialized(WPARAM wParam, LPARAM) odp.flags = ODPF_BOLDGROUPS | ODPF_TCHAR | ODPF_DONTTRANSLATE; odp.ptszGroup = LPGENT("Network"); - odp.ptszTab = _T("General"); + odp.ptszTab = LPGENT("General"); odp.pDialog = CDropboxOptionsMain::CreateOptionsPage(this); Options_AddPage(wParam, &odp); - odp.ptszTab = _T("Interception"); + odp.ptszTab = LPGENT("Interception"); odp.pDialog = CDropboxOptionsInterception::CreateOptionsPage(this); Options_AddPage(wParam, &odp); -- cgit v1.2.3