[NETCFGX] Rename 'Network connection' to 'Network Connection'. (#345)

English capitalization fix. It should look a little better both in the system tray and in the Network Connections folder.
This commit is contained in:
Jared Smudde 2018-01-30 11:07:09 -06:00 committed by Hermès BÉLUSCA - MAÏTO
parent 7d487fe173
commit 817beaf9c5
10 changed files with 10 additions and 10 deletions

View file

@ -197,7 +197,7 @@ END
STRINGTABLE
BEGIN
IDS_NET_CONNECT "Network connection"
IDS_NET_CONNECT "Network Connection"
IDS_NO_IPADDR_SET "The adapter requires at least one IP address. Please enter one."
IDS_NO_SUBMASK_SET "You have entered an address that is missing its subnet mask. Please add a subnet mask."
IDS_TCPFILTERDESC "TCP/IP filtering allows you to control the type of TCP/IP network traffic that reaches your computer."

View file

@ -197,7 +197,7 @@ END
STRINGTABLE
BEGIN
IDS_NET_CONNECT "Network connection"
IDS_NET_CONNECT "Network Connection"
IDS_NO_IPADDR_SET "The adapter requires at least one IP address. Please enter one."
IDS_NO_SUBMASK_SET "You have entered an address that is missing its subnet mask. Please add a subnet mask."
IDS_TCPFILTERDESC "TCP/IP filtering allows you to control the type of TCP/IP network traffic that reaches your computer."

View file

@ -197,7 +197,7 @@ END
STRINGTABLE
BEGIN
IDS_NET_CONNECT "Network connection"
IDS_NET_CONNECT "Network Connection"
IDS_NO_IPADDR_SET "The adapter requires at least one IP address. Please enter one."
IDS_NO_SUBMASK_SET "You have entered an address that is missing its subnet mask. Please add a subnet mask."
IDS_TCPFILTERDESC "TCP/IP filtering allows you to control the type of TCP/IP network traffic that reaches your computer."

View file

@ -197,7 +197,7 @@ END
STRINGTABLE
BEGIN
IDS_NET_CONNECT "Network connection"
IDS_NET_CONNECT "Network Connection"
IDS_NO_IPADDR_SET "The adapter requires at least one IP address. Please enter one."
IDS_NO_SUBMASK_SET "You have entered an address that is missing its subnet mask. Please add a subnet mask."
IDS_TCPFILTERDESC "TCP/IP filtering allows you to control the type of TCP/IP network traffic that reaches your computer."

View file

@ -197,7 +197,7 @@ END
STRINGTABLE
BEGIN
IDS_NET_CONNECT "Network connection"
IDS_NET_CONNECT "Network Connection"
IDS_NO_IPADDR_SET "The adapter requires at least one IP address. Please enter one."
IDS_NO_SUBMASK_SET "You have entered an address that is missing its subnet mask. Please add a subnet mask."
IDS_TCPFILTERDESC "TCP/IP filtering allows you to control the type of TCP/IP network traffic that reaches your computer."

View file

@ -197,7 +197,7 @@ END
STRINGTABLE
BEGIN
IDS_NET_CONNECT "Network connection"
IDS_NET_CONNECT "Network Connection"
IDS_NO_IPADDR_SET "The adapter requires at least one IP address. Please enter one."
IDS_NO_SUBMASK_SET "You have entered an address that is missing its subnet mask. Please add a subnet mask."
IDS_TCPFILTERDESC "TCP/IP filtering allows you to control the type of TCP/IP network traffic that reaches your computer."

View file

@ -197,7 +197,7 @@ END
STRINGTABLE
BEGIN
IDS_NET_CONNECT "Network connection"
IDS_NET_CONNECT "Network Connection"
IDS_NO_IPADDR_SET "The adapter requires at least one IP address. Please enter one."
IDS_NO_SUBMASK_SET "You have entered an address that is missing its subnet mask. Please add a subnet mask."
IDS_TCPFILTERDESC "TCP/IP filtering allows you to control the type of TCP/IP network traffic that reaches your computer."

View file

@ -197,7 +197,7 @@ END
STRINGTABLE
BEGIN
IDS_NET_CONNECT "Network connection"
IDS_NET_CONNECT "Network Connection"
IDS_NO_IPADDR_SET "The adapter requires at least one IP address. Please enter one."
IDS_NO_SUBMASK_SET "You have entered an address that is missing its subnet mask. Please add a subnet mask."
IDS_TCPFILTERDESC "TCP/IP filtering allows you to control the type of TCP/IP network traffic that reaches your computer."

View file

@ -197,7 +197,7 @@ END
STRINGTABLE
BEGIN
IDS_NET_CONNECT "Network connection"
IDS_NET_CONNECT "Network Connection"
IDS_NO_IPADDR_SET "The adapter requires at least one IP address. Please enter one."
IDS_NO_SUBMASK_SET "You have entered an address that is missing its subnet mask. Please add a subnet mask."
IDS_TCPFILTERDESC "TCP/IP filtering allows you to control the type of TCP/IP network traffic that reaches your computer."

View file

@ -439,7 +439,7 @@ InstallNetDevice(
if (!LoadStringW(netcfgx_hInstance, IDS_NET_CONNECT, szBuffer, sizeof(szBuffer)/sizeof(WCHAR)))
{
wcscpy(szBuffer,L"Network connection");
wcscpy(szBuffer, L"Network Connection");
}
rc = RegSetValueExW(hConnectionKey, L"Name", 0, REG_SZ, (const BYTE*)szBuffer, (wcslen(szBuffer) + 1) * sizeof(WCHAR));