Skip to content

Commit f3da6c2

Browse files
committed
Main.java: Convert Arabic numerals to digits if needed
1 parent e213bea commit f3da6c2

1 file changed

Lines changed: 3 additions & 0 deletions

File tree

  • app/src/main/java/com/red/alert/activities

app/src/main/java/com/red/alert/activities/Main.java

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1213,6 +1213,9 @@ private void localizeGroupedAlerts(List<Alert> alerts) {
12131213

12141214
// Display {threat} • {count} Cities instead of entire list of cities
12151215
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);
12161219
}
12171220
}
12181221

0 commit comments

Comments
 (0)