Need help fixing the manifest file fr forge useTranslate

Hi all, Forge is complaining about this:

1:0 error document should NOT have additional property ‘i18n’ valid-document-required

This my manifest.yml file

modules:

macro:

- key: forge-i18n-question-generator-app-ui-kit

  resource: main

  render: native

  resolver:

    function: resolver

  title:

    i18n: app.title

function:

- key: resolver

  handler: index.handler

resources:

  • key: main

    path: src/frontend/index.jsx

i18n:

resources:

- key: en-US

  path: locales/en-US.json

- key: en-GB

  path: locales/en-GB.json

- key: zh-CN

  path: locales/zh-CN.json

- key: zh-TW

  path: locales/zh-TW.json

- key: fr-FR

  path: locales/fr-FR.json

- key: de-DE

  path: locales/de-DE.json

- key: es-ES

  path: locales/es-ES.json

  fallback:

  default: en-US

  zh-TW:

  - zh-CN

  de-DE:

  - en-GB

  es-ES:

  - en-GB

app:

runtime:

name: nodejs24.x

memoryMB: 256

architecture: arm64

id: ari:cloud:ecosystem::app/7ce5975f-3e3c-4f8a-b911-e69cde47c2a6

I have changed i18n to translate and I get the same error, can someone please assist in fixing this file

1 Like

Hi, @kayode1 .
In your yaml file.
i18n:
resources:

Change this code
translations:
resources:

1 Like