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)) { %}
|
{% if (!o.options.autoUpload && o.options.edit && o.options.loadImageFileTypes.test(file.type)) { %}
|
||||||
<button class="btn btn-success edit" data-index="{%=i%}" disabled>
|
<button class="btn btn-success edit" data-index="{%=i%}" disabled>
|
||||||
<i class="glyphicon glyphicon-edit"></i>
|
<i class="glyphicon glyphicon-edit"></i>
|
||||||
<span>Edit</span>
|
<span>{% endverbatim %}{{ 'common.edit'|trans }} {% verbatim %}</span>
|
||||||
</button>
|
</button>
|
||||||
{% } %}
|
{% } %}
|
||||||
{% if (!i && !o.options.autoUpload) { %}
|
{% if (!i && !o.options.autoUpload) { %}
|
||||||
<button class="btn btn-primary start" disabled>
|
<button class="btn btn-primary start" disabled>
|
||||||
<i class="glyphicon glyphicon-upload"></i>
|
<i class="glyphicon glyphicon-upload"></i>
|
||||||
<span>Start</span>
|
<span> {% endverbatim %} {{ 'common.start'|trans }} {% verbatim %} </span>
|
||||||
</button>
|
</button>
|
||||||
{% } %}
|
{% } %}
|
||||||
</td>
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
{% } %}
|
{% } %}
|
||||||
</script>
|
</script>
|
||||||
|
{% endverbatim %}
|
||||||
<!-- The template to display files available for download -->
|
<!-- The template to display files available for download -->
|
||||||
|
{% verbatim %}
|
||||||
<script id="template-download" type="text/x-tmpl">
|
<script id="template-download" type="text/x-tmpl">
|
||||||
{% for (var i=0, file; file=o.files[i]; i++) { %}
|
{% for (var i=0, file; file=o.files[i]; i++) { %}
|
||||||
<tr class="template-download">
|
<tr class="template-download">
|
||||||
|
@ -290,7 +292,7 @@
|
||||||
</p>
|
</p>
|
||||||
{% } %}
|
{% } %}
|
||||||
{% if (file.error) { %}
|
{% 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>
|
||||||
<td>
|
<td>
|
||||||
|
@ -300,13 +302,13 @@
|
||||||
{% if (file.deleteUrl) { %}
|
{% 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}'{% } %}>
|
<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>
|
<i class="glyphicon glyphicon-trash"></i>
|
||||||
<span>Delete</span>
|
<span>{% endverbatim %}{{ 'common.delete'|trans }} {% verbatim %}</span>
|
||||||
</button>
|
</button>
|
||||||
<input type="checkbox" name="delete" value="1" class="toggle">
|
<input type="checkbox" name="delete" value="1" class="toggle">
|
||||||
{% } else { %}
|
{% } else { %}
|
||||||
<button class="btn btn-warning cancel">
|
<button class="btn btn-warning cancel">
|
||||||
<i class="glyphicon glyphicon-ban-circle"></i>
|
<i class="glyphicon glyphicon-ban-circle"></i>
|
||||||
<span>Cancel</span>
|
<span>{% endverbatim %}{{ 'common.cancel'|trans }} {% verbatim %}</span>
|
||||||
</button>
|
</button>
|
||||||
{% } %}
|
{% } %}
|
||||||
</td>
|
</td>
|
||||||
|
|
|
@ -16,11 +16,14 @@ common:
|
||||||
delete_message: You are about to delete
|
delete_message: You are about to delete
|
||||||
cancel: Cancel
|
cancel: Cancel
|
||||||
delete: Delete
|
delete: Delete
|
||||||
|
edit: Edit
|
||||||
|
start: Start
|
||||||
proceed_confirm: Do you want to proceed?
|
proceed_confirm: Do you want to proceed?
|
||||||
start_upload: Start upload
|
start_upload: Start upload
|
||||||
counter: Counter
|
counter: Counter
|
||||||
license: License
|
license: License
|
||||||
author: Author
|
author: Author
|
||||||
|
error: Error
|
||||||
status:
|
status:
|
||||||
visibility:
|
visibility:
|
||||||
public: Public
|
public: Public
|
||||||
|
|
Loading…
Add table
Reference in a new issue