summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRicard Gascons <gascons1995@gmail.com>2016-03-01 23:40:41 +0100
committerCarlos Soriano <csoriano@gnome.org>2016-03-07 18:12:02 +0100
commit66c859eed80d316b20e1457ba16f219e175ee90c (patch)
tree68d8fdba82d5f97400ea981b7a44ec887d5da9bd
parent91a5591d60229297cdf58c2075bf5e0f8f702036 (diff)
downloadnautilus-66c859eed80d316b20e1457ba16f219e175ee90c.tar.gz
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
-rw-r--r--libnautilus-private/nautilus-file-operations.c2
1 files changed, 1 insertions, 1 deletions
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);
}