Skip to content

Firegri/ath

 
 

Repository files navigation

Android Translation Helper

Notes

XML source

Any unescaped quotes will become escaped with the exception of double quotes that surround an entire string. Be aware that

<string>'"'</string>

will become

<string>\'\"\'</string>.

The correct way to have a string composed of one double quote is

<string>\"</string>.

For the same reasons,

<string>\"x\"</string>

will become

<string>"x"</string>.

The correct way to have a string show up in Android surrounded by quotes is:

<string>"\"x\""</string>.

About

Android Translation Helper

Resources

Code of conduct

Security policy

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Ruby 93.2%
  • HTML 4.2%
  • CSS 2.3%
  • Shell 0.3%