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
This commit is contained in:
Ricard Gascons 2016-03-01 23:40:41 +01:00 committed by Carlos Soriano
parent ecb1646ba1
commit 9d28b3263d

View file

@ -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);
}