Georgian (ka-GE) locale information on "Windows Locales" page

Microsoft Windows
Post Reply
User avatar
MigrationUser
Posts: 336
Joined: 2021-Jul-12, 1:37 pm
Contact:

Georgian (ka-GE) locale information on "Windows Locales" page

Post by MigrationUser »

12 Feb 2018 11:08
george-chakhidze


Hi,

It would be nice if you add Georgian locale information to "Windows Locales" page: ss64.com/locale.html

Name: Georgian
Short string: ka
Decimal value: 55
Hexadecimal value: 0×37

Name: Georgian (Georgia)
Short string: ka-GE
Decimal value: 1079
Hexadecimal value: 0×437

You can verify information here: msdn.microsoft.com/en-us/library/windows/desktop/dd318693(v=vs.85).aspx

Thank you.

----------------------------

#2 12 Feb 2018 14:16
Pyprohly


Better do the other 668 locales while you’re at it, Mr. Sheppard.

Hmm, a great PowerShell opportunity. 8-)

Code: Select all

$(
	[cultureinfo]::GetCultures('NeutralCultures,SpecificCultures') |
		select DisplayName, IetfLanguageTag, @{l='LCID (Hex)';e={'0x{0:X}' -f $_.LCID}}, LCID |
		sort DisplayName |
		% {
			"<table>"
			"`t<tr>"
			"`t`t<th>Locale description</th>"
			"`t`t<th>Short string</th>"
			"`t`t<th>Hexadecimal value</th>"
			"`t`t<th>Decimal value</th>"
			"`t</tr>"
			
		} {
			"`t<tr>"
			"`t`t<td>$($_.DisplayName)</td>"
			"`t`t<td>$($_.IetfLanguageTag)</td>"
			"`t`t<td>$($_.'LCID (Hex)')</td>"
			"`t`t<td>$($_.LCID)</td>"
			"`t</tr>"
		} {
			"</table>"
		}
) | Out-File C:\Users\$env:Username\Desktop\locales.txt
Last edited by Pyprohly (12 Feb 2018 14:19)

----------------------------

#3 12 Feb 2018 22:50
Simon Sheppard


OK I have updated the page now, thanks Pyprohly very nicely done.
Post Reply