Allow translation of “Uploading file:”.

This commit is contained in:
Emmanuel Gil Peyrot 2018-11-02 03:50:02 +01:00 committed by JC Brand
parent f974c79acf
commit 73e2d44d22
2 changed files with 4 additions and 2 deletions

4
dist/converse.js vendored
View File

@ -101772,7 +101772,9 @@ __p += '<!-- src/templates/file_progress.html -->\n<div class="message chat-msg"
__e(o.time) + __e(o.time) +
'" data-msgid="' + '" data-msgid="' +
__e(o.msgid) + __e(o.msgid) +
'">\n <canvas class="avatar chat-msg__avatar" height="36" width="36"></canvas>\n <div class="chat-msg__content">\n <span class="chat-msg__text">Uploading file: <strong>' + '">\n <canvas class="avatar chat-msg__avatar" height="36" width="36"></canvas>\n <div class="chat-msg__content">\n <span class="chat-msg__text">' +
__e(o.__('Uploading file:')) +
' <strong>' +
__e(o.filename) + __e(o.filename) +
'</strong>, ' + '</strong>, ' +
__e(o.filesize) + __e(o.filesize) +

View File

@ -1,7 +1,7 @@
<div class="message chat-msg" data-isodate="{{{o.time}}}" data-msgid="{{{o.msgid}}}"> <div class="message chat-msg" data-isodate="{{{o.time}}}" data-msgid="{{{o.msgid}}}">
<canvas class="avatar chat-msg__avatar" height="36" width="36"></canvas> <canvas class="avatar chat-msg__avatar" height="36" width="36"></canvas>
<div class="chat-msg__content"> <div class="chat-msg__content">
<span class="chat-msg__text">Uploading file: <strong>{{{o.filename}}}</strong>, {{{o.filesize}}}</span> <span class="chat-msg__text">{{{o.__('Uploading file:')}}} <strong>{{{o.filename}}}</strong>, {{{o.filesize}}}</span>
<progress value="{{{o.progress}}}"/> <progress value="{{{o.progress}}}"/>
</div> </div>
</div> </div>