We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9026f88 commit c03b6eeCopy full SHA for c03b6ee
src/commonMain/kotlin/com/snad/stringsToXml/XMLCreator.kt
@@ -9,7 +9,7 @@ class XMLCreator {
9
var xmlString = ""
10
11
for(translation in translations) {
12
- xmlString = xmlString.plus(" <string name=\"${translation.id}\">${translation.translatedString}</string>\n")
+ xmlString = xmlString.plus("\t<string name=\"${translation.id}\">${translation.translatedString}</string>\n")
13
}
14
15
return header.plus(xmlString).plus(footer)
0 commit comments