diff options
author | Gluzskiy Alexandr <sss@sss.chaoslab.ru> | 2011-11-07 02:46:59 +0200 |
---|---|---|
committer | Gluzskiy Alexandr <sss@sss.chaoslab.ru> | 2011-11-07 02:46:59 +0200 |
commit | d783b07eeb0776f3763e3ce8d725748b7290c257 (patch) | |
tree | 33434074e90e433bbdad1364901f1a832f4f807f /main.cpp | |
parent | 24f43db848336aec381d0d61f30e5ec067905e32 (diff) |
removed old warning about gpg version
small ui corrections
possible translation fixes
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(); } { |