Fix wording

Signed-off-by: Julius Härtl <jus@bitgrid.net>
This commit is contained in:
Julius Härtl 2019-11-26 15:24:04 +01:00
parent d10b313186
commit 840f034782
No known key found for this signature in database
GPG Key ID: 4C614C6ED2CDE6DF
2 changed files with 9 additions and 6 deletions

View File

@ -5,7 +5,7 @@
<h3>{{ operation.name }}</h3> <h3>{{ operation.name }}</h3>
<small>{{ operation.description }}</small> <small>{{ operation.description }}</small>
<button v-if="colored"> <button v-if="colored">
{{ t('workflowengine', 'Create a new rule') }} {{ t('workflowengine', 'Add new flow') }}
</button> </button>
</div> </div>
<div class="actions__item_options"> <div class="actions__item_options">

View File

@ -1,10 +1,10 @@
<template> <template>
<div id="workflowengine"> <div id="workflowengine">
<div class="section"> <div class="section">
<h2>{{ t('workflowengine', 'Available actions') }}</h2> <h2>{{ t('workflowengine', 'Available flows') }}</h2>
<p v-if="scope === 0" class="settings-hint"> <p v-if="scope === 0" class="settings-hint">
<a href="https://nextcloud.com/developer/">{{ t('workflowengine', 'For details on how to write your own actions, checkout the development documentation') }}</a> <a href="https://nextcloud.com/developer/">{{ t('workflowengine', 'For details on how to write your own flow, check out the development documentation.') }}</a>
</p> </p>
<transition-group name="slide" tag="div" class="actions"> <transition-group name="slide" tag="div" class="actions">
@ -16,7 +16,7 @@
<a :key="'add'" :href="appstoreUrl" class="actions__item colored more"> <a :key="'add'" :href="appstoreUrl" class="actions__item colored more">
<div class="icon icon-add" /> <div class="icon icon-add" />
<div class="actions__item__description"> <div class="actions__item__description">
<h3>{{ t('workflowengine', 'More actions') }}</h3> <h3>{{ t('workflowengine', 'More flows') }}</h3>
<small>{{ t('workflowengine', 'Browse the app store') }}</small> <small>{{ t('workflowengine', 'Browse the app store') }}</small>
</div> </div>
</a> </a>
@ -30,9 +30,12 @@
</button> </button>
</div> </div>
<h2 class="configured-flows"> <h2 v-if="scope === 0" class="configured-flows">
{{ t('workflowengine', 'Configured flows') }} {{ t('workflowengine', 'Configured flows') }}
</h2> </h2>
<h2 v-else class="configured-flows">
{{ t('workflowengine', 'Your flows') }}
</h2>
</div> </div>
<transition-group v-if="rules.length > 0" name="slide"> <transition-group v-if="rules.length > 0" name="slide">
@ -98,7 +101,7 @@ export default {
max-width: 100vw; max-width: 100vw;
h2.configured-flows { h2.configured-flows {
margin-top: 30px; margin-top: 50px;
margin-bottom: 0; margin-bottom: 0;
} }
} }