[android] Added plural handling

This commit is contained in:
Alexander Zatsepin 2018-04-23 17:32:10 +03:00 committed by Aleksandr Zatsepin
parent d88f6dfe3d
commit c55bdae995

View file

@ -48,7 +48,7 @@ public class KmlImportController implements BookmarkManager.KmlConversionListene
mProgressDialog.show();
};
String msg = mContext.getString(R.string.bookmarks_detect_message, count);
String msg = mContext.getResources().getQuantityString(R.plurals.bookmarks_detect_message, count);
DialogUtils.showAlertDialog(mContext, R.string.bookmarks_detect_title, msg,
R.string.button_convert, clickListener, R.string.cancel);
}