Internacionalização
Android suporta PT-BR e Espanhol (ES). iOS em andamento.
Arquivos
Android: res/values/strings.xml ← PT-BR (principal) res/values-es/strings.xml ← ES (em andamento) iOS: Localizable.strings (pt-BR) Localizable.strings (es)
Bug:
String.format("Olá %s %s", a, b) em ES pode inverter a ordem. Usar %1$s / %2$s posicionais.Exemplo correto
<!-- ❌ Problemático --> <string name="msg">Rota %s excede %s km</string> <!-- ✓ Correto --> <string name="msg">Rota %1$s excede %2$.1f km</string>