-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwwi_fix4.patch
41 lines (35 loc) · 1.57 KB
/
wwi_fix4.patch
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
Index: hooked_events.cpp
===================================================================
--- hooked_events.cpp (revision 374)
+++ hooked_events.cpp (working copy)
@@ -125,31 +125,31 @@
hmCheckBirthdays = (HANDLE) CallService(MS_CLIST_ADDMAINMENUITEM, 0, (LPARAM) &cl);
cl.pszService = MS_WWI_LIST_SHOW;
- cl.pszName = Translate("Birthday list");
+ cl.pszName = "Birthday list";
cl.hIcon = hiListMenu;
hmBirthdayList = (HANDLE) CallService(MS_CLIST_ADDMAINMENUITEM, 0, (LPARAM) &cl);
cl.pszService = MS_WWI_REFRESH_USERDETAILS;
cl.position = 10100000;
- cl.pszName = Translate("Refresh user details");
+ cl.pszName = "Refresh user details";
cl.hIcon = hiRefreshUserDetails;
hmRefreshDetails = (HANDLE) CallService(MS_CLIST_ADDMAINMENUITEM, 0, (LPARAM) &cl);
cl.pszService = MS_WWI_IMPORT_BIRTHDAYS;
cl.position = 10200000;
- cl.pszName = Translate("Import birthdays");
+ cl.pszName = "Import birthdays";
cl.hIcon = hiImportBirthdays;
hmImportBirthdays = (HANDLE) CallService(MS_CLIST_ADDMAINMENUITEM, 0, (LPARAM) &cl);
cl.pszService = MS_WWI_EXPORT_BIRTHDAYS;
- cl.pszName = Translate("Export birthdays");
+ cl.pszName = "Export birthdays";
cl.hIcon = hiExportBirthdays;
hmExportBirthdays = (HANDLE) CallService(MS_CLIST_ADDMAINMENUITEM, 0, (LPARAM) &cl);
cl.pszService = MS_WWI_ADD_BIRTHDAY;
cl.position = 10000000;
cl.hIcon = hiAddBirthdayContact;
- cl.pszName = Translate("Add/change user &birthday");
+ cl.pszName = "Add/change user &birthday";
hmAddChangeBirthday = (HANDLE) CallService(MS_CLIST_ADDCONTACTMENUITEM, 0, (LPARAM) &cl);
return 0;