mirror of
https://framagit.org/tom79/fediplan.git
synced 2025-04-05 21:51:50 +02:00
Missing translations for upload
This commit is contained in:
parent
d6ebe853fb
commit
974cc766ee
2 changed files with 10 additions and 5 deletions
|
@ -255,20 +255,22 @@
|
|||
{% if (!o.options.autoUpload && o.options.edit && o.options.loadImageFileTypes.test(file.type)) { %}
|
||||
<button class="btn btn-success edit" data-index="{%=i%}" disabled>
|
||||
<i class="glyphicon glyphicon-edit"></i>
|
||||
<span>Edit</span>
|
||||
<span>{% endverbatim %}{{ 'common.edit'|trans }} {% verbatim %}</span>
|
||||
</button>
|
||||
{% } %}
|
||||
{% if (!i && !o.options.autoUpload) { %}
|
||||
<button class="btn btn-primary start" disabled>
|
||||
<i class="glyphicon glyphicon-upload"></i>
|
||||
<span>Start</span>
|
||||
<span> {% endverbatim %} {{ 'common.start'|trans }} {% verbatim %} </span>
|
||||
</button>
|
||||
{% } %}
|
||||
</td>
|
||||
</tr>
|
||||
{% } %}
|
||||
</script>
|
||||
{% endverbatim %}
|
||||
<!-- The template to display files available for download -->
|
||||
{% verbatim %}
|
||||
<script id="template-download" type="text/x-tmpl">
|
||||
{% for (var i=0, file; file=o.files[i]; i++) { %}
|
||||
<tr class="template-download">
|
||||
|
@ -290,7 +292,7 @@
|
|||
</p>
|
||||
{% } %}
|
||||
{% if (file.error) { %}
|
||||
<div><span class="label label-danger">Error</span> {%=file.error%}</div>
|
||||
<div><span class="label label-danger">{% endverbatim %}{{ 'common.error'|trans }} {% verbatim %}</span> {%=file.error%}</div>
|
||||
{% } %}
|
||||
</td>
|
||||
<td>
|
||||
|
@ -300,13 +302,13 @@
|
|||
{% if (file.deleteUrl) { %}
|
||||
<button class="btn btn-danger delete" data-type="{%=file.deleteType%}" data-url="{%=file.deleteUrl%}"{% if (file.deleteWithCredentials) { %} data-xhr-fields='{"withCredentials":true}'{% } %}>
|
||||
<i class="glyphicon glyphicon-trash"></i>
|
||||
<span>Delete</span>
|
||||
<span>{% endverbatim %}{{ 'common.delete'|trans }} {% verbatim %}</span>
|
||||
</button>
|
||||
<input type="checkbox" name="delete" value="1" class="toggle">
|
||||
{% } else { %}
|
||||
<button class="btn btn-warning cancel">
|
||||
<i class="glyphicon glyphicon-ban-circle"></i>
|
||||
<span>Cancel</span>
|
||||
<span>{% endverbatim %}{{ 'common.cancel'|trans }} {% verbatim %}</span>
|
||||
</button>
|
||||
{% } %}
|
||||
</td>
|
||||
|
|
|
@ -16,11 +16,14 @@ common:
|
|||
delete_message: You are about to delete
|
||||
cancel: Cancel
|
||||
delete: Delete
|
||||
edit: Edit
|
||||
start: Start
|
||||
proceed_confirm: Do you want to proceed?
|
||||
start_upload: Start upload
|
||||
counter: Counter
|
||||
license: License
|
||||
author: Author
|
||||
error: Error
|
||||
status:
|
||||
visibility:
|
||||
public: Public
|
||||
|
|
Loading…
Add table
Reference in a new issue