Is the Windows Registry localized?

  • Thread starter Thread starter Mark Findlay
  • Start date Start date
M

Mark Findlay

When programming reads of the Windows Registry, do the registry keys and
values need to be localized for international use?

For example, do I need to convert the key name
L"\\Software\\Microsoft\\Windows" into Japanese, Korean, etc., for use in
those markets?

Thanks experts!
 
Mark,
For example, do I need to convert the key name
L"\\Software\\Microsoft\\Windows" into Japanese, Korean, etc., for use in
those markets?

In general they are not localized, but I'm sure there are exceptions.


Mattias
 
Hi Mark,

I agree with Mattias that most key/values in windows registry are not
localized since registry are mainly used by windows system service and
programs, storing the data as pure ascii chars will much ease the
read/write operation and improve performance.... Also, for most application
specific registry entries, they're also using ascii chars as prefered text
format, only when there need to store some value which also need to be
viewed or modified by end user(with localized format....)

Thanks,

Steven Cheng
Microsoft Online Support

Get Secure! www.microsoft.com/security
(This posting is provided "AS IS", with no warranties, and confers no
rights.)


--------------------
| From: Mattias Sjögren <[email protected]>
| Subject: Re: Is the Windows Registry localized?
| Date: Thu, 29 Dec 2005 19:59:37 +0100
| References: <[email protected]>
| X-Newsreader: Forte Agent 3.0/32.763
| MIME-Version: 1.0
| Content-Type: text/plain; charset=ISO-8859-1
| Content-Transfer-Encoding: 8bit
| Message-ID: <[email protected]>
| Newsgroups: microsoft.public.dotnet.general
| NNTP-Posting-Host: 85.8.3.112
| Lines: 1
| Path: TK2MSFTNGXA02.phx.gbl!TK2MSFTNGP08.phx.gbl!TK2MSFTNGP09.phx.gbl
| Xref: TK2MSFTNGXA02.phx.gbl microsoft.public.dotnet.general:185231
| X-Tomcat-NG: microsoft.public.dotnet.general
|
| Mark,
|
| >For example, do I need to convert the key name
| >L"\\Software\\Microsoft\\Windows" into Japanese, Korean, etc., for use
in
| >those markets?
|
| In general they are not localized, but I'm sure there are exceptions.
|
|
| Mattias
|
| --
| Mattias Sjögren [C# MVP] mattias @ mvps.org
| http://www.msjogren.net/dotnet/ | http://www.dotnetinterop.com
| Please reply only to the newsgroup.
|
 
Hi Mark,

Have you got any further idea on this? If there're anything else we can
help, please feel free to post here.

Regards,

Steven Cheng
Microsoft Online Support

Get Secure! www.microsoft.com/security
(This posting is provided "AS IS", with no warranties, and confers no
rights.)
--------------------
| X-Tomcat-ID: 25646802
| References: <[email protected]>
<[email protected]>
| MIME-Version: 1.0
| Content-Type: text/plain
| Content-Transfer-Encoding: 7bit
| From: (e-mail address removed) (Steven Cheng[MSFT])
| Organization: Microsoft
| Date: Fri, 30 Dec 2005 01:30:57 GMT
| Subject: Re: Is the Windows Registry localized?
| X-Tomcat-NG: microsoft.public.dotnet.general
| Message-ID: <[email protected]>
| Newsgroups: microsoft.public.dotnet.general
| Lines: 47
| Path: TK2MSFTNGXA02.phx.gbl
| Xref: TK2MSFTNGXA02.phx.gbl microsoft.public.dotnet.general:185246
| NNTP-Posting-Host: tomcatimport2.phx.gbl 10.201.218.182
|
| Hi Mark,
|
| I agree with Mattias that most key/values in windows registry are not
| localized since registry are mainly used by windows system service and
| programs, storing the data as pure ascii chars will much ease the
| read/write operation and improve performance.... Also, for most
application
| specific registry entries, they're also using ascii chars as prefered
text
| format, only when there need to store some value which also need to be
| viewed or modified by end user(with localized format....)
|
| Thanks,
|
| Steven Cheng
| Microsoft Online Support
|
| Get Secure! www.microsoft.com/security
| (This posting is provided "AS IS", with no warranties, and confers no
| rights.)
|
|
| --------------------
| | From: Mattias Sjögren <[email protected]>
| | Subject: Re: Is the Windows Registry localized?
| | Date: Thu, 29 Dec 2005 19:59:37 +0100
| | References: <[email protected]>
| | X-Newsreader: Forte Agent 3.0/32.763
| | MIME-Version: 1.0
| | Content-Type: text/plain; charset=ISO-8859-1
| | Content-Transfer-Encoding: 8bit
| | Message-ID: <[email protected]>
| | Newsgroups: microsoft.public.dotnet.general
| | NNTP-Posting-Host: 85.8.3.112
| | Lines: 1
| | Path: TK2MSFTNGXA02.phx.gbl!TK2MSFTNGP08.phx.gbl!TK2MSFTNGP09.phx.gbl
| | Xref: TK2MSFTNGXA02.phx.gbl microsoft.public.dotnet.general:185231
| | X-Tomcat-NG: microsoft.public.dotnet.general
| |
| | Mark,
| |
| | >For example, do I need to convert the key name
| | >L"\\Software\\Microsoft\\Windows" into Japanese, Korean, etc., for use
| in
| | >those markets?
| |
| | In general they are not localized, but I'm sure there are exceptions.
| |
| |
| | Mattias
| |
| | --
| | Mattias Sjögren [C# MVP] mattias @ mvps.org
| | http://www.msjogren.net/dotnet/ | http://www.dotnetinterop.com
| | Please reply only to the newsgroup.
| |
|
|
 
Back
Top