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

i18n section strings

This commit is contained in:
McMatts 2022-03-10 15:21:25 -05:00
parent ce9c635fb4
commit 20c9168140
7 changed files with 79 additions and 39 deletions

View file

@ -1,6 +1,6 @@
{{layout/logo-heading
title="Papertrail"
desc="Display your cloud-based logs (https://papertrailapp.com)"
title=(localize 'section_papertrail')
desc=(localize 'section_papertrail_explain')
icon=constants.Icon.Integrations}}
{{#section/base-editor document=document folder=folder page=page busy=waiting
@ -10,9 +10,8 @@
<div class="grid-cell-1">
<form {{action "auth" on="submit"}} >
<div class="form-group">
<label>Papertrail API Key</label>
<label>{{localize 'section_papertrail_key'}}</label>
{{focus-input id="papertrail-apitoken" type="password" value=config.APIToken class="form-control"}}
<small class="form-text text-muted">API Token (from your profile)</small>
</div>
{{ui/ui-button color=constants.Color.Green light=true label=(localize 'authenticate') onClick=(action "auth")}}
</form>
@ -21,19 +20,19 @@
{{#if authenticated}}
<form {{action "onAction" on="submit"}} role="form">
<div class="form-group">
<label for="papertrail-query">Search query</label>
<label for="papertrail-query">{{localize 'section_papertrail_search'}}</label>
{{input id="papertrail-query" type="text" class="form-control mousetrap" value=config.query}}
<small class="form-text text-muted">Determine which log entries you want to display e.g. bob OR ("some phrase" AND sally)</small>
<small class="form-text text-muted">{{localize 'section_papertrail_search_explain'}}</small>
</div>
<div class="form-group">
<label for="papertrail-max">Maximum results</label>
<label for="papertrail-max">{{localize 'section_papetrail_max'}}</label>
{{input id="papertrail-max" type="number" class="form-control mousetrap" value=config.max}}
<small class="form-text text-muted">How many log entries do you want?</small>
<small class="form-text text-muted">{{localize 'section_papetrail__max_explain'}}</small>
</div>
<div class="form-group">
<label for="group-dropdown">Group</label>
<label for="group-dropdown">{{localize 'section_papetrail_group'}}</label>
{{ui/ui-select id="group-dropdown" prompt="<group>" content=options.groups action=(action "onGroupsChange") optionValuePath="id" optionLabelPath="name" selection=config.group}}
<small class="form-text text-muted">Optional Papertrail group</small>
<small class="form-text text-muted">{{localize 'section_papetrail_group_explain'}}</small>
</div>
</form>
{{/if}}

View file

@ -1,37 +1,37 @@
{{#section/base-editor-inline document=document folder=folder page=page tip="Select PDF to render" isDirty=(action "isDirty") onCancel=(action "onCancel") onAction=(action "onAction")}}
{{#section/base-editor-inline document=document folder=folder page=page tip=(localize 'section_pdf') isDirty=(action "isDirty") onCancel=(action "onCancel") onAction=(action "onAction")}}
<div class="form-group">
<label for="new-space-name">PDF</label>
<label for="new-space-name">{{localize 'pdf'}}</label>
{{input type="text" class="form-control mousetrap" placeholder="click upload button below" value=pdfName readonly=true}}
<small class="form-text text-muted">First PDF uploaded will be used</small>
<small class="form-text text-muted">{{localize 'section_pdf_upload_explain'}}</small>
</div>
<div class="form-group">
<label for="new-space-name">Preview Height</label>
<label for="new-space-name">{{localize 'section_pdf_height'}}</label>
{{input type="number" class="form-control mousetrap" placeholder="e.g. 700" value=pdfOption.height}}
<small class="form-text text-muted">How tall is the PDF preview?</small>
<small class="form-text text-muted">{{localize 'section_pdf_height_explain'}}</small>
</div>
<div class="form-group">
<label for="new-space-name">Start Page</label>
<label for="new-space-name">{{localize 'section_pdf_start'}}</label>
{{input type="number" class="form-control mousetrap" placeholder="e.g. 1" value=pdfOption.startPage}}
<small class="form-text text-muted">The first page to display</small>
<small class="form-text text-muted">{{localize 'section_pdf_start_explain'}}</small>
</div>
<div class="form-group">
<label for="new-space-name">Sidebar</label>
<label for="new-space-name">{{localize 'section_pdf_sidebar'}}</label>
<select onchange={{action "onSetSidebar" value="target.value"}} class="form-control" role="button" tabindex="0">
<option value="none" selected={{is-equal pdfOption.sidebar "none"}}>
None
{{localize 'section_pdf_sidebar_none'}}
</option>
<option value="bookmarks" selected={{is-equal pdfOption.sidebar "bookmarks"}}>
Bookmarks
{{localize 'section_pdf_sidebar_bookmark'}}
</option>
<option value="thumbs" selected={{is-equal pdfOption.sidebar "thumbs"}}>
Thumbnails
{{localize 'section_pdf_sidebar_thumbnail'}}
</option>
</select>
<small class="form-text text-muted">Optionally, set sidebar content</small>
<small class="form-text text-muted">{{localize 'section_pdf_sidebar_explain'}}</small>
</div>
{{/section/base-editor-inline}}

View file

@ -1,6 +1,6 @@
{{layout/logo-heading
title="PlantUML"
desc="Create UML diagrams from a plain text language (http://plantuml.com)"
title=(localize 'section_plantuml')
desc=(localize 'section_plantuml_explain')
icon=constants.Icon.Integrations}}
{{#section/base-editor document=document folder=folder page=page busy=waiting
@ -14,15 +14,15 @@
{{#if emptyDiagram}}
<div>
<Ui::UiSpacer @size="100" />
<p>Insert sample diagrams:</p>
<p>{{localize 'insert'}}</p>
<p>
{{ui/ui-button color=constants.Color.Gray light=true label="Sequence" onClick=(action "onInsertSequence")}}
{{ui/ui-button color=constants.Color.Gray light=true label="Use Case" onClick=(action "onInsertUseCase")}}
{{ui/ui-button color=constants.Color.Gray light=true label="Class" onClick=(action "onInsertClass")}}
{{ui/ui-button color=constants.Color.Gray light=true label="Activity" onClick=(action "onInsertActivity")}}
{{ui/ui-button color=constants.Color.Gray light=true label="Activity (new syntax)" onClick=(action "onInsertActivityNew")}}
{{ui/ui-button color=constants.Color.Gray light=true label="Component" onClick=(action "onInsertComponent")}}
{{ui/ui-button color=constants.Color.Gray light=true label="State" onClick=(action "onInsertState")}}
{{ui/ui-button color=constants.Color.Gray light=true label=(localize 'section_plantuml_type_sequence') onClick=(action "onInsertSequence")}}
{{ui/ui-button color=constants.Color.Gray light=true label=(localize 'section_plantuml_type_usecase') onClick=(action "onInsertUseCase")}}
{{ui/ui-button color=constants.Color.Gray light=true label=(localize 'section_plantuml_type_class') onClick=(action "onInsertClass")}}
{{ui/ui-button color=constants.Color.Gray light=true label=(localize 'section_plantuml_type_activity') onClick=(action "onInsertActivity")}}
{{ui/ui-button color=constants.Color.Gray light=true label=(localize 'section_plantuml_type_activity2') onClick=(action "onInsertActivityNew")}}
{{ui/ui-button color=constants.Color.Gray light=true label=(localize 'section_plantuml_type_component') onClick=(action "onInsertComponent")}}
{{ui/ui-button color=constants.Color.Gray light=true label=(localize 'section_plantuml_type_state') onClick=(action "onInsertState")}}
</p>
</div>
{{/if}}