Skip to content

Commit

Permalink
UpdateManager: Fix runtimes ngettext (#2190)
Browse files Browse the repository at this point in the history
  • Loading branch information
leolost2605 authored Jun 21, 2024
1 parent cecf3ba commit 0c5d629
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Core/UpdateManager.vala
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,7 @@ public class AppCenterCore.UpdateManager : Object {
if (runtime_count > 0) {
debug ("%u runtime updates found", runtime_count);
var latest_version = ngettext (
"%u runtimes with updates",
"%u runtime with updates",
"%u runtimes with updates",
runtime_count
).printf (runtime_count);
Expand Down

0 comments on commit 0c5d629

Please sign in to comment.