diff options
author | Alexander Lantsev <aunsane@gmail.com> | 2016-02-27 09:55:31 +0000 |
---|---|---|
committer | Alexander Lantsev <aunsane@gmail.com> | 2016-02-27 09:55:31 +0000 |
commit | da2d804e5c2e6e764fda7d1e39e869572be7e349 (patch) | |
tree | 1db2bc492ad25f16edc0b20de0346fcddffec561 /plugins/Dropbox | |
parent | 081fa7c9e0def543589c30ac26e1c2e983a24d93 (diff) |
Dropbox: fixed translate issues
git-svn-id: http://svn.miranda-ng.org/main/trunk@16353 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/Dropbox')
-rw-r--r-- | plugins/Dropbox/src/dropbox_options.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
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);
|