Fix
This commit is contained in:
parent
c3d5baf996
commit
630bea44a2
1 changed files with 3 additions and 3 deletions
|
@ -38,14 +38,14 @@
|
|||
</target>
|
||||
|
||||
<target name="fix_apostrophe_issues">
|
||||
<replace token="version='1.0'" value="version="1.0"">
|
||||
<replace token="version='1.0'" value="version="1.0"" encoding="UTF-8">
|
||||
<fileset dir="res" includes="**/strings.xml" />
|
||||
</replace>
|
||||
<replace token="encoding='utf-8'" value="encoding="utf-8"">
|
||||
<replace token="encoding='utf-8'" value="encoding="utf-8"" encoding="UTF-8">
|
||||
<fileset dir="res" includes="**/strings.xml" />
|
||||
</replace>
|
||||
|
||||
<replaceregexp match="([^\\])'" replace="\1\\\\'" flags="-g" byline="off">
|
||||
<replaceregexp match="([^\\])'" replace="\1\\\\'" flags="-g" byline="off" encoding="UTF-8">
|
||||
<fileset dir="res" includes="**/strings.xml" />
|
||||
</replaceregexp>
|
||||
</target>
|
||||
|
|
Loading…
Reference in a new issue