2017-05-22 12 views
1

私は角度cliを使用しており、その後にスペイン語で生成するangular-ioを使用しています。角度2国際化(I18N):無効なxlfファイルでターゲットタグを見つけることができません

app.component.html

<h2 i18n="header">Login form</h2> 
<div> 
    <span i18n>Email</span> 
    <input type="text" placeholder="Your email" i18n-placeholder> 
</div> 
<div> 
    <span i18n>Password</span> 
    <input type="password" placeholder="Password" i18n-placeholder> 
</div> 

<hr> 

<div i18n>If you want to search something, go to <a href="http://google.com">Google</a></div> 

message.es.xlf

<?xml version="1.0" encoding="UTF-8" ?> 
<xliff version="1.2" xmlns="urn:oasis:names:tc:xliff:document:1.2"> 
<file source-language="en" datatype="plaintext" original="ng2.template"> 
     <body> 
     </body> 
</file> 
</xliff> 

は一度./node_modules/.bin/ng-xi18nを完了message.es.xlfファイルを生成しますが、そのファイルにターゲットタグを見つけることができません取得します。 助けてください

答えて

0

少し遅れましたが、誰かを助けるかもしれません。同じ問題があった場合は、出力ファイルを指定して解決しました。

./node_modules/.bin/ng-xi18n --i18nFormat=xmb --outFile=messages.xmb 
関連する問題