Angular элементов и Интернационализация (i18n) - PullRequest
0 голосов
/ 08 апреля 2020

Я работаю в проекте, в котором есть Angular элементы (или Angular веб-компоненты), и мне нужно выполнить Интернационализацию (i18n) на испанском sh языке, следуя правилам Angular.

my angular. json:

{
  "$schema": "./node_modules/@angular/cli/lib/config/schema.json",
  "version": 1,
  "newProjectRoot": "projects",
  "projects": {
    "my-component": {
      "projectType": "application",
      "schematics": {
        "@schematics/angular:component": {
          "style": "scss"
        },
        "i18n": {
          "sourceLocale": "en",
          "locales": {
            "es": "src/locale/messages.es.xlf"
          }
        }
      },
      "root": "",
      "sourceRoot": "src",
      "prefix": "app",
      "architect": {
        "build": {
          "builder": "ngx-build-plus:build",
          "options": {
            "outputPath": "dist/my-component",
            "index": "src/index.html",
            "main": "src/main.ts",
            "polyfills": "src/polyfills.ts",
            "tsConfig": "tsconfig.app.json",
            "aot": true,
            "assets": [
              "src/favicon.ico",
              "src/assets"
            ],
            "styles": [
              "src/styles.scss"
            ],
            "scripts": []
          },
          "configurations": {
            "es": {
              "localize": ["es"]
            },
            "production": {
              "fileReplacements": [
                {
                  "replace": "src/environments/environment.ts",
                  "with": "src/environments/environment.prod.ts"
                }
              ],
              "optimization": true,
              "outputHashing": "all",
              "sourceMap": false,
              "extractCss": true,
              "namedChunks": false,
              "extractLicenses": true,
              "vendorChunk": false,
              "buildOptimizer": true,
              "budgets": [
                {
                  "type": "initial",
                  "maximumWarning": "2mb",
                  "maximumError": "5mb"
                },
                {
                  "type": "anyComponentStyle",
                  "maximumWarning": "6kb",
                  "maximumError": "10kb"
                }
              ]
            }
          }
        },
        "serve": {
          "builder": "ngx-build-plus:dev-server",
          "options": {
            "browserTarget": "my-component:build"
          },
          "configurations": {
            "production": {
              "browserTarget": "my-component:build:production"
            },
            "es": {
              "browserTarget": "my-component:build:es"
            }
          }
        },
        "extract-i18n": {
          "builder": "@angular-devkit/build-angular:extract-i18n",
          "options": {
            "browserTarget": "my-component:build"
          }
        },
        "test": {
          "builder": "ngx-build-plus:karma",
          "options": {
            "main": "src/test.ts",
            "polyfills": "src/polyfills.ts",
            "tsConfig": "tsconfig.spec.json",
            "karmaConfig": "karma.conf.js",
            "assets": [
              "src/favicon.ico",
              "src/assets"
            ],
            "styles": [
              "src/styles.scss"
            ],
            "scripts": []
          }
        },
        "lint": {
          "builder": "@angular-devkit/build-angular:tslint",
          "options": {
            "tsConfig": [
              "tsconfig.app.json",
              "tsconfig.spec.json",
              "e2e/tsconfig.json"
            ],
            "exclude": [
              "**/node_modules/**"
            ]
          }
        },
        "e2e": {
          "builder": "@angular-devkit/build-angular:protractor",
          "options": {
            "protractorConfig": "e2e/protractor.conf.js",
            "devServerTarget": "my-component:serve"
          },
          "configurations": {
            "production": {
              "devServerTarget": "my-component:serve:production"
            }
          }
        }
      }
    }
  },
  "defaultProject": "my-component"
}

Проблема возникает, когда я пытаюсь построить проект. Когда я выполняю эту команду ng build --prod --output-hashing none --single-bundle true для сборки проекта (для angular элементов) все нормально, но когда я пытаюсь построить перевод с помощью этой команды ng build --configuration=es, эта ошибка появляется в консоли:

An unhandled exception occurred: Requested locale 'es' is not defined for the project.
See "/private/var/folders/yx/4vbvv8pd5r17fw8v08kxzt4m0000gq/T/ng-Sd34ew/angular-errors.log" for further details.

Есть идеи, как ее решить?

1 Ответ

0 голосов
/ 10 мая 2020

Вам необходимо переместить секцию i18n за пределы узла schematics

"my-component": {
  "projectType": "application",
  "schematics": {
    "@schematics/angular:component": {
      "style": "scss"
    }
  },
   "i18n": {
      "sourceLocale": "en",
      "locales": {
        "es": "src/locale/messages.es.xlf"
      }
    },
  "root": "",
  "sourceRoot": "src",
...