[gnote] NoteOfTheDayApplicationAddin: The XML should not be translatable



commit 401fa9c8d6e57757f676322662d770f9c5b9199f
Author: Debarshi Ray <debarshir src gnome org>
Date:   Sun Jan 3 22:09:26 2010 +0200

    NoteOfTheDayApplicationAddin: The XML should not be translatable
    
    Fixes: https://bugzilla.gnome.org/605864

 src/addins/noteoftheday/noteoftheday.cpp |   16 ++++++++--------
 1 files changed, 8 insertions(+), 8 deletions(-)
---
diff --git a/src/addins/noteoftheday/noteoftheday.cpp b/src/addins/noteoftheday/noteoftheday.cpp
index c1b59d0..c1f1326 100644
--- a/src/addins/noteoftheday/noteoftheday.cpp
+++ b/src/addins/noteoftheday/noteoftheday.cpp
@@ -151,14 +151,14 @@ std::string NoteOfTheDay::get_template_content(
                             const std::string & title)
 {
   return Glib::ustring::compose(
-    _("<note-content xmlns:size=\"http://beatniksoftware.com/tomboy/size\";>"
-      "<note-title>%1</note-title>\n\n\n\n"
-      "<size:huge>%2</size:huge>\n\n\n"
-      "<size:huge>%3</size:huge>\n\n\n"
-      "</note-content>"),
-      title,
-      _("Tasks"),
-      _("Appointments"));
+    "<note-content xmlns:size=\"http://beatniksoftware.com/tomboy/size\";>"
+    "<note-title>%1</note-title>\n\n\n\n"
+    "<size:huge>%2</size:huge>\n\n\n"
+    "<size:huge>%3</size:huge>\n\n\n"
+    "</note-content>",
+    title,
+    _("Tasks"),
+    _("Appointments"));
 }
 
 std::string NoteOfTheDay::get_title(const Glib::Date & date)



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