mirror of
https://github.com/ReVanced/revanced-manager.git
synced 2026-01-26 12:31:02 +00:00
17 lines
668 B
XML
17 lines
668 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<!--
|
|
Strings with new lines must be raw strings, where the string is wrapped in double quotes and new lines are regular line breaks and not \n
|
|
Raw strings still require escaping embedded double quotes, but single quote characters can be escaped or used as-is.
|
|
|
|
Raw strings are required because Crowdin AI translations regularly gets confused and
|
|
replace \n with an encoded new line character.
|
|
|
|
Bad:
|
|
<string name="summary_key">First \'item\' text\nSecond \"item\" text</string>
|
|
Good:
|
|
<string name="summary_key">"First 'item' text
|
|
Second \"item\" text"</string>
|
|
|
|
-->
|
|
<resources></resources>
|