GNOME Bugzilla – Bug 756123
Rename "Recent" view to "Books" or "Documents"
Last modified: 2015-10-06 16:50:34 UTC
because we are planning to make the view sortable (bug 683563) and it is consistent with gnome-videos (totem).
Looking at https://bugzilla.gnome.org/show_bug.cgi?id=729072#c13 , I think "Documents" would be correct replacement for "Recent".
Created attachment 312747 [details] [review] embed: Rename "Recent" view
Review of attachment 312747 [details] [review]: Thanks, Alessandro. ::: src/embed.js @@ +78,3 @@ // now create the actual content widgets this._documents = new View.ViewContainer(WindowMode.WindowMode.DOCUMENTS); + let label = !Application.application.isBooks ? _("Documents") : _('Books'); I don't like our current use of !isBooks when we could have easily written it without the negation, but that's for another day. Not a blocker.