No More Posting New Topics!

If you have a question or an issue, please start a thread in our Github Discussions Forum.
This forum is closed for new threads/ topics.

Navigation

    Quasar Framework

    • Login
    • Search
    • Categories
    • Recent
    • Tags
    • Popular
    • Users
    • Groups
    • Search
    1. Home
    2. btmi
    3. Best
    B
    • Profile
    • Following 0
    • Followers 0
    • Topics 7
    • Posts 20
    • Best 1
    • Groups 0

    Best posts made by btmi

    • RE: Quasar i18n and Localazy

      @dobbel It is really very easy.

      Follow the instructions here to set up internationalization
      https://quasar.dev/options/app-internationalization

      Sign up to the Localazy service to get your application keys

      Add the localazy.json file to the root of your app with content like this:

      {
      
        "writeKey": "[your write key]",
        "readKey": "[your read key]",
        
        "upload": {  
          "type": "js",
          "files": "src/i18n/en-us/index.js"
        },
        
        "download": {
          "files": "src/i18n/${lang}/index.js"
        }
        
      }
      

      (this is based on the folders created with the default i18n installation)

      then use the commands:

      localazy upload
      

      check your translations and

      localazy download
      

      It is as simple as that.

      posted in Help
      B
      btmi