i18n with resource files
Suppose you have the files Strings.resx
and Strings.en.resx
in you Project, then you can access these Strings in a localized way (depending on the current culture) like this:
Dim _R As Resources.ResourceManager = My.Resources.Strings.ResourceManager
Dim str = _R.GetString("SomeLocalizedResource")