From a7964514651c4f7852d930e6c0e38d06583fcd15 Mon Sep 17 00:00:00 2001 From: Sebastian Rasmussen Date: Tue, 23 May 2023 12:52:36 +0200 Subject: [PATCH] service: Fix localization string formatting. * modules/shepherd/service.scm: Change the singular/plural formatting to be the same in order to avoid translation tool warnings. --- modules/shepherd/service.scm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/shepherd/service.scm b/modules/shepherd/service.scm index e3ca910..c501a68 100644 --- a/modules/shepherd/service.scm +++ b/modules/shepherd/service.scm @@ -1104,8 +1104,8 @@ requests arriving on @var{channel}." (loop (unregister services))) (lst ; (local-output - (l10n "Cannot unregister service ~a, which is still running" - "Cannot unregister services~{ ~a,~} which are still running" + (l10n "Cannot unregister service ~{ ~a,~} which is still running" + "Cannot unregister services ~{ ~a,~} which are still running" (length lst)) (map service-canonical-name lst)) (loop registered)))) -- 2.39.2