diff options
Diffstat (limited to 'plugins')
-rw-r--r-- | plugins/Popup/src/font.cpp | 2 | ||||
-rw-r--r-- | plugins/Weather/src/weather.cpp | 4 | ||||
-rw-r--r-- | plugins/YAMN/src/main.h | 4 |
3 files changed, 5 insertions, 5 deletions
diff --git a/plugins/Popup/src/font.cpp b/plugins/Popup/src/font.cpp index 92c260f856..6570315168 100644 --- a/plugins/Popup/src/font.cpp +++ b/plugins/Popup/src/font.cpp @@ -111,7 +111,7 @@ void ReloadFonts() fonts.clBack = Colour_GetW(_A2W(PU_FNT_AND_COLOR), PU_COL_BACK_NAME);
fonts.clAvatarBorder = Colour_GetW(_A2W(PU_FNT_AND_COLOR), PU_COL_AVAT_NAME);
- // update class popupps(only temp at this point, must rework)
+ // update class popups (only temp at this point, must rework)
char setting[256];
for (auto &it : gTreeData) {
if (it->typ == 2) {
diff --git a/plugins/Weather/src/weather.cpp b/plugins/Weather/src/weather.cpp index 30907b648f..2471557fcb 100644 --- a/plugins/Weather/src/weather.cpp +++ b/plugins/Weather/src/weather.cpp @@ -196,8 +196,8 @@ int CMPlugin::Load() InitServices();
// add sound event
- g_plugin.addSound("weatherupdated", _A2W(WEATHERPROTONAME), LPGENW("Weather Condition Changed"));
- g_plugin.addSound("weatheralert", _A2W(WEATHERPROTONAME), LPGENW("Weather Alert Issued"));
+ g_plugin.addSound("weatherupdated", _A2W(WEATHERPROTONAME), LPGENW("Condition Changed"));
+ g_plugin.addSound("weatheralert", _A2W(WEATHERPROTONAME), LPGENW("Alert Issued"));
// window needed for popup commands
wchar_t SvcFunc[100];
diff --git a/plugins/YAMN/src/main.h b/plugins/YAMN/src/main.h index fd09d77b13..4f0e13aea3 100644 --- a/plugins/YAMN/src/main.h +++ b/plugins/YAMN/src/main.h @@ -1,8 +1,8 @@ #ifndef __MAIN_H
#define __MAIN_H
-#define YAMN_NEWMAILSNDDESC LPGENW("YAMN: new mail message")
-#define YAMN_CONNECTFAILSNDDESC LPGENW("YAMN: connect failed")
+#define YAMN_NEWMAILSNDDESC LPGENW("New mail message")
+#define YAMN_CONNECTFAILSNDDESC LPGENW("Connect failed")
#define YAMN_CONNECTFAILSOUND "YAMN/Sound/ConnectFail"
#define YAMN_NEWMAILSOUND "YAMN/Sound/NewMail"
|