locize

locize InContextEditor postMessage API (by locize)

Locize Alternatives

Similar projects and alternatives to locize

  1. Svelte

    709 locize VS Svelte

    web development for the rest of us

  2. SurveyJS

    JavaScript Form Builder with No-Code UI & Built-In JSON Schema Editor. Add the SurveyJS white-label form builder to your JavaScript app (React/Angular/Vue3). Build complex JSON forms without coding. Fully customizable, works with any backend, perfect for data-heavy apps. Learn more.

    SurveyJS logo
  3. pages-gem

    A simple Ruby Gem to bootstrap dependencies for setting up and maintaining a local Jekyll environment in sync with GitHub Pages

  4. vercel

    591 locize VS vercel

    Develop. Preview. Ship.

  5. Vue.js

    385 locize VS Vue.js

    This is the repo for Vue 2. For Vue 3, go to https://github.com/vuejs/core

  6. react-i18next

    75 locize VS react-i18next

    Internationalization for react done right. Using the i18next i18n ecosystem.

  7. i18next

    69 locize VS i18next

    i18next: learn once - translate everywhere

  8. next-i18next

    29 locize VS next-i18next

    The easiest way to translate your NextJs apps.

  9. Civic Auth

    Auth in Less Than 5 Minutes. Civic Auth comes with multiple SSO options, optional embedded wallets, and user management — all implemented with just a few lines of code. Start building today.

    Civic Auth logo
  10. i18next-browser-languageDetector

    language detector used in browser environment for i18next

  11. remix-i18next

    3 locize VS remix-i18next

    The easiest way to translate your React Router framework mode apps

  12. i18next-locize-backend

    A simple i18next backend for locize.com which can be used in Node.js, in the browser and for Deno.

  13. i18next-http-backend

    i18next-http-backend is a backend layer for i18next using in Node.js, in the browser and for Deno.

  14. React

    1,933 locize VS React

    The library for web and native user interfaces.

  15. svelte-i18n

    7 locize VS svelte-i18n

    Internationalization library for Svelte

  16. locize-cli

    6 locize VS locize-cli

    locize cli to import / export locales, add / edit / remove, sync segments

  17. locize-lastused

    Using API lastUsed using in node.js, in the browser and for deno.

  18. i18next-localstorage-backend

    This is a i18next cache layer to be used in the browser. It will load and cache resources from localStorage and can be used in combination with the chained backend.

  19. i18next-vue

    2 locize VS i18next-vue

    Internationalization for Vue 2 & 3 using the i18next ecosystem

  20. i18next-chained-backend

    An i18next backend to chain multiple backends (add fallbacks, caches, ...)

  21. locizer

    2 locize VS locizer

    locize connector to the backend for your browser

  22. InfluxDB

    InfluxDB – Built for High-Performance Time Series Workloads. InfluxDB 3 OSS is now GA. Transform, enrich, and act on time series data directly in the database. Automate critical tasks and eliminate the need to move data externally. Download now.

    InfluxDB logo
NOTE: The number of mentions on this list indicates mentions on common posts plus user suggested alternatives. Hence, a higher number means a better locize alternative or higher similarity.

locize discussion

Log in or Post with

locize reviews and mentions

Posts with mentions or reviews of locize. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2025-03-03.
  • How to Easily Add Internationalization (i18n) to Your New Software Project
    2 projects | dev.to | 3 Mar 2025
    So if you want to take your i18n topic to the next level, it's worth trying the localization management platform - locize.
  • How to properly internationalize a Vue application using i18next
    8 projects | dev.to | 15 May 2022
    import I18NextVue from 'i18next-vue' import i18next from 'i18next' import Backend from 'i18next-locize-backend' import LanguageDetector from 'i18next-browser-languagedetector' import LastUsed from 'locize-lastused' import { locizePlugin } from 'locize' const isProduction = process.env.NODE_ENV === 'production' const locizeOptions = { projectId: process.env.VUE_APP_LOCIZE_PROJECTID, apiKey: process.env.VUE_APP_LOCIZE_APIKEY, // YOU should not expose your apps API key to production!!! version: process.env.VUE_APP_LOCIZE_VERSION } if (!isProduction) { // locize-lastused // sets a timestamp of last access on every translation segment on locize // -> safely remove the ones not being touched for weeks/months // https://github.com/locize/locize-lastused i18next.use(LastUsed); } export const i18nextPromise = i18next // locize-editor // InContext Editor of locize .use(locizePlugin) // i18next-locize-backend // loads translations from your project, saves new keys to it (saveMissing: true) // https://github.com/locize/i18next-locize-backend .use(Backend) // detect user language // learn more: https://github.com/i18next/i18next-browser-languageDetector .use(LanguageDetector) // init i18next // for all options read: https://www.i18next.com/overview/configuration-options .init({ debug: !isProduction, fallbackLng: 'en', saveMissing: !isProduction, backend: locizeOptions, locizeLastUsed: locizeOptions }) export default function (app) { app.use(I18NextVue, { i18next }) return app }
  • Beam your Svelte internationalization up to a new level
    4 projects | dev.to | 5 Apr 2022
    Let's install locize:
  • All side optimized Next.js translations
    11 projects | dev.to | 3 Apr 2022
    With the help of the locize plugin, you'll be able to use your app within the locize InContext Editor.
  • How to internationalize a Remix application (Part 2)
    7 projects | dev.to | 3 Mar 2022
  • The progressive guide to jQuery internationalization (i18n) using i18next
    8 projects | dev.to | 2 Feb 2022
  • How to properly internationalize a React application using i18next
    12 projects | dev.to | 14 Apr 2021
    import i18n from 'i18next'; import { initReactI18next } from 'react-i18next'; import LanguageDetector from 'i18next-browser-languagedetector'; import Backend from 'i18next-locize-backend'; import LastUsed from 'locize-lastused'; import { locizePlugin } from 'locize'; import { DateTime } from 'luxon'; const isProduction = process.env.NODE_ENV === 'production'; const locizeOptions = { projectId: process.env.REACT_APP_LOCIZE_PROJECTID, apiKey: process.env.REACT_APP_LOCIZE_APIKEY, // YOU should not expose your apps API key to production!!! referenceLng: process.env.REACT_APP_LOCIZE_REFLNG, version: process.env.REACT_APP_LOCIZE_VERSION }; if (!isProduction) { // locize-lastused // sets a timestamp of last access on every translation segment on locize // -> safely remove the ones not being touched for weeks/months // https://github.com/locize/locize-lastused i18n.use(LastUsed); } i18n // locize-editor // InContext Editor of locize .use(locizePlugin) // i18next-locize-backend // loads translations from your project, saves new keys to it (saveMissing: true) // https://github.com/locize/i18next-locize-backend .use(Backend) // detect user language // learn more: https://github.com/i18next/i18next-browser-languageDetector .use(LanguageDetector) // pass the i18n instance to react-i18next. .use(initReactI18next) // init i18next // for all options read: https://www.i18next.com/overview/configuration-options .init({ debug: true, fallbackLng: 'en', interpolation: { escapeValue: false, // not needed for react as it escapes by default format: (value, format, lng) => { if (value instanceof Date) { return DateTime.fromJSDate(value).setLocale(lng).toLocaleString(DateTime[format]) } return value; } }, backend: locizeOptions, locizeLastUsed: locizeOptions, saveMissing: !isProduction // you should not use saveMissing in production }); export default i18n;
  • A note from our sponsor - SurveyJS
    surveyjs.io | 14 May 2025
    Add the SurveyJS white-label form builder to your JavaScript app (React/Angular/Vue3). Build complex JSON forms without coding. Fully customizable, works with any backend, perfect for data-heavy apps. Learn more. Learn more →

Stats

Basic locize repo stats
7
14
8.3
23 days ago

Sponsored
JavaScript Form Builder with No-Code UI & Built-In JSON Schema Editor
Add the SurveyJS white-label form builder to your JavaScript app (React/Angular/Vue3). Build complex JSON forms without coding. Fully customizable, works with any backend, perfect for data-heavy apps. Learn more.
surveyjs.io

Did you know that JavaScript is
the 3rd most popular programming language
based on number of references?