summaryrefslogtreecommitdiff
path: root/protocols
diff options
context:
space:
mode:
authorVadim Dashevskiy <watcherhd@gmail.com>2013-03-12 14:22:06 +0000
committerVadim Dashevskiy <watcherhd@gmail.com>2013-03-12 14:22:06 +0000
commit4da1ba7e23b975db9694b836b89b067ddb90bc02 (patch)
tree7cc1142dad6fce1bb80ce0134944b7fcd4d2fe79 /protocols
parent4828341dad289dc17b93e970f008a727b64e64d9 (diff)
- translation fixes (patch from Basil)
git-svn-id: http://svn.miranda-ng.org/main/trunk@3986 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'protocols')
-rw-r--r--protocols/FacebookRM/src/constants.h12
-rw-r--r--protocols/MRA/src/MraPopUp.cpp14
2 files changed, 13 insertions, 13 deletions
diff --git a/protocols/FacebookRM/src/constants.h b/protocols/FacebookRM/src/constants.h
index bfca485078..ae39632fb3 100644
--- a/protocols/FacebookRM/src/constants.h
+++ b/protocols/FacebookRM/src/constants.h
@@ -127,10 +127,10 @@ static const struct
const char *name;
const char *id;
} feed_types[] = {
- { "Most Recent", "lf_" }, //h_chr?
- { "Wall Posts", "app_2915120374" },
- { "Top News", "h_nor" }, //h
- { "Photos", "app_2305272732_2392950137" },
- { "Links", "app_2309869772" },
- { "Apps and Games", "appsandgames" },
+ { LPGEN("Most Recent"), "lf_" }, //h_chr?
+ { LPGEN("Wall Posts"), "app_2915120374" },
+ { LPGEN("Top News"), "h_nor" }, //h
+ { LPGEN("Photos"), "app_2305272732_2392950137" },
+ { LPGEN("Links"), "app_2309869772" },
+ { LPGEN("Apps and Games"), "appsandgames" },
}; \ No newline at end of file
diff --git a/protocols/MRA/src/MraPopUp.cpp b/protocols/MRA/src/MraPopUp.cpp
index a12d110ebb..d8335d63bd 100644
--- a/protocols/MRA/src/MraPopUp.cpp
+++ b/protocols/MRA/src/MraPopUp.cpp
@@ -4,13 +4,13 @@
#define POPUPS_TYPES_COUNT 7
static LPCWSTR lpcwszPopupsTypes[] =
{
- L"None",
- L"Debug",
- L"Information",
- L"Question",
- L"Warning",
- L"Error",
- L"NewMail",
+ LPGENT("None"),
+ LPGENT("Debug"),
+ LPGENT("Information"),
+ LPGENT("Question"),
+ LPGENT("Warning"),
+ LPGENT("Error"),
+ LPGENT("NewMail"),
NULL
};