Skip to content

File Structure

Unless configured to write other files to disk, wuchale only writes files that you should commit.

  • vite.config.js
  • Directorysrc
    • Directorylocales
      • en.po Source catalog
      • es.po Translation catalog
      • loader.js Loader file for the adapter
      • App.svelte Your components

If you configure the loader to write the compiled catalogs and the proxy,

  • vite.config.js
  • Directorysrc
    • Directorylocales
      • en.po Source catalog
      • en.compiled.js Source catalog compiled
      • es.po Translation catalog
      • es.compiled.js Translation catalog compiled
      • proxy.js Proxy file for catalogs
      • loader.js Loader file for the adapter
    • App.svelte Your components

If you configure it to write the transformed code as well, it will write it to src/locales/.output/ or the outDir you configure.