1
0
Fork 0
mirror of https://github.com/documize/community.git synced 2025-08-02 12:05:23 +02:00

i18n doc strings

This commit is contained in:
McMatts 2022-03-09 14:04:17 -05:00
parent a236cbb01c
commit 371706fb49
5 changed files with 100 additions and 70 deletions

View file

@ -16,7 +16,7 @@
{{#ui/ui-toolbar-icon icon=constants.Icon.Delete color=constants.Color.Red}}
{{#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
@ -34,6 +34,6 @@
{{/each}}
</ul>
{{#ui/ui-dialog title="Delete Attachment" confirmCaption=(localize 'delete') buttonColor=constants.Color.Red show=showDialog onAction=(action "onDelete")}}
<p>Are you sure you want to delete this attachment?</p>
{{#ui/ui-dialog title=(localize 'attachment_delete') confirmCaption=(localize 'delete') buttonColor=constants.Color.Red show=showDialog onAction=(action "onDelete")}}
<p>{{localize 'attachment_delete_confirm'}}</p>
{{/ui/ui-dialog}}