diff options
author | Dart Raiden <wowemuh@gmail.com> | 2013-12-14 22:56:09 +0000 |
---|---|---|
committer | Dart Raiden <wowemuh@gmail.com> | 2013-12-14 22:56:09 +0000 |
commit | feddc50ff92a9f950d78e5be762056eb44dae568 (patch) | |
tree | 65a15ab24ef3fb4ec19b1785f7a88401ab8d1238 /plugins/FlashAvatars/src | |
parent | 9bd92eb419d91e9a6b3a3f235dc5fd132115a154 (diff) |
FlashAvatars: decapitalization
langpacks/russian: update
git-svn-id: http://svn.miranda-ng.org/main/trunk@7219 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/FlashAvatars/src')
-rw-r--r-- | plugins/FlashAvatars/src/Version.h | 2 | ||||
-rw-r--r-- | plugins/FlashAvatars/src/cflash.cpp | 6 |
2 files changed, 4 insertions, 4 deletions
diff --git a/plugins/FlashAvatars/src/Version.h b/plugins/FlashAvatars/src/Version.h index b6b5a20623..e235c8cfa9 100644 --- a/plugins/FlashAvatars/src/Version.h +++ b/plugins/FlashAvatars/src/Version.h @@ -7,7 +7,7 @@ #define __PLUGIN_NAME "Flash avatars"
#define __FILENAME "FlashAvatars.dll"
-#define __DESCRIPTION "Loads and displays flash avatars."
+#define __DESCRIPTION "Loads and displays Flash avatars."
#define __AUTHOR "Big Muscle"
#define __AUTHOREMAIL ""
#define __AUTHORWEB "http://miranda-ng.org/p/FlashAvatars/"
diff --git a/plugins/FlashAvatars/src/cflash.cpp b/plugins/FlashAvatars/src/cflash.cpp index e6be9eea82..3b5e935bdc 100644 --- a/plugins/FlashAvatars/src/cflash.cpp +++ b/plugins/FlashAvatars/src/cflash.cpp @@ -223,7 +223,7 @@ static void prepareFlash(char* pProto, const TCHAR* pUrl, FLASHAVATAR& fa, IShoc debug("Preparing flash...\n");
if(flash == NULL) {
// Flash component is not registered in the system
- ShowBalloon(LPGENT("Flash.ocx not registered!"), LPGENT("You don't have installed ShockwaveFlash interface in your system."), NIIF_ERROR);
+ ShowBalloon(LPGENT("Flash.ocx not registered!"), LPGENT("You don't have installed Shockwave Flash interface in your system."), NIIF_ERROR);
DestroyWindow(fa.hWindow);
fa.hWindow = 0;
@@ -585,13 +585,13 @@ static int systemModulesLoaded(WPARAM /*wParam*/, LPARAM /*lParam*/) nl_user.cbSize = sizeof(nl_user);
nl_user.szSettingsModule = "FlashAvatars";
nl_user.flags = NUF_OUTGOING | NUF_HTTPCONNS;
- nl_user.szDescriptiveName = Translate("Flash Avatars");
+ nl_user.szDescriptiveName = Translate("Flash avatars");
hNetlibUser = (HANDLE)CallService(MS_NETLIB_REGISTERUSER, 0, (LPARAM)&nl_user);
TCHAR path[MAX_PATH];
mir_sntprintf(path, MAX_PATH, _T("%s\\%s\\"), VARST(_T("%miranda_avatarcache%")), _T("Flash"));
- hAvatarsFolder = FoldersRegisterCustomPathT(LPGEN("Avatars"), LPGEN("Flash Avatars"), path);
+ hAvatarsFolder = FoldersRegisterCustomPathT(LPGEN("Avatars"), LPGEN("Flash avatars"), path);
return 0;
}
|