From d5eb85591427eac5ce7bf227f519e21ada24b5da Mon Sep 17 00:00:00 2001 From: Alexander Schwinn <alexxcons@xfce.org> Date: Thu, 23 May 2019 10:31:38 +0200 Subject: [PATCH] Replace text "Enter the new name:" by "Enter the name:" for file creation dialog (Bug #15423) --- thunar/thunar-create-dialog.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/thunar/thunar-create-dialog.c b/thunar/thunar-create-dialog.c index 6fb204ba6..b14d5bb0c 100644 --- a/thunar/thunar-create-dialog.c +++ b/thunar/thunar-create-dialog.c @@ -156,7 +156,7 @@ thunar_create_dialog_init (ThunarCreateDialog *dialog) gtk_grid_attach (GTK_GRID (grid), dialog->image, 0, 0, 1, 2); gtk_widget_show (dialog->image); - label = g_object_new (GTK_TYPE_LABEL, "label", _("Enter the new name:"), "xalign", 0.0f, "hexpand", TRUE, NULL); + label = g_object_new (GTK_TYPE_LABEL, "label", _("Enter the name:"), "xalign", 0.0f, "hexpand", TRUE, NULL); gtk_grid_attach (GTK_GRID (grid), label, 1, 0, 1, 1); gtk_widget_show (label); -- GitLab