FastAPI i18n: A step-by-step guide with examples
Internationalization (FastAPI i18n) is essential when developing applications for a global audience. Whether you're building an API for a multilingual website or supporting multiple locales in a SaaS product, handling translations efficiently ensures a seamless user experience. This guide provides a practical, step-by-step approach to adding i18n support to your FastAPI app. N
Updated on February 19, 2025·Ilya Krukowski Next.js localization: A step-by-step guide with examples
In this tutorial, you’ll learn how to implement Next.js i18n application using the next-globe-gen plugin. We’ll cover everything from managing translation files and handling pluralization to creating a language switcher and managing localized time, all with practical multi-language examples. Localization is a key step in the Next.js internat
Updated on January 23, 2025·Ilya Krukowski Guide to Angular localization with Transloco examples
In this article, we’ll explore how to implement Angular localization using Transloco i18n with practical examples, including handling localized time. Transloco is a relatively new library packed with features that simplify internationalization (i18n) for multi-lingual applications. With t
Updated on October 22, 2024·Ilya Krukowski ASP.NET Core localization and translation with examples
Localization is crucial for making your ASP.NET Core applications accessible to users from different cultures and languages. By integrating effective software internationalization practices, you ensure that your applications are not only linguistically accurate but also culturally relevant, enhancing user experience across diverse markets. In this tutorial, we’ll explore how to implement localization and translation in ASP
Updated on August 19, 2024·Ilya Krukowski Nuxt i18n: Translate your Nuxt.js app into multiple languages
Hello and welcome to this Nuxt i18n guide that will cover translating your Nuxt.js app into multiple languages. We'll cover everything you need to know to make your Nuxt.js app multilingual. We'll start by setting up the i18n package and managing translation files. You'll learn how to switch languages, localize routes, and save language preferences. We'll also dive into supporting right-to-left languages, handling pluralization, and localizing dates, times, and currencies. Let's get st
Updated on December 19, 2024·Ilya Krukowski Translating apps with gettext: A comprehensive tutorial
Welcome to our gettext tutorial, crafted for developers who are new to the world of software internationalization. This guide will introduce you to gettext, a popular tool that enables your applications to support multiple languages and display localized time with ease. Gettext is essential for
Updated on September 23, 2024·Ilya Krukowski Beginner’s guide to internationalization (i18n)
Ever wondered how apps and websites can show up in different languages with just a few clicks? That’s the magic of internationalization, or “i18n” for short (because there are 18 letters between “i” and “n” in the word). It’s all about setting things up behind the scenes, so your product can easily switch languages, adapt to regional preferences, and feel local—no matter where your users are. In
Updated on May 29, 2025·Ilya Krukowski Decoupling a monolithic PHP application: a practical example
Decoupling a monolith is not a rare problem. It has cropped up in most of the companies I’ve worked at. This happens because, at the early stages of any startup, there is so-called decision debt being accumulated. As a result, the chosen architecture is optimal for rapid development and experimentation, but not for a mature product environment. Considering that this proble
Updated on September 23, 2024·Ilya Levin