convert some regular strings to plural strings (#2100)
* convert some regular strings to plural strings * convert hint_describe_for_visually_impaired from string to plurals * fix ukrainian strings
This commit is contained in:
parent
2d0862cfc5
commit
0b86f58139
47 changed files with 469 additions and 181 deletions
|
|
@ -242,7 +242,7 @@ public class NotificationHelper {
|
|||
|
||||
if (currentNotifications.length() != 1) {
|
||||
try {
|
||||
String title = context.getString(R.string.notification_title_summary, currentNotifications.length());
|
||||
String title = context.getResources().getQuantityString(R.plurals.notification_title_summary, currentNotifications.length(), currentNotifications.length());
|
||||
String text = joinNames(context, currentNotifications);
|
||||
summaryBuilder.setContentTitle(title)
|
||||
.setContentText(text);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue