Upload go-i18n v2 JSON files with strings to Localazy and manage your translations easily. Download translated files back.

1. Install Localazy CLI for your operating system.

2. Create a configuration file localazy.json in the root of your project. You can start with our sample:

{

  "writeKey": "your-write-key",
  "readKey": "your-read-key",
  
  "upload": {  
    "type": "json",
    "features": ["content_as_object", "plural_object"],
    "files": "translations/en.json"         
  },
  
  "download": {
    "files": "translations/${lang}.json"
  }
  
}

3. Upload the source strings with localazy upload whenever you change them.

4. Download translated files with localazy download before building your app.


Localazy JSON parser is highly configurable and content_as_object together with plural_object enables full support for go-i18n v2 files! Learn more about our adaptable JSON parser.

You can upload all your existing translations too! Learn more about it.


Localazy CLI is simple to start yet flexible enough for any project. Let’s take a quick tour.