Fix missing translatable string

Closes: #2724
Approved by: mwleeds
This commit is contained in:
AsciiWolf
2019-02-25 21:22:56 +01:00
committed by Atomic Bot
parent e8816b7663
commit 75690a08bb

View File

@@ -373,7 +373,7 @@ new_operation (FlatpakTransaction *transaction,
if (self->n_ops == 1)
text = g_strdup (_("Installing…"));
else
text = g_strdup_printf (("Installing %d/%d…"), self->op, self->n_ops);
text = g_strdup_printf (_("Installing %d/%d…"), self->op, self->n_ops);
break;
case FLATPAK_TRANSACTION_OPERATION_UPDATE: