GNOME Bugzilla – Bug 325880
Mismatching strings in the GUI and in the manual
Last modified: 2006-05-22 15:27:14 UTC
Daniele Medri <daniele@medri.org>: - in the job creation dialog, there is a "Description" field when in the main window list it appear as "Title" gaute: I would imagine this is mentioned with different names all around gnome-schedule, also check the code and the keys in gconf.
In the last paragraph i was talking about the template/preset changing. Daniele also mentioned: - i found a label "Preset" (italian translation) but in your help doc appear "Template";
Unified diff to fix this small text issue: --- gnome-schedule.new/src/mainWindow.py 2006-01-06 14:30:59.000000000 -0500 +++ gnome-schedule.orig/src/mainWindow.py 2006-01-06 14:27:13.000000000 -0500 @@ -348,7 +348,7 @@ col.set_resizable (True) self.treeview.append_column(col) - col = gtk.TreeViewColumn(_("Description"), gtk.CellRendererText(), text=0) + col = gtk.TreeViewColumn(_("Title"), gtk.CellRendererText(), text=0) col.set_resizable (True) self.treeview.append_column(col) @@ -373,7 +373,7 @@ col.set_expand (True) self.treeview.append_column(col) - col = gtk.TreeViewColumn(_("Description"), gtk.CellRendererText(), text=0) + col = gtk.TreeViewColumn(_("Title"), gtk.CellRendererText(), text=0) col.set_resizable (True) self.treeview.append_column(col)
Created attachment 56874 [details] [review] Patch That first try didn't paste so well into bugzilla. This will alleviate that problem.
I think we should rather change the help page, title is a good name. or what?
Arr.. nevermind that, you are right.. thinking of another bug.. too tired..
Applied. The mismatching strings in the manual remains.
Template -> Preset in the english manual.