Skip to content

Commit

Permalink
minor fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
sulincix committed Aug 24, 2024
1 parent 3bbab97 commit 7ba3af4
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/data/dependency.vala
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,10 @@ private static void resolve_process (string[] names) {
pkg = get_installed_package (name);
}
}else {
string errmsg = _ ("Package is not installable: %s Required by %s").printf (name, parent);
string errmsg = _ ("Package is not installable: %s").printf (name);
if (parent != ""){
errmsg += " "+_("Required by: %s").printf (parent);
}
if (!ignore_missing) {
error_add (errmsg);
} else {
Expand Down

0 comments on commit 7ba3af4

Please sign in to comment.