From 93320b5a20a640b22d5b9dde0d98414db228ec22 Mon Sep 17 00:00:00 2001 From: FineFindus Date: Tue, 6 Feb 2024 19:58:07 +0100 Subject: [PATCH] objectinfo: adjust translator comment --- udisks/udisksobjectinfo.c | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/udisks/udisksobjectinfo.c b/udisks/udisksobjectinfo.c index 18aa192e55..d544c6c8c1 100644 --- a/udisks/udisksobjectinfo.c +++ b/udisks/udisksobjectinfo.c @@ -452,9 +452,8 @@ udisks_client_get_object_info_for_mdraid (UDisksClient *client, if (block != NULL) { /* Translators: String used for one-liner description of running RAID array w/o a name. - * The first %s is the array name (e.g. "AlphaGo"). - * The second %s is the size and level (e.g. "2 TB RAID-5"). - * The third %s is the special device file (e.g. "/dev/sda"). + * The first %s is the size and level (e.g. "2 TB RAID-5"). + * The second %s is the special device file (e.g. "/dev/sda"). */ info->one_liner = g_strdup_printf (C_("one-liner-mdraid-no-name-running", "%s — %s"), info->description, @@ -463,8 +462,7 @@ udisks_client_get_object_info_for_mdraid (UDisksClient *client, else { /* Translators: String used for one-liner description of non-running RAID array w/o a name. - * The first %s is the array name (e.g. "AlphaGo"). - * The second %s is the size and level (e.g. "2 TB RAID-5"). + * The %s is the size and level (e.g. "2 TB RAID-5"). */ info->one_liner = g_strdup_printf (C_("one-liner-mdraid-no-name-not-running", "%s"), info->description);