我试图了解Angular CLI中是否有原生工作流程
如果我提取新的翻译将破坏旧的。是否有一个协调两个提取的过程?或计划?开发团队是否应该自己推出?只是寻找清晰度
HTML:
<h1>Hello i18n!</h1>
提取翻译:
<body>
<trans-unit id="introductionHeader" datatype="html">
<source>Hello i18n!</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/app.component.ts</context>
<context context-type="linenumber">1</context>
</context-group>
<note priority="1" from="description">An introduction header for this sample</note>
<note priority="1" from="meaning">site header</note>
</trans-unit>
</body>
发送和接收翻译
<body>
<trans-unit id="introductionHeader" datatype="html">
<source>Hello i18n!</source>
<target>HERRO i18n!</target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/app.component.ts</context>
<context context-type="linenumber">1</context>
</context-group>
<note priority="1" from="description">An introduction header for this sample</note>
<note priority="1" from="meaning">site header</note>
</trans-unit>
</body>
使用新的副本块更新代码
<h1>Hello i18n!</h1>
<h1>Goodbye i18n!</h1>
再次提取将删除<target>translated content</target>
因此,所有内容都必须重新翻译。
这是否有工作流程?