For the values-qq/strings.xml, we have the string items or plural items that have been output with 2 spaces indentation.
<resources xmlns:tools="http://schemas.android.com/tools" tools:ignore="all">
<string name="app_name_prod">...</string>
<string name="app_name_beta">...</string>
<plurals name="page_edit_history_article_edits_since_year">
<item quantity="one">...</item>
<item quantity="other">...</item>
</plurals>But in Android Studio, the default indentation is 4 spaces, like below:
<resources xmlns:tools="http://schemas.android.com/tools" tools:ignore="all">
<string name="app_name_prod">...</string>
<string name="app_name_beta">...</string>
<plurals name="page_edit_history_article_edits_since_year">
<item quantity="one">...</item>
<item quantity="other">...</item>
</plurals>Requirement
Update the translatewiki bot to make each <string> or <plurals> item have 4 spaces indentation instead of 2 spaces - same for the items in <plurals>