mirror of
https://github.com/minetest/contentdb.git
synced 2025-01-03 19:57:29 +01:00
Fix untranslatable strings
This commit is contained in:
parent
008e6ba2e6
commit
0a6e3237b1
@ -53,7 +53,7 @@
|
|||||||
{% set message %}
|
{% set message %}
|
||||||
{% if package.screenshots.count() == 0 %}
|
{% if package.screenshots.count() == 0 %}
|
||||||
<b>
|
<b>
|
||||||
{{ _("You should add at least one screenshot, but this isn't required.") }}
|
{{ _("You should add at least one screenshot.") }}
|
||||||
</b><br />
|
</b><br />
|
||||||
{% endif %}
|
{% endif %}
|
||||||
|
|
||||||
|
@ -33,10 +33,10 @@ Remove {{ package.title }}
|
|||||||
|
|
||||||
<a class="btn btn-secondary float-right" href="{{ package.getURL("packages.view") }}">{{ _("Cancel") }}</a>
|
<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 %}
|
{% 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 %}
|
{% endif %}
|
||||||
</form>
|
</form>
|
||||||
{% endblock %}
|
{% endblock %}
|
||||||
|
Loading…
Reference in New Issue
Block a user