diff options
Diffstat (limited to 'main.cpp')
-rwxr-xr-x[-rw-r--r--] | main.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -1803,14 +1803,14 @@ void InitCheck() mir_free(home_dir); tmp_dir += _T("\\tmp"); _wmkdir(tmp_dir.c_str()); - string question = "Your secret key whith id: "; + string question = Translate("Your secret key whith id: "); char *keyid = UniGetContactSettingUtf(NULL, szGPGModuleName, "KeyID", ""); question += keyid; mir_free(keyid); - question += " deleted from gpg secret keyring\nDo you want to set another key ?"; + question += Translate(" deleted from gpg secret keyring\nDo you want to set another key ?"); void ShowFirstRunDialog(); if(out.find(keyid) == string::npos) - if(MessageBoxA(0, question.c_str(), "Own secret key warning", MB_YESNO) == IDYES) + if(MessageBoxA(0, question.c_str(), Translate("Own secret key warning"), MB_YESNO) == IDYES) ShowFirstRunDialog(); } { |