Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Anyone know a source for translated Time Zone descriptions?

Does anyone know of a compiled list of translations for the time zone names in Windows? I need all 75 or so of them in German, French and Spanish. Alternatively, how would I use .Net to compile such a list?

Example format: (GMT+01:00) Belgrade, Bratislava, Budapest, Ljubljana, Prague

like image 960
Greg Avatar asked Jan 23 '23 19:01

Greg


2 Answers

Get the time zone database from https://iana.org/time-zones or ftp://ftp.iana.org/tz (or the many other source on the web). These will be keyed in UN ISO codes and English country/City names

And then translate them from http://www.unicode.org/cldr/

e.g.

  • French http://unicode.org/cldr/data/common/main/fr.xml
  • Spanish http://unicode.org/cldr/data/common/main/es.xml
like image 70
TFD Avatar answered Jan 26 '23 07:01

TFD


The Microsoft Terminology Collection is available for download for non-commercial use.

like image 43
Raymond Chen Avatar answered Jan 26 '23 09:01

Raymond Chen