Skip to content
This repository has been archived by the owner on May 28, 2019. It is now read-only.

Commit

Permalink
Fix bug 844598: Fix missed strings for translation.
Browse files Browse the repository at this point in the history
  • Loading branch information
Michael Kelly committed Mar 15, 2013
1 parent d361330 commit 37dbdcc
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
3 changes: 2 additions & 1 deletion flicks/base/templates/shared/header.html
Expand Up @@ -27,7 +27,8 @@ <h3 class="toggle">{{ _('Menu') }}</h3>
<nav id="nav-social-head" class="nav-social">
<ul>
<li id="nav-auth">
{{ flicks_browserid_button(request_args={'returnTo': request.path},
{{ flicks_browserid_button(sign_in=_('Sign in'), sign_out=_('Sign out'),
request_args={'returnTo': request.path},
form_extras={'next': request.path}) }}
</li>
<li><a href="http://vimeo.com/firefoxflicks" title="Vimeo" class="vimeo" rel="external">Vimeo</a></li>
Expand Down
4 changes: 2 additions & 2 deletions flicks/videos/templates/videos/upload.html
Expand Up @@ -91,11 +91,11 @@ <h2>{{ _('Your flick') }}</h2>

<div class="video-info">
<p class="col1">
{{ form.title.label_tag('Name your flick') }} {{ form.title }}
{{ form.title.label_tag(_('Name your flick')) }} {{ form.title }}
<em class="note">{{ _('Be concise, yet unique') }}</em>
</p>
<p class="col2">
{{ form.description.label_tag('Describe your flick') }}
{{ form.description.label_tag(_('Describe your flick')) }}
{{ form.description }}
<em class="note">{{ _('In 1-3 sentences. This is what people will see when they view or share your video.') }}</em>
</p>
Expand Down

0 comments on commit 37dbdcc

Please sign in to comment.