From aeec7ead0d4122acb11723a4c51e754f0ea8a09c Mon Sep 17 00:00:00 2001 From: Oktay Imanzade <50494084+TheUtopian@users.noreply.github.com> Date: Tue, 27 Feb 2024 20:05:19 +0400 Subject: [PATCH] pkexec: fixed different quotes in messages --- src/programs/pkexec.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/programs/pkexec.c b/src/programs/pkexec.c index 2a46ef41..71b179f8 100644 --- a/src/programs/pkexec.c +++ b/src/programs/pkexec.c @@ -819,7 +819,7 @@ main (int argc, char *argv[]) * translate the $(program) fragment - it will be expanded to the path * of the program e.g. /bin/bash. */ - N_("Authentication is needed to run `$(cmdline_short)' as the super user")); + N_("Authentication is needed to run '$(cmdline_short)' as the super user")); } else { @@ -829,7 +829,7 @@ main (int argc, char *argv[]) * be expanded to the path of the program e.g. "/bin/bash" and the latter * to the user e.g. "John Doe (johndoe)" or "johndoe". */ - N_("Authentication is needed to run `$(cmdline_short)' as user $(user.display)")); + N_("Authentication is needed to run '$(cmdline_short)' as user $(user.display)")); } } polkit_details_insert (details, "polkit.gettext_domain", GETTEXT_PACKAGE);