Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions src/Dialogs/CloseProjectsConfirmationDialog.vala
Original file line number Diff line number Diff line change
Expand Up @@ -37,20 +37,20 @@ public class Scratch.Dialogs.CloseProjectsConfirmationDialog : Granite.MessageDi
// We can assume n_parents is either zero or one
if (n_children > 0) {
primary_text = ngettext (
_("This folder is the parent of an open project"),
_("This folder is the parent of %u open projects").printf (n_children),
"This folder is the parent of an open project",
"This folder is the parent of %u open projects".printf (n_children),
(ulong) n_children
);
;
secondary_text = ngettext (
_("Opening this folder will close the child project"),
_("Opening this folder will close all child projects"),
"Opening this folder will close the child project",
"Opening this folder will close all child projects",
(ulong) n_children
);

button_label = ngettext (
_("Close Child Project"),
_("Close Child Projects"),
"Close Child Project",
"Close Child Projects",
(ulong) n_children
);
} else {
Expand Down