Skip to content

Commit

Permalink
tweak blurb
Browse files Browse the repository at this point in the history
  • Loading branch information
richard-cox committed Nov 27, 2023
1 parent 16d0f12 commit aa42d71
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 3 deletions.
4 changes: 3 additions & 1 deletion dashboard/pkg/epinio/l10n/en-us.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,9 @@ epinio:
intro:
dashboard: Dashboard
welcome: Welcome to {epinio}
blurb: The Application Development Engine for Kubernetes #TODO: RC
blurb:
standalone: The Application Development Engine for Kubernetes
embedded: The Development Engine for Kubernetes
description: "{epinio} takes your application from source code to deployment and enables Developers and Operators to work better together"
learnMoreLink: https://epinio.io/
learnMore: Learn more
Expand Down
6 changes: 4 additions & 2 deletions dashboard/pkg/epinio/pages/c/_cluster/dashboard.vue
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ import Banner from '@components/Banner/Banner.vue';
import { METRIC } from '@shell/config/types';
import { allHash } from '@shell/utils/promise';
import ProductName from '../../../mixins/product-name';
import { isStandalone } from '../../../utils/utils';
type ComponentService = {
name: string,
Expand Down Expand Up @@ -82,7 +83,8 @@ export default Vue.extend<any, any, any, any>({
aboutLink: !this.$store.getters['isSingleProduct'] ? createEpinioRoute('c-cluster-about', { cluster: this.$store.getters['clusterId'] }) : null,
availableCpu: 100,
availableMemory: 100,
showMetricsInfo: false
showMetricsInfo: false,
isStandalone: isStandalone(),
};
},
Expand Down Expand Up @@ -228,7 +230,7 @@ export default Vue.extend<any, any, any, any>({
</div>

<p class="head-subheader">
{{ t('epinio.intro.blurb') }}
{{ isStandalone ? t('epinio.intro.blurb.standalone') : t('epinio.intro.blurb.embedded') }}
</p>

<p>
Expand Down

0 comments on commit aa42d71

Please sign in to comment.