PowerShell for Developers Tutorials

Use Import-LocalizedData to Internationalize your Scripts

1 min read
Share:

Whether you’re working with an enterprise client with a global presence or building a tool that you want to share with the world, you may find yourself wanting to build support for multiple languages into your scripts. The Import-LocalizedData Cmdlet is a simple and powerful way to achieve this. I put up a pair of posts about my recent experience with a globalization effort and how we were able to get a lot of functionality with only a few lines of code.

The first post, Internationalization with Import-LocalizedData, describes the Cmdlet itself, how it works, and how to use it to automatically detect and load the correct language files for display at runtime. This is based on the regional settings of the user under which the PowerShell session is running.

The second post, Internationalization with Import-LocalizedData: Part 2, goes into more detail about some research we had to do into what exact regional settings control the language that PowerShell will attempt to use.

Even if you’re not planning to localize your scripts into other languages right now, you should still think about globalizing your code so that it’s easy to do if you change your mind, or if someone is kind enough to want to contribute some translations.

Related Articles

Sep 12, 2019

The Ternary Cometh

Developers are likely to be familiar with ternary conditional operators as they’re legal in many languages (Ruby, …

Read more