fix parse_si for Japanese excel files #141

Closed
tgfjt wants to merge 1 commits from patch-1 into master

1 Commits

Author SHA1 Message Date
Takashi Fujita cb7503de12 fix parse_si for Japanese excel files
Hi.

using #parse_si 'Phonetic Properties' items for Japanese excel files,
the Phonetic items(KATAKANA) represents pronunciation hints of String(KANJI).

```
<si>
 <t>漢字(japanese KANJI)</t>
 <rPh>
  <t>フリガナ(this is KATAKANA for pronounciation:漢字)</t>
 </rPh>
</si>
```

It expected get '漢字' . but got '漢字フリガナ'.
so replace these string, because this can be caused by only `<rPh>`.
2014-10-30 14:59:08 +09:00