From 9d28b3263dbce896bf017438a0059a2da4e32f2c Mon Sep 17 00:00:00 2001 From: Ricard Gascons Date: Tue, 1 Mar 2016 23:40:41 +0100 Subject: nautilus-file-operations.c: new files from template no longer begin with "Untitled" When a new document is created using a template, the word "Untitled" is displayed in front of the template name. For example, creating a new document with a template called "document.doc" will create new file named "Untitled document.doc". This is obviusly a non-practical use of templates and this patch aims to fix this miss-behavior. The fix is simple, the word "Untitled" has been removed from the code when a user creates a new document from a template. https://bugzilla.gnome.org/show_bug.cgi?id=762774 --- libnautilus-private/nautilus-file-operations.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'libnautilus-private') diff --git a/libnautilus-private/nautilus-file-operations.c b/libnautilus-private/nautilus-file-operations.c index 3b531f15e..a34309847 100644 --- a/libnautilus-private/nautilus-file-operations.c +++ b/libnautilus-private/nautilus-file-operations.c @@ -6476,7 +6476,7 @@ create_task_thread_func (GTask *task, if (job->src != NULL) { basename = g_file_get_basename (job->src); /* localizers: the initial name of a new template document */ - filename = g_strdup_printf (_("Untitled %s"), basename); + filename = g_strdup_printf ("%s", basename); g_free (basename); } -- cgit v1.2.1