Skip to content

Commit

Permalink
pkexec: fixed different quotes in messages
Browse files Browse the repository at this point in the history
  • Loading branch information
TheUtopian authored Feb 27, 2024
1 parent b3a3a25 commit aeec7ea
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/programs/pkexec.c
Original file line number Diff line number Diff line change
Expand Up @@ -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
{
Expand All @@ -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);
Expand Down

0 comments on commit aeec7ea

Please sign in to comment.