Skip to content

Commit

Permalink
Some small translation nits
Browse files Browse the repository at this point in the history
  • Loading branch information
ppannuto committed Mar 2, 2015
1 parent e7fd217 commit ac71623
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion chezbetty/templates/deposit.jinja2
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
<div class="col-md-12">
<button type="button" id="btn-deposit-user" class="btn btn-success btn-lg btn-submit-deposit">{{ _('Deposit To Your Account') }}</button>
{% for pool in pools %}
<button type="button" id="btn-deposit-pool-{{ pool.id }}" class="btn btn-success btn-lg btn-submit-deposit">{{ _('Deposit To %(pool_name) Pool')|format(pool_name=pool.name) }}</button>
<button type="button" id="btn-deposit-pool-{{ pool.id }}" class="btn btn-success btn-lg btn-submit-deposit">{{ _('Deposit To %(pool_name)s Pool')|format(pool_name=pool.name) }}</button>
{% endfor %}
</div>
</div>
Expand Down
2 changes: 1 addition & 1 deletion chezbetty/templates/items.jinja2
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@

<div class="panel panel-default">
<div class="panel-heading">
<h3 class="panel-title">Items</h3>
<h3 class="panel-title">{{ _('Items') }}</h3>
</div>
<div class="panel-body">
<div class="row">
Expand Down
2 changes: 1 addition & 1 deletion chezbetty/templates/user.jinja2
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@

{% elif transaction.type == "adjustment" %}

{{ _('Adjustment of %(amount)s by %(admin_name) ')|format(amount=transaction.amount|format_currency, admin_name=transaction.event.admin.name)|safe }} <small id="transaction-small-{{ transaction.id }}">{{ _('touch to show') }}</small>
{{ _('Adjustment of %(amount)s by %(admin_name)s ')|format(amount=transaction.amount|format_currency, admin_name=transaction.event.admin.name)|safe }} <small id="transaction-small-{{ transaction.id }}">{{ _('touch to show') }}</small>
<span class="pull-right">{{ transaction.event.timestamp|pretty_date|safe }}</span>

<div id="transaction-{{ transaction.id }}" class="user-transaction-detail" style="display:none;">
Expand Down

0 comments on commit ac71623

Please sign in to comment.