Mercurial > moin > 2.0
changeset 2734:bac6217594a0
Removed full stops from user titles
author | Ajitesh Gupta <ajgupta93@gmail.com> |
---|---|
date | Sun, 17 Aug 2014 02:08:15 +0530 |
parents | 9d9e2bfcd04b |
children | b5a2249d6be6 |
files | MoinMoin/apps/frontend/views.py MoinMoin/templates/all.html |
diffstat | 2 files changed, 2 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- a/MoinMoin/apps/frontend/views.py Sun Aug 17 02:00:38 2014 +0530 +++ b/MoinMoin/apps/frontend/views.py Sun Aug 17 02:08:15 2014 +0530 @@ -142,7 +142,7 @@ Provides a link to all the global views. """ return render_template('all.html', - title_name=_(u"Global Views."), + title_name=_(u"Global Views"), fqname=CompositeName(u'all', NAME_EXACT, u'') )
--- a/MoinMoin/templates/all.html Sun Aug 17 02:00:38 2014 +0530 +++ b/MoinMoin/templates/all.html Sun Aug 17 02:08:15 2014 +0530 @@ -1,6 +1,6 @@ {% extends theme("layout.html") %} {% block content %} -<h1>{{ _("Global Views.") }}</h1> +<h1>{{ _("Global Views") }}</h1> <ul> <li><a href="{{ url_for('frontend.global_history', namespace='all') }}">{{ _("History") }}</a></li> <li><a href="{{ url_for('frontend.global_tags', namespace='all') }}">{{ _("Tags") }}</a></li>