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 e213bea commit f3da6c2Copy full SHA for f3da6c2
1 file changed
app/src/main/java/com/red/alert/activities/Main.java
@@ -1213,6 +1213,9 @@ private void localizeGroupedAlerts(List<Alert> alerts) {
1213
1214
// Display {threat} • {count} Cities instead of entire list of cities
1215
alert.localizedTitle = alert.localizedThreat + " • " + groupedCityCount + " " + getString(R.string.selectedCities);
1216
+
1217
+ // Convert Arabic numerals to digits if needed
1218
+ alert.localizedTitle = Localization.localizeDigits(alert.localizedTitle, this);
1219
}
1220
1221
0 commit comments