i18n: Use %d instead of %i in vformat

Fixes #4742.
This commit is contained in:
Rémi Verschelde 2016-05-21 16:34:56 +02:00
parent a65a66b2a3
commit be053e6286
12 changed files with 80 additions and 76 deletions

View file

@ -523,7 +523,7 @@ void OrphanResourcesDialog::ok_pressed() {
if (paths.empty())
return;
delete_confirm->set_text(vformat(TTR("Permanently delete %i item(s)? (No undo!)"),paths.size()));
delete_confirm->set_text(vformat(TTR("Permanently delete %d item(s)? (No undo!)"),paths.size()));
delete_confirm->popup_centered_minsize();
}