1
0
Fork 0
mirror of https://github.com/documize/community.git synced 2025-07-24 15:49:44 +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,19 +1,19 @@
{{layout/logo-heading
title="Content Settings"
desc="Set name, description and lifecycle stage"
title=(localize 'content')
desc=(localize 'setings')
icon=constants.Icon.Settings}}
<form class="view-document">
<div class="form-group">
<label for="document-name">Name</label>
<label for="document-name">{{localize 'name'}}</label>
{{focus-input id="document-name" type="text" value=docName
class=(if hasNameError "form-control mousetrap is-invalid" "form-control mousetrap") placeholder="Title" autocomplete="off"}}
class=(if hasNameError "form-control mousetrap is-invalid" "form-control mousetrap") placeholder="" autocomplete="off"}}
</div>
<div class="form-group">
<label for="document-excerpt">Description</label>
{{textarea id="document-excerpt" rows="4" value=docExcerpt class="form-control mousetrap" placeholder="Excerpt" autocomplete="off"}}
<small class="form-text text-muted">Optional description explaining content</small>
<label for="document-excerpt">{{localize 'description'}}</label>
{{textarea id="document-excerpt" rows="4" value=docExcerpt class="form-control mousetrap" placeholder="" autocomplete="off"}}
<small class="form-text text-muted">{{localize 'excerpt'}}</small>
</div>
{{ui/ui-button