Это невозможно через API библиотеки до сих пор (@angular/language-service v7.2
).
Ниже представлен мой обходной путь (спасибо fredrikredflag за его хороший пост на GitHub и спасибо @BrunoBruzzano за ссылку ):
src/app/i18n.service.ts
:
import {Injectable} from "@angular/core";
import {Xliff2} from '@angular/compiler';
// You can also import {Xliff} or {Xtb} instead of {Xliff2}, depending on your project configurations
declare const require;
const content = require('raw-loader!../i18n/messages.fa.xlf');
@Injectable({
providedIn: 'root'
})
export class I18nService {
private readonly xliff: any = new Xliff2().load(content, '');
get(key: string): string {
return this.xliff.i18nNodesByMsgId[key][0].value;
}
}
Псевдо-компонент i18n (ТОЛЬКО ДЛЯ АВТО-ГЕНЕРАЦИОННЫХ ПЕРЕВОДОВ в файле messages.xlf
) :
src/app/i18n/i18n.component.ts
(Не важно. Просто нужно для существования.):
import {Component} from '@angular/core';
@Component({templateUrl: './i18n.component.html'})
export class I18nComponent {}
src/app/i18n/i18n.component.html
( не забудьте использовать идентификатор! )
<p i18n="@@newVersionAlert">New version available. Load New Version?</p>
Не забудьте объявить I18nComponent
в вашем @NgModule
.
Использование (после выполнения ng xi18n ...
и перевода):
В вашемкомпонент :
...
import {I18nService} from './i18n.service';
...
constructor(private i18nService: I18nService, ...) { ... }
sampleUsage() {
confirm(this.t('newVersionAlert'));
}
/**
* translate
*/
private t(i18nId: string) {
return this.i18nService.get(i18nId);
}
...
Служебный скрипт для перевода i18n.service.ts
перед сборкой :
(Это требование: require('raw-loader!../i18n/messages.fa.xlf')
необходимо перевести в соответствии с желаемой локалью. )
PreBuild/prebuild.ts
:
import {Xliff2} from "@angular/compiler";
// You can also import {Xliff} or {Xtb} from "@angular/compiler" depending of your case.
const fs = require('fs');
const path = require('path');
const localeId = process.argv[2];
if (localeId === undefined) throw new Error(`No language specified.\nUsage: node ${path.basename(__filename)} <locale-id${'>'}`);
const content = fs.readFileSync(`src/i18n/messages.${localeId}.xlf`, 'utf8');
const xliff = new Xliff2().load(content, '');
const i18nServiceFilePath = './src/app/i18n.service.ts';
fs.writeFileSync(i18nServiceFilePath,
fs.readFileSync(i18nServiceFilePath, 'utf8')
.replace(/(raw-loader!\.\.\/i18n\/messages\.)\w{2}(\.xlf)/, `$1${xliff.locale}$2`)
);
PreBuild/tsconfig.json
:
{
"compilerOptions": {
"outDir": "./build",
"lib": [
"es2018",
"dom"
],
"module": "commonjs",
"moduleResolution": "node",
"target": "es6",
"typeRoots": [
"../node_modules/@types"
]
},
"files": [
"prebuild.ts"
]
}
package.json
:
...
"scripts": {
"compile-pre-build": "tsc -p PreBuild/tsconfig.json --pretty",
"pre-build": "node PreBuild/build/prebuild.js",
...
...
Использование:
(после однократного npm run compile-pre-build
:)
npm run pre-build -- fa
или
npm run pre-build -- en
Это отредактирует i18n.service.ts
.