diff options
Diffstat (limited to 'plugins/NotesAndReminders/src/main.cpp')
| -rw-r--r-- | plugins/NotesAndReminders/src/main.cpp | 4 | 
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/NotesAndReminders/src/main.cpp b/plugins/NotesAndReminders/src/main.cpp index d3d8549457..60302fafe3 100644 --- a/plugins/NotesAndReminders/src/main.cpp +++ b/plugins/NotesAndReminders/src/main.cpp @@ -48,7 +48,7 @@ INT_PTR PluginMenuCommandAddNew(WPARAM w,LPARAM l)  INT_PTR PluginMenuCommandDeleteAll(WPARAM w,LPARAM l)
  {
 -	if (g_Stickies && MessageBox(NULL, TranslateT("Are you sure you want to delete all notes?"), _T(SECTIONNAME), MB_OKCANCEL) == IDOK)
 +	if (g_Stickies && MessageBox(NULL, TranslateT("Are you sure you want to delete all notes?"), TranslateT(SECTIONNAME), MB_OKCANCEL) == IDOK)
  		DeleteNotes();
  	return 0;
  }
 @@ -85,7 +85,7 @@ INT_PTR PluginMenuCommandViewReminders(WPARAM w,LPARAM l)  INT_PTR PluginMenuCommandDeleteReminders(WPARAM w,LPARAM l)
  {
 -	if (RemindersList && MessageBox(NULL, TranslateT("Are you sure you want to delete all reminders?"), _T(SECTIONNAME), MB_OKCANCEL) == IDOK)
 +	if (RemindersList && MessageBox(NULL, TranslateT("Are you sure you want to delete all reminders?"), TranslateT(SECTIONNAME), MB_OKCANCEL) == IDOK)
  		DeleteReminders();
  	return 0;
  }
  | 
