Fix untranslatable strings

This commit is contained in:
rubenwardy 2023-01-08 12:21:25 +00:00
parent 008e6ba2e6
commit 0a6e3237b1
2 changed files with 3 additions and 3 deletions

@ -53,7 +53,7 @@
{% set message %}
{% if package.screenshots.count() == 0 %}
<b>
{{ _("You should add at least one screenshot, but this isn't required.") }}
{{ _("You should add at least one screenshot.") }}
</b><br />
{% endif %}

@ -33,10 +33,10 @@ Remove {{ package.title }}
<a class="btn btn-secondary float-right" href="{{ package.getURL("packages.view") }}">{{ _("Cancel") }}</a>
<input type="submit" name="delete" value="Remove" class="btn btn-danger mr-2" />
<input type="submit" name="delete" value="{{ _('Remove') }}" class="btn btn-danger mr-2" />
{% if package.approved %}
<input type="submit" name="unapprove" value="Unapprove" class="btn btn-warning" />
<input type="submit" name="unapprove" value="{{ _('Unapprove') }}" class="btn btn-warning" />
{% endif %}
</form>
{% endblock %}