diff options
author | Vadim Dashevskiy <watcherhd@gmail.com> | 2013-02-12 17:50:10 +0000 |
---|---|---|
committer | Vadim Dashevskiy <watcherhd@gmail.com> | 2013-02-12 17:50:10 +0000 |
commit | 64d6ba3286ecbf7f833e7aea52cd55487c95f9ef (patch) | |
tree | 584e247d0b02e8a84c47b53b0367730800eceaf3 /plugins/Msg_Export | |
parent | 372af0e0c5b138f2f65ef752656ea6087afc73d8 (diff) |
- translation fixes (patch from person)
git-svn-id: http://svn.miranda-ng.org/main/trunk@3576 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/Msg_Export')
-rwxr-xr-x | plugins/Msg_Export/src/options.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/Msg_Export/src/options.cpp b/plugins/Msg_Export/src/options.cpp index 655b49d0a2..55dcb0498a 100755 --- a/plugins/Msg_Export/src/options.cpp +++ b/plugins/Msg_Export/src/options.cpp @@ -283,7 +283,7 @@ int nExportCompleatList(HWND hParent , bool bOnlySelected ) { // window text update
- SetWindowText( hStatus , LPGENT("Sorting and writing database information ( Phase 2 of 2 )") );
+ SetWindowText( hStatus , TranslateT("Sorting and writing database information ( Phase 2 of 2 )") );
SendMessage( hProg , PBM_SETRANGE , 0 , MAKELPARAM( 0 , AllEvents.size() ) );
SendMessage( hProg , PBM_SETPOS , 0 , 0);
}
@@ -391,7 +391,7 @@ BOOL bApplyChanges( HWND hwndDlg ) int nTmp = GetDlgItemInt(hwndDlg, IDC_MAX_CLOUMN_WIDTH, &bTrans, TRUE );
if ( !bTrans || nTmp < 5 )
{
- _sntprintf(szTemp, sizeof(szTemp), _T("Max line width must be at least %d"), 5);
+ _sntprintf(szTemp, sizeof(szTemp), TranslateT("Max line width must be at least %d"), 5);
MessageBox(hwndDlg, szTemp, MSG_BOX_TITEL, MB_OK);
bRet = false;
}
|