Actions
Bug #31717
closedFastGettext initialization is slow
Description
It's because we switch over all 20 languages to actually pull language name in the native language into a list of available languages. We use that in three places: settings page, user page and GraphQL.
This can be easily made lazy-loaded, so those 2 seconds are not wasted during startup. Only few languages are usually used, definitely not all of them.
Actions