From f00385384a8cb2028fe38ddd25c4083f05069f6d Mon Sep 17 00:00:00 2001 From: Leonhard Kargl Date: Fri, 21 Jun 2024 13:38:44 +0200 Subject: [PATCH] UpdateManager: Fix runtimes ngettext --- src/Core/UpdateManager.vala | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Core/UpdateManager.vala b/src/Core/UpdateManager.vala index 4f08e1a8a..aea7feb20 100644 --- a/src/Core/UpdateManager.vala +++ b/src/Core/UpdateManager.vala @@ -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);