Use generic 'Upgrade' term instead of plan names
This commit is contained in:
@@ -95,7 +95,7 @@ onMounted(async () => {
|
||||
|
||||
<template>
|
||||
<div class="content">
|
||||
<Section :title="$t('branding.title')" :title-badge="!features.branding ? 'Pro' : ''">
|
||||
<Section :title="$t('branding.title')" :title-badge="!features.branding ? 'Upgrade' : ''">
|
||||
<div style="display: flex; justify-content: space-around; margin-bottom: 20px;">
|
||||
<div style="display: flex; flex-direction: column; align-content: stretch; align-items: center;">
|
||||
<label>{{ $t('branding.logo') }}</label>
|
||||
|
||||
@@ -343,7 +343,7 @@ onMounted(async () => {
|
||||
</Section>
|
||||
|
||||
<!-- TODO translation -->
|
||||
<Section title="Receiving" :padding="false" v-if="!busyRefresh" :title-badge="!features.emailServer ? 'Pro' : ''">
|
||||
<Section title="Receiving" :padding="false" v-if="!busyRefresh" :title-badge="!features.emailServer ? 'Upgrade' : ''">
|
||||
<SettingsItem>
|
||||
<FormGroup>
|
||||
<label>{{ $t('email.incoming.title') }}</label>
|
||||
|
||||
@@ -51,7 +51,7 @@ onMounted(async () => {
|
||||
|
||||
<template>
|
||||
<div class="content">
|
||||
<Section :title="$t('users.title')" :padding="false" :title-badge="!features.profileConfig ? 'Pro' : ''">
|
||||
<Section :title="$t('users.title')" :padding="false" :title-badge="!features.profileConfig ? 'Upgrade' : ''">
|
||||
<SettingsItem>
|
||||
<div>{{ $t('users.settings.allowProfileEditCheckbox') }} <sup><a href="https://docs.cloudron.io/user-directory/#lock-profile" target="_blank"><i class="fa fa-question-circle"></i></a></sup></div>
|
||||
<Switch v-model="editableUserProfiles" @change="onToggleEditableUserProfiles" :disabled="busy || !features.profileConfig"/>
|
||||
|
||||
@@ -270,7 +270,7 @@ onMounted(async () => {
|
||||
<div>{{ $t('users.users.count', { count: users.length }) }}</div>
|
||||
</Section>
|
||||
|
||||
<Section :title="$t('users.groups.title')" :title-badge="!features.userGroups ? 'Pro' : ''">
|
||||
<Section :title="$t('users.groups.title')" :title-badge="!features.userGroups ? 'Upgrade' : ''">
|
||||
<template #header-buttons>
|
||||
<Button icon="fa-solid fa-plus" @click="onEditOrAddGroup()">{{ $t('users.groups.newGroupAction') }}</Button>
|
||||
</template>
|
||||
|
||||
Reference in New Issue
Block a user