Skip to content

Commit

Permalink
Refines Pro language
Browse files Browse the repository at this point in the history
  • Loading branch information
eamodio committed May 4, 2024
1 parent 6254998 commit ad5ea7c
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 7 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -16666,7 +16666,7 @@
},
{
"view": "gitlens.views.worktrees",
"contents": "[Upgrade to Pro](command:gitlens.plus.purchase)\n\nYour Pro trial has ended. Please upgrade to continue to use Worktrees and other Pro features on privately-hosted repos.\nSpecial: 50% off first seat of Pro — only $4/month!",
"contents": "[Upgrade to Pro](command:gitlens.plus.purchase)\n\nYour Pro trial has ended. Please upgrade for full access to Worktrees and other Pro features.\nSpecial: 50% off first seat of Pro — only $4/month!",
"when": "gitlens:plus:required && gitlens:plus:state == 4"
},
{
Expand Down
2 changes: 1 addition & 1 deletion src/plus/gk/account/subscriptionService.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1154,7 +1154,7 @@ export class SubscriptionService implements Disposable {
})}
in your **${effective.name}** trial.`
: `You have ${pluralize('day', remaining ?? 0)} remaining in your **${effective.name}** trial.`
} Once your trial ends, you'll need a paid plan to continue using Pro features.\n\nTry our
} Once your trial ends, you'll need a paid plan for full access to Pro features.\n\nTry our
[other developer tools](https://www.gitkraken.com/suite) also included in your trial.`,
true,
);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -136,9 +136,9 @@ export class FeatureGatePlusState extends LitElement {
>Upgrade to Pro</gl-button
>
<p>
Your Pro trial has ended. Please upgrade to continue to use
Your Pro trial has ended. Please upgrade for full access to
${this.featureWithArticleIfNeeded ? `${this.featureWithArticleIfNeeded} and other ` : ''}Pro
features on privately-hosted repos.
features.
</p>
<p class="special">Special: <b>50% off first seat of Pro</b> — only $4/month!<br /></p>`;

Expand Down
4 changes: 1 addition & 3 deletions src/webviews/apps/shared/components/feature-badge.ts
Original file line number Diff line number Diff line change
Expand Up @@ -245,9 +245,7 @@ export class GlFeatureBadge extends LitElement {
content = html`<p>
Your Pro trial as ended. You can now only use Pro features on publicly-hosted repos.
</p>
${this.renderUpgradeActions(
html`<p>To continue use of Pro features on privately-hosted repos:</p>`,
)}`;
${this.renderUpgradeActions(html`<p>Please upgrade for full access to Pro features:</p>`)}`;
break;

case SubscriptionState.FreePlusTrialReactivationEligible:
Expand Down

0 comments on commit ad5ea7c

Please sign in to comment.