Add string +1 to strings.xml at the middle of list
Execute localizeExportNew Gradle task.
Look at strings.xml: +1 string jumped at the top of list
Look at GSheet: strings appears as =+1 in formula view, and 1 in a cell.
Execute localize Gradle task.
Look at strings.xml.
Expected: string is +1
Actual: string is 1
Fix: add leading ' to the string in GSheet, so it look '+1. I believe it should be done by the plugin.
Platform: Android Steps:
+1
to strings.xml at the middle of listlocalizeExportNew
Gradle task. Look at strings.xml:+1
string jumped at the top of list Look at GSheet: strings appears as=+1
in formula view, and1
in a cell.localize
Gradle task. Look at strings.xml.Expected: string is
+1
Actual: string is1
Fix: add leading
'
to the string in GSheet, so it look'+1
. I believe it should be done by the plugin.