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 15:20:16 -05:00
parent 371706fb49
commit bca7794c00
9 changed files with 50 additions and 32 deletions

View file

@ -33,21 +33,21 @@
{{#if canEdit}}
<div class="start-section">
<i class="dicon {{constants.Icon.Plus}}" {{action "onShowSectionWizard"}} title="Insert section here" role="button" tabindex="0" />
<i class="dicon {{constants.Icon.Plus}}" {{action "onShowSectionWizard"}} title={{localize 'section_insert_here'}} role="button" tabindex="0" />
</div>
{{/if}}
{{#if showLikes}}
<div class="vote-box no-print">
{{#if voteThanks}}
<div class="thanks">Thanks for the feedback!</div>
<div class="thanks">{{localize 'feedback_thanks'}}</div>
{{else}}
<div class="prompt">{{folder.likes}}</div>
<Ui::UiSpacer @size="200" />
<div class="buttons">
{{ui/ui-button color=constants.Color.Yellow light=true label="Yes, thanks!" onClick=(action "onVote" 1)}}
{{ui/ui-button color=constants.Color.Yellow light=true label=(localize 'feedback_help_yes') onClick=(action "onVote" 1)}}
{{ui/ui-button-gap}}
{{ui/ui-button color=constants.Color.Yellow light=true label="Not really" onClick=(action "onVote" 2)}}
{{ui/ui-button color=constants.Color.Yellow light=true label=(localize 'feedback_help_no') onClick=(action "onVote" 2)}}
</div>
{{/if}}
</div>