[nautilus/gnome-3-20] nautilus-file-operations.c: new files from template no longer begin with "Untitled"



commit 66c859eed80d316b20e1457ba16f219e175ee90c
Author: Ricard Gascons <gascons1995 gmail com>
Date:   Tue Mar 1 23:40:41 2016 +0100

    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 files changed, 1 insertions(+), 1 deletions(-)
---
diff --git a/libnautilus-private/nautilus-file-operations.c b/libnautilus-private/nautilus-file-operations.c
index 3b531f1..a343098 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);
                        }


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]