[gedit] Change default document title to "Untitled Document"
- From: Sébastien Wilmet <swilmet src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [gedit] Change default document title to "Untitled Document"
- Date: Sun, 18 Oct 2015 10:49:25 +0000 (UTC)
commit 05d0ce16a8a137503a17af5c2467de10174462aa
Author: Lars Uebernickel <lars uebernickel canonical com>
Date: Wed Aug 26 10:56:47 2015 +0200
Change default document title to "Untitled Document"
Since this is also the title that is suggested in the save dialog, the
previous title "Unsaved Document" can lead to files on disc that are
called "Unsaved Document", which is a misnomer.
https://bugzilla.gnome.org/show_bug.cgi?id=564983
gedit/gedit-document.c | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
---
diff --git a/gedit/gedit-document.c b/gedit/gedit-document.c
index e78cf57..27813dc 100644
--- a/gedit/gedit-document.c
+++ b/gedit/gedit-document.c
@@ -1101,7 +1101,7 @@ gedit_document_get_uri_for_display (GeditDocument *doc)
if (location == NULL)
{
- return g_strdup_printf (_("Unsaved Document %d"),
+ return g_strdup_printf (_("Untitled Document %d"),
priv->untitled_number);
}
else
@@ -1134,7 +1134,7 @@ gedit_document_get_short_name_for_display (GeditDocument *doc)
}
else if (location == NULL)
{
- return g_strdup_printf (_("Unsaved Document %d"),
+ return g_strdup_printf (_("Untitled Document %d"),
priv->untitled_number);
}
else
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]