© 2022 Hashnode
#i18n
What is Internationalization (i18n)? Internationalization, sometimes referenced as i18n, is the process of designing and preparing your project for use in different locales worldwide. Localization is …
Making a web app with just one language may represent a limitation for your users. Internationalization is an important yet often ignored or missed step by developers. Setting up a React app with i18n…
So you develop an app in React and you want many users to use it, right? To make your app usable for users in foreign countries, you have to translate your App to their languages. 🇬🇧 🇨🇳 🇮🇹 🇪🇸 …
Did you know that you can translate your Figma designs and prototypes and reuse the translations seamlessly during development? Learn how to do it with Localazy and Figma. Figma is a well-known web pr…
Introduction Angular is a development platform for building WEB, mobile and desktop applications using HTML, CSS and TypeScript (JavaScript). Currently, Angular is at version 13 and Google is the main…
In this article, I'll show how to add rosetta - small, but powerful i18n library to SolidJs application. Rosetta It is a minimalistic library that caught my attention when I was checking out what i18n libraries are out there - 5 libraries t…
使用套件 "react": ^17.0.1, "next": 11.0.1, "next-i18next": ^8.5.5, "typescript": 4.3.2 覺得 i18next 的文件寫得夠完整,所以在決定作品集要做多國語系時,用這一款來輔助,避免重新發明輪胎,next-i18next 又做好許多 Next.js 和 i18next 之間的整合。然而,使用上還是有向技術社群求助的經驗,在這一篇集合起來。 使用特殊符號與 HTML 語法 撰寫 HTML 的時候,遇到…
I'll show you how to use basic translation features in i18next: nested keys substitution Starting point We start with the code in the previous step. It's already set up for the node & browser use. Code The complete code to be placed in in…
In this article, we will take the node example and put it to the browser-side. Code We will use the same code as in the previews article, but this time it will be in src/index.js: import i18next from "i18next"; i18next .init({ lng: "…
This article will show how to start i18next in a node project. i18next i18next is one of the libraries I included in my list of 5 interesting internationalization libraries. On the project page, it's called internationalization-framework, a…