Skip to content

Commit

Permalink
Use getQuantityString instead of getQuantityText for import_partial_e…
Browse files Browse the repository at this point in the history
…xport_anyway
  • Loading branch information
alexbakker committed Sep 21, 2024
1 parent 257a40e commit dbaec2d
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -554,7 +554,7 @@ public static void showPartialGoogleAuthImportWarningDialog(Context context, Lis
.setView(view)
.setCancelable(false)
.setIconAttribute(android.R.attr.alertDialogIcon)
.setPositiveButton(context.getResources().getQuantityText(R.plurals.import_partial_export_anyway, entries), (dialog, which) -> {
.setPositiveButton(context.getResources().getQuantityString(R.plurals.import_partial_export_anyway, entries, entries), (dialog, which) -> {
dismissHandler.onClick(dialog, which);
})
.setNegativeButton(android.R.string.cancel, null);
Expand Down

0 comments on commit dbaec2d

Please sign in to comment.