Build your NextJS application multilingual with next-translate plugin.
Save time on managing and translating localization files.
Next-translate is a great choice for managing your translations in your NextJS application. It is easy to configure and use, even for beginners. It supports basic internationalization (i18n) like plurals or Trans component (to use HTML inside translated text), loads only necessary translations which extremely saves your app memory, and it doesn't take a lot of storage.
Next-translate is a great choice for managing your translations in your NextJS application. Check how to install it and integrate with SimpleLocalize software.
Continue readingBoth libraries are built specially for NextJS. next-i18next is an extension of base i18next plugin which allows you to localize many different frameworks and languages. next-translate has been built by Aral Roca Gomez especially for NextJS framework and it integrates very well with NextJS i18n API.
Localize your NextJS app with next-i18next framework. Manage and synchronize localization files with ease. Add new languages in your application.
Continue readingInstall SimpleLocalize CLI or download it manually.
$ curl -s https://get.simplelocalize.io/2.1/install | bash
Upload your translation files
$ simplelocalize upload \
--apiKey YOUR_PROJECT_API_KEY \
--uploadFormat single-language-json \
--uploadPath ./locales/{lang}/{ns}.json
After adding new languages or changing translation strings, you can download translation files again to your project files.
$ simplelocalize download \
--apiKey YOUR_PROJECT_API_KEY \
--uploadFormat single-language-json \
--uploadPath ./locales/{lang}/{ns}.json
Need help? See our documentation page.
Have you already integrated an i18n library? We got good news! You can connect SimpleLocalize without doing any changes in the application code! We don't bound you with our own 'yet another i18n library'.
Browse integrationsICU message format is the most widely used format for Unicode strings. Learn more about ICU message formatting and syntax for plurals, numbers, dates and time and more.
Continue readingLearn how to implement internationalization in your Java application. This tutorial will show you how to use Spring Boot to create a simple application with messages.properties.
Continue readingLearn how to implement internationalization in your Spring Boot application. This tutorial will show you how to use Spring Boot to create a simple application with messages.properties.
Continue readingArticle explains what is CORS, popular among web developers CORS, what are the common problems and how to fix them.
Continue reading