Author: btimothy Date: Sat Feb 16 23:48:06 2008 New Revision: 1856 URL: http://svn.gnome.org/viewvc/tomboy?rev=1856&view=rev
Log: * Tomboy/Addins/NoteOfTheDay/NoteOfTheDay.cs: Fix bug #514284 by not marking "NoteOfTheDay" as translatable. This is the tag name that is being added to all note of the day notes and shouldn't be translated, especially since it is a "system" tag. Modified: trunk/ChangeLog trunk/Tomboy/Addins/NoteOfTheDay/NoteOfTheDay.cs Modified: trunk/Tomboy/Addins/NoteOfTheDay/NoteOfTheDay.cs ============================================================================== --- trunk/Tomboy/Addins/NoteOfTheDay/NoteOfTheDay.cs (original) +++ trunk/Tomboy/Addins/NoteOfTheDay/NoteOfTheDay.cs Sat Feb 16 23:48:06 2008 @@ -63,8 +63,7 @@ if (notd != null) { // Automatically tag all new Note of the Day notes - Tag notd_tag = TagManager.GetOrCreateSystemTag ( - Catalog.GetString ("NoteOfTheDay")); + Tag notd_tag = TagManager.GetOrCreateSystemTag ("NoteOfTheDay"); notd.AddTag (notd_tag); // notd.AddTag queues a save so the following is no longer necessary _______________________________________________ SVN-commits-list mailing list (read only) http://mail.gnome.org/mailman/listinfo/svn-commits-list Want to limit the commits to a few modules? Go to above URL, log in to edit your options and select the modules ('topics') you want. Module maintainer? It is possible to set the reply-to to your development mailing list. Email [EMAIL PROTECTED] if interested.