Fix untranslatable strings
This commit is contained in:
@@ -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 %}
|
||||
|
||||
Reference in New Issue
Block a user