[NETCFGX] Rename 'Network connection' to 'Network Connection'. (#345)
authorJared Smudde <computerwhiz02@hotmail.com>
Tue, 30 Jan 2018 17:07:09 +0000 (11:07 -0600)
committerHermès BÉLUSCA - MAÏTO <hermes.belusca-maito@reactos.org>
Tue, 30 Jan 2018 17:07:09 +0000 (18:07 +0100)
English capitalization fix. It should look a little better both in the system tray and in the Network Connections folder.

dll/win32/netcfgx/lang/da-DK.rc
dll/win32/netcfgx/lang/el-GR.rc
dll/win32/netcfgx/lang/en-US.rc
dll/win32/netcfgx/lang/hu-HU.rc
dll/win32/netcfgx/lang/id-ID.rc
dll/win32/netcfgx/lang/ja-JP.rc
dll/win32/netcfgx/lang/nl-NL.rc
dll/win32/netcfgx/lang/sk-SK.rc
dll/win32/netcfgx/lang/sv-SE.rc
dll/win32/netcfgx/netcfgx.c

index 3f30ee7..702a991 100644 (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."
index 399cd75..dc577ad 100644 (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."
index 604b523..1ae3d47 100644 (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."
index 31d0788..d3d1d50 100644 (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."
index c6abd72..dbe7dae 100644 (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."
index be76ded..7a0f935 100644 (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."
index 295229a..5d50ce1 100644 (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."
index d023d54..a43de31 100644 (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."
index 717f5be..f7cf0fe 100644 (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."
index 949ff4e..13ae094 100644 (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));