Fix delete_fail

This commit is contained in:
Dominik Schürmann
2016-04-18 07:31:31 +02:00
parent f1b14d338c
commit 15ed1c9a63
2 changed files with 3 additions and 2 deletions

View File

@@ -131,7 +131,8 @@ public class DeleteResult extends InputPendingResult {
else if (mFail == 0) {
str = activity.getString(R.string.delete_nothing);
} else {
str = activity.getResources().getQuantityString(R.plurals.delete_fail, mFail);
str = activity.getResources().getQuantityString(
R.plurals.delete_fail, mFail, mFail);
}
}