Skip to content

Commit

Permalink
Temporary fix in template
Browse files Browse the repository at this point in the history
  • Loading branch information
amercader committed Jun 15, 2016
1 parent fa16975 commit a3c6ac5
Showing 1 changed file with 2 additions and 1 deletion.
@@ -1,4 +1,5 @@
{% set num = activities|length %}{{ ungettext("You have {num} new activity on your {site_title} dashboard", "You have {num} new activities on your {site_title} dashboard", num).format(site_title=g.site_title, num=num) }} {{ _('To view your dashboard, click on this link:') }}
{# TODO: check usage on ungettext vs ngettext in Flask/Pylons #}
{% set num = activities|length %}{{ ngettext("You have {num} new activity on your {site_title} dashboard", "You have {num} new activities on your {site_title} dashboard", num).format(site_title=g.site_title, num=num) }} {{ _('To view your dashboard, click on this link:') }}

{{ g.site_url + '/dashboard' }}

Expand Down

0 comments on commit a3c6ac5

Please sign in to comment.