Skip to content

Commit

Permalink
Fixed dataset state translation
Browse files Browse the repository at this point in the history
The dataset state was not translated on the dataset details
page....Fixed it.
  • Loading branch information
andreivicentiuhincu committed Jan 22, 2015
1 parent a7f6182 commit 6e57d3e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ckan/templates/package/snippets/additional_info.html
Expand Up @@ -54,7 +54,7 @@ <h3>{{ _('Additional Info') }}</h3>
{% if h.check_access('package_update',{'id':pkg_dict.id}) %}
<tr>
<th scope="row" class="dataset-label">{{ _("State") }}</th>
<td class="dataset-details">{{ pkg_dict.state }}</td>
<td class="dataset-details">{{ _(pkg_dict.state) }}</td>
</tr>
{% endif %}
{% if pkg_dict.metadata_modified %}
Expand Down

0 comments on commit 6e57d3e

Please sign in to comment.