diff options
author | Kirill Volinsky <mataes2007@gmail.com> | 2014-05-12 13:59:02 +0000 |
---|---|---|
committer | Kirill Volinsky <mataes2007@gmail.com> | 2014-05-12 13:59:02 +0000 |
commit | 27483d11892de5f40588f2e20c72004f42ec8fe1 (patch) | |
tree | 7a4ecfebf88c83873c4d755555d16d2a804c3897 | |
parent | c8f08df8a5f6e7e83c79ca6165eef7b1462b0b21 (diff) |
remove \ befor '
git-svn-id: http://svn.miranda-ng.org/main/trunk@9165 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
-rw-r--r-- | plugins/Folders/src/dlg_handlers.cpp | 24 |
1 files changed, 12 insertions, 12 deletions
diff --git a/plugins/Folders/src/dlg_handlers.cpp b/plugins/Folders/src/dlg_handlers.cpp index 19c1e40226..160bb89e73 100644 --- a/plugins/Folders/src/dlg_handlers.cpp +++ b/plugins/Folders/src/dlg_handlers.cpp @@ -124,14 +124,14 @@ static INT_PTR CALLBACK DlgProcVariables(HWND hWnd, UINT msg, WPARAM wParam, LPA switch (msg) {
case WM_INITDIALOG:
- mir_sntprintf(tszMessage, SIZEOF(tszMessage), _T("%s\r\n%s\r\n\r\n%s\t\t%s\r\n%%miranda_path%%\t\t%s\r\n%%profile_path%%\t\t%s\r\n\t\t\t%s\r\n%%current_profile%%\t\t%s\r\n\t\t\t%s\r\n\r\n\r\n%s\r\n%s\r\n%s\r\n%s\r\n%s\r\n%s\r\n\r\n%s\r\n%s\r\n%s\r\n%%miranda_path%%\t\t\t%s\r\n%%profile_path%%\t\t\t%s\r\n%%current_profile%%\t\t\t%s\r\n%%temp%%\t\t\t\t%s\r\n%%profile_path%%\\%%current_profile%%\t%s\r\n%%miranda_path%%\\plugins\\config\t%s\r\n\' %%miranda_path%%\\\\\\\\ \'\t\t%s\r\n\r\n%s"),
- TranslateT("Don\'t forget to click on Apply to save the changes. If you don\'t then the changes won\'t"),
+ mir_sntprintf(tszMessage, SIZEOF(tszMessage), _T("%s\r\n%s\r\n\r\n%s\t\t%s\r\n%%miranda_path%%\t\t%s\r\n%%profile_path%%\t\t%s\r\n\t\t\t%s\r\n%%current_profile%%\t\t%s\r\n\t\t\t%s\r\n\r\n\r\n%s\r\n%s\r\n%s\r\n%s\r\n%s\r\n%s\r\n\r\n%s\r\n%s\r\n%s\r\n%%miranda_path%%\t\t\t%s\r\n%%profile_path%%\t\t\t%s\r\n%%current_profile%%\t\t\t%s\r\n%%temp%%\t\t\t\t%s\r\n%%profile_path%%\\%%current_profile%%\t%s\r\n%%miranda_path%%\\plugins\\config\t%s\r\n' %%miranda_path%%\\\\\\\\ '\t\t%s\r\n\r\n%s"),
+ TranslateT("Don't forget to click on Apply to save the changes. If you don't then the changes won't"),
TranslateT("be saved to the database, they will only be valid for this session."),
TranslateT("Variable string"),
TranslateT("What it expands to:"),
TranslateT("Expands to your Miranda path (e.g., c:\\program files\\miranda ng)."),
TranslateT("Expands to your profile path - the value found in mirandaboot.ini,"),
- TranslateT("ProfileDir section (usually inside Miranda\'s folder)."),
+ TranslateT("ProfileDir section (usually inside Miranda's folder)."),
TranslateT("Expands to your current profile name without the extenstion."),
TranslateT("(e.g., default if your your profile is default.dat)."),
TranslateT("Environment variables"),
@@ -139,17 +139,17 @@ static INT_PTR CALLBACK DlgProcVariables(HWND hWnd, UINT msg, WPARAM wParam, LPA TranslateT("program that can use environment variables, i.e., %<env variable>%."),
TranslateT("Note: Environment variables are expanded before any Miranda variables. So if you have, for"),
TranslateT("example, %profile_path% defined as a system variable then it will be expanded to that value"),
- TranslateT("instead of expanding to Miranda\'s profile path."),
+ TranslateT("instead of expanding to Miranda's profile path."),
TranslateT("Examples:"),
- TranslateT("If the value for the ProfileDir inside mirandaboot.ini, ProfileDir section is \'.\\profiles\\', current"),
- TranslateT("profile is \'default.dat\' and Miranda path is \'c:\\program files\\miranda ng\\' then:"),
- TranslateT("will expand to \'c:\\program files\\miranda ng\'"),
- TranslateT("will expand to \'c:\\program files\\miranda ng\\profiles\'"),
- TranslateT("will expand to \'default\'"),
+ TranslateT("If the value for the ProfileDir inside mirandaboot.ini, ProfileDir section is '.\\profiles\\', current"),
+ TranslateT("profile is 'default.dat' and Miranda path is 'c:\\program files\\miranda ng\\' then:"),
+ TranslateT("will expand to 'c:\\program files\\miranda ng'"),
+ TranslateT("will expand to 'c:\\program files\\miranda ng\\profiles'"),
+ TranslateT("will expand to 'default'"),
TranslateT("will expand to the temp folder of the current user."),
- TranslateT("will expand to \'c:\\program files\\miranda ng\\profiles\\default\'"),
- TranslateT("will expand to \'c:\\program files\\miranda ng\\plugins\\config\'"),
- TranslateT("will expand to \'c:\\program files\\miranda ng\'"),
+ TranslateT("will expand to 'c:\\program files\\miranda ng\\profiles\\default'"),
+ TranslateT("will expand to 'c:\\program files\\miranda ng\\plugins\\config'"),
+ TranslateT("will expand to 'c:\\program files\\miranda ng'"),
TranslateT("Notice that the spaces at the beginning and the end of the string are trimmed, as well as the last."));
SetDlgItemText(hWnd, IDC_HELP_RICHEDIT, tszMessage);
TranslateDialogDefault(hWnd);
|