[gnote] Shorten special notebook names



commit 0500ab46e904954b5b76cdc58a54e957a244e0a9
Author: Aurimas Černius <aurisc4 gmail com>
Date:   Tue Jun 4 22:44:35 2013 +0300

    Shorten special notebook names
    
    Remove redundant 'Notes' from names.
    Fixes Bug 701570.

 src/notebooks/notebook.cpp |    8 ++++----
 1 files changed, 4 insertions(+), 4 deletions(-)
---
diff --git a/src/notebooks/notebook.cpp b/src/notebooks/notebook.cpp
index 8ccfbfa..a91215d 100644
--- a/src/notebooks/notebook.cpp
+++ b/src/notebooks/notebook.cpp
@@ -214,7 +214,7 @@ namespace notebooks {
 
 
   AllNotesNotebook::AllNotesNotebook(NoteManager & manager)
-    : SpecialNotebook(manager, _("All Notes"))
+    : SpecialNotebook(manager, _("All"))
   {
   }
 
@@ -243,7 +243,7 @@ namespace notebooks {
 
 
   UnfiledNotesNotebook::UnfiledNotesNotebook(NoteManager & manager)
-    : SpecialNotebook(manager, _("Unfiled Notes"))
+    : SpecialNotebook(manager, _("Unfiled"))
   {
   }
 
@@ -272,7 +272,7 @@ namespace notebooks {
 
 
   PinnedNotesNotebook::PinnedNotesNotebook(NoteManager & manager)
-    : SpecialNotebook(manager, _("Important Notes"))
+    : SpecialNotebook(manager, _("Important"))
   {
   }
 
@@ -300,7 +300,7 @@ namespace notebooks {
 
 
   ActiveNotesNotebook::ActiveNotesNotebook(NoteManager & manager)
-    : SpecialNotebook(manager, _("Active Notes"))
+    : SpecialNotebook(manager, _("Active"))
   {
     manager.signal_note_deleted
       .connect(sigc::mem_fun(*this, &ActiveNotesNotebook::on_note_deleted));


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