@gunchleoc Who uses #lspkg? I never heard of it before.

VisualStudio should support any existing standard but I don't expect or want Microsoft to come up with a standard for FLOSS projects.

For example, the #RubyOnRails community has settled on a rather good standard. (Mentioned in the [[Plural]] page above.)
https://guides.rubyonrails.org/i18n.html#pluralization

While e.g. #Mozilla has a long-standing tradition to come at #FOSDEM every other year with yet another proposal for a new #L10n "standard". :D

Rails Internationalization (I18n) API โ€” Ruby on Rails Guides

Rails Internationalization (I18n) APIThe Ruby I18n (shorthand for internationalization) gem which is shipped with Ruby on Rails (starting from Rails 2.2) provides an easy-to-use and extensible framework for translating your application to a single custom language other than English or for providing multi-language support in your application.The process of "internationalization" usually means to abstract all strings and other locale specific bits (such as date or currency formats) out of your application. The process of "localization" means to provide translations and localized formats for these bits.1So, in the process of internationalizing your Rails application you have to: Ensure you have support for i18n. Tell Rails where to find locale dictionaries. Tell Rails how to set, preserve, and switch locales. In the process of localizing your application you'll probably want to do the following three things: Replace or supplement Rails' default locale - e.g. date and time formats, month names, Active Record model names, etc. Abstract strings in your application into keyed dictionaries - e.g. flash messages, static text in your views, etc. Store the resulting dictionaries somewhere. This guide will walk you through the I18n API and contains a tutorial on how to internationalize a Rails application from the start.After reading this guide, you will know: How I18n works in Ruby on Rails How to correctly use I18n into a RESTful application in various ways How to use I18n to translate Active Record errors or Action Mailer E-mail subjects Some other tools to go further with the translation process of your application

Ruby on Rails Guides