Merged in feat/sw-2333-package-and-sas-i18n (pull request #2538)

feat(SW-2333): I18n for multiple apps and packages

* Set upp i18n in partner-sas

* Adapt lokalise workflow to monorepo

* Fix layout props


Approved-by: Linus Flood
This commit is contained in:
Anton Gunnarsson
2025-07-10 07:00:03 +00:00
parent 2c0e8965e2
commit 233c685e52
31 changed files with 48133 additions and 210 deletions

14
scripts/i18n/upload.ts Normal file
View File

@@ -0,0 +1,14 @@
import path from 'node:path'
import { config } from 'dotenv'
config({ path: `${process.cwd()}/.env.local` })
const filepath = path.resolve(__dirname, './extracted.json')
async function main() {
const { upload } = await import('./lokalise')
await upload(filepath)
}
main()