diff options
author | Dart Raiden <wowemuh@gmail.com> | 2015-04-06 13:45:03 +0000 |
---|---|---|
committer | Dart Raiden <wowemuh@gmail.com> | 2015-04-06 13:45:03 +0000 |
commit | 4110a3ae07db6fecafbee1ceb69a51c427a0d7c9 (patch) | |
tree | dff3859f67be8ae4f7a91442eb39801d3a7fcc86 /plugins/Scriver/src/msgoptions.cpp | |
parent | 76771752262e40fa41c189bbac761de9fb5eb1e0 (diff) |
Scriver: decapitalization
git-svn-id: http://svn.miranda-ng.org/main/trunk@12630 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/Scriver/src/msgoptions.cpp')
-rw-r--r-- | plugins/Scriver/src/msgoptions.cpp | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/plugins/Scriver/src/msgoptions.cpp b/plugins/Scriver/src/msgoptions.cpp index 89b837e0bc..b3f39905d5 100644 --- a/plugins/Scriver/src/msgoptions.cpp +++ b/plugins/Scriver/src/msgoptions.cpp @@ -41,9 +41,9 @@ static const TabDef tabPages[] = { { DlgProcOptions, IDD_OPT_MSGDLG, LPGEN("General") },
{ DlgProcTabsOptions, IDD_OPT_MSGTABS, LPGEN("Tabs") },
{ DlgProcLayoutOptions, IDD_OPT_LAYOUT, LPGEN("Layout") },
- { DlgProcLogOptions, IDD_OPT_MSGLOG, LPGEN("Event Log") },
- { DlgProcOptions1, IDD_OPTIONS1, LPGEN("Group Chat") },
- { DlgProcOptions2, IDD_OPTIONS2, LPGEN("Group Chat Log") }
+ { DlgProcLogOptions, IDD_OPT_MSGLOG, LPGEN("Event log") },
+ { DlgProcOptions1, IDD_OPTIONS1, LPGEN("Group chat") },
+ { DlgProcOptions2, IDD_OPTIONS2, LPGEN("Group chat log") }
};
#define FONTF_BOLD 1
@@ -955,7 +955,7 @@ int OptInitialise(WPARAM wParam, LPARAM) OPTIONSDIALOGPAGE odp = { sizeof(odp) };
odp.position = 910000000;
odp.hInstance = g_hInst;
- odp.pszTitle = LPGEN("Message Sessions");
+ odp.pszTitle = LPGEN("Message sessions");
odp.flags = ODPF_BOLDGROUPS;
for (int i = 0; i < SIZEOF(tabPages); i++) {
odp.pszTemplate = MAKEINTRESOURCEA(tabPages[i].dlgId);
@@ -965,8 +965,8 @@ int OptInitialise(WPARAM wParam, LPARAM) }
odp.pszTemplate = MAKEINTRESOURCEA(IDD_OPT_MSGTYPE);
- odp.pszGroup = LPGEN("Message Sessions");
- odp.pszTitle = LPGEN("Typing Notify");
+ odp.pszGroup = LPGEN("Message sessions");
+ odp.pszTitle = LPGEN("Typing notify");
odp.pfnDlgProc = DlgProcTypeOptions;
odp.pszTab = NULL;
Options_AddPage(wParam, &odp);
|