1
0
Fork 0
mirror of https://github.com/documize/community.git synced 2025-08-02 20:15:26 +02:00

i18n space strings

This commit is contained in:
McMatts 2022-03-08 12:50:34 -05:00
parent 4885a1b380
commit 97c4c927ac
6 changed files with 36 additions and 21 deletions

View file

@ -1,13 +1,13 @@
{{layout/logo-heading
title="Delete Space"
desc="Proceed with caution as there is no undo"
title=(localize 'delete_space')
desc=(localize 'no_undo')
icon=constants.Icon.Delete}}
<form>
<div class="form-group">
<label>Please type space name to confirm</label>
{{focus-input id="delete-space-name" type="text" value=deleteSpaceName class="form-control mousetrap" placeholder="Space name" autocomplete="off"}}
<small class="form-text text-muted">This will delete all documents and templates within this space!</small>
<label>{{localize 'space_delete_prompt'}}</label>
{{focus-input id="delete-space-name" type="text" value=deleteSpaceName class="form-control mousetrap" placeholder=(localize 'name') autocomplete="off"}}
<small class="form-text text-muted">{{localize 'space_delete_warn'}}</small>
</div>
</form>