1
0
Fork 0
mirror of https://github.com/documize/community.git synced 2025-08-01 19:45:24 +02:00

i18n doc strings

This commit is contained in:
McMatts 2022-03-09 15:20:16 -05:00
parent 371706fb49
commit bca7794c00
9 changed files with 50 additions and 32 deletions

View file

@ -1,6 +1,6 @@
{{#if (or hasAttachments canEdit)}}
<Ui::UiSpacer @size="200" />
<div class="title">attachments</div>
<div class="title">{{localize 'attachments'}}</div>
<div class="document-sidebar-attachment">
<ul class="files">
{{#each files key="id" as |file|}}
@ -14,7 +14,7 @@
<i class="dicon {{constants.Icon.Cross}}" role="button" tabindex="0" aria-haspopup="menu">
{{#attach-popover class="ember-attacher-popper" hideOn="escapekey, clickout" showOn="click" isShown=false}}
<div class="form">
<p>Are you sure you want to delete this file?</p>
<p>{{localize 'attachment_delete_confirm'}}</p>
<Ui::UiSpacer @size="100" />
{{ui/ui-button
light=false
@ -31,7 +31,7 @@
{{/each}}
{{#if canEdit}}
<li id="upload-document-files">
<i class="dicon {{constants.Icon.Plus}}" role="button" tabindex="0" title="Upload file" />
<i class="dicon {{constants.Icon.Plus}}" role="button" tabindex="0" title={{localize 'upload_attachment'}} />
</li>
{{/if}}
</ul>