From c735e44ef8a8c27cb927f371576758bf1a5a3e06 Mon Sep 17 00:00:00 2001 From: Ryo Nakano Date: Sun, 2 Mar 2025 17:29:34 +0900 Subject: [PATCH] CloseProjectsConfirmationDialog: Correct ngettext format --- src/Dialogs/CloseProjectsConfirmationDialog.vala | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/src/Dialogs/CloseProjectsConfirmationDialog.vala b/src/Dialogs/CloseProjectsConfirmationDialog.vala index fde88a5a03..698b33afb9 100644 --- a/src/Dialogs/CloseProjectsConfirmationDialog.vala +++ b/src/Dialogs/CloseProjectsConfirmationDialog.vala @@ -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 {