diff --git a/.github/ISSUE_TEMPLATE/config.yml b/.github/ISSUE_TEMPLATE/config.yml
index 30cfda1..5fe21ad 100644
--- a/.github/ISSUE_TEMPLATE/config.yml
+++ b/.github/ISSUE_TEMPLATE/config.yml
@@ -8,4 +8,4 @@ contact_links:
about: Read the GitLens support documentation
- name: GitKraken Support
url: https://gitkraken.com/gitlens-support
- about: Get email support for issues and questions on paid features or relating to your GitKraken account or subscription
+ about: Get email support for issues and questions on paid features or relating to your GitKraken account or plan
diff --git a/package.json b/package.json
index fc1f878..21a2020 100644
--- a/package.json
+++ b/package.json
@@ -3937,7 +3937,7 @@
"gitlens.plusFeatures.enabled": {
"type": "boolean",
"default": true,
- "markdownDescription": "Specifies whether to hide or show features that require a trial or paid subscription and are not accessible given the opened repositories and current trial or subscription",
+ "markdownDescription": "Specifies whether to hide or show features that require a trial or paid plan and are not accessible given the opened repositories and current trial or plan",
"scope": "window",
"order": 60
},
@@ -14134,12 +14134,12 @@
},
{
"view": "gitlens.views.workspaces",
- "contents": "[Create Cloud Workspace](command:gitlens.views.workspaces.create)\n\n☁️ Access is based on your subscription, e.g. Free, Pro, etc",
+ "contents": "[Create Cloud Workspace](command:gitlens.views.workspaces.create)\n\n☁️ Access is based on your plan, e.g. Free, Pro, etc",
"when": "gitlens:plus"
},
{
"view": "gitlens.views.workspaces",
- "contents": "[Start Free Pro Trial](command:gitlens.plus.loginOrSignUp)\n\nStart a free 7-day Pro trial to use GitKraken Workspaces, or [sign in](command:gitlens.plus.loginOrSignUp).\n☁️ Requires an account and access is based on your subscription, e.g. Free, Pro, etc",
+ "contents": "[Start Free Pro Trial](command:gitlens.plus.loginOrSignUp)\n\nStart a free 7-day Pro trial to use GitKraken Workspaces, or [sign in](command:gitlens.plus.loginOrSignUp).\n☁️ Requires an account and access is based on your plan, e.g. Free, Pro, etc",
"when": "!gitlens:plus"
},
{
@@ -14159,17 +14159,17 @@
},
{
"view": "gitlens.views.worktrees",
- "contents": "[Preview Pro](command:gitlens.plus.startPreviewTrial)\n\nPreview Pro for 3 days, or [sign in](command:gitlens.plus.loginOrSignUp) to start a full 7-day Pro trial.\n✨ A trial or paid subscription is required to use this on privately hosted repos.",
+ "contents": "[Preview Pro](command:gitlens.plus.startPreviewTrial)\n\nPreview Pro for 3 days, or [sign in](command:gitlens.plus.loginOrSignUp) to start a full 7-day Pro trial.\n✨ A trial or paid plan is required to use this on privately hosted repos.",
"when": "gitlens:plus:required && gitlens:plus:state == 0"
},
{
"view": "gitlens.views.worktrees",
- "contents": "Your 3-day Pro preview has ended, start a free Pro trial to get an additional 7 days, or [sign in](command:gitlens.plus.loginOrSignUp).\n\n[Start Free Pro Trial](command:gitlens.plus.loginOrSignUp)\n✨ A trial or paid subscription is required to use this on privately hosted repos.",
+ "contents": "Your 3-day Pro preview has ended, start a free Pro trial to get an additional 7 days, or [sign in](command:gitlens.plus.loginOrSignUp).\n\n[Start Free Pro Trial](command:gitlens.plus.loginOrSignUp)\n✨ A trial or paid plan is required to use this on privately hosted repos.",
"when": "gitlens:plus:required && gitlens:plus:state == 2"
},
{
"view": "gitlens.views.worktrees",
- "contents": "Your Pro trial has ended, please upgrade to continue to use this on privately hosted repos.\n\n[Upgrade to Pro](command:gitlens.plus.purchase)\n✨ A paid subscription is required to use this on privately hosted repos.",
+ "contents": "Your Pro trial has ended, please upgrade to continue to use this on privately hosted repos.\n\n[Upgrade to Pro](command:gitlens.plus.purchase)\n✨ A paid plan is required to use this on privately hosted repos.",
"when": "gitlens:plus:required && gitlens:plus:state == 4"
}
],
@@ -14434,7 +14434,7 @@
{
"id": "gitlens.welcome.trial",
"title": "Trialing GitLens Pro",
- "description": "During your trial, you have access to ✨ features on privately hosted repos and ☁️ features based on the Pro tier. [Learn more](https://www.gitkraken.com/gitlens/plus-features)\n\n[Upgrade to Pro](command:gitlens.plus.purchase)",
+ "description": "During your trial, you have access to ✨ features on privately hosted repos and ☁️ features based on the Pro plan. [Learn more](https://www.gitkraken.com/gitlens/plus-features)\n\n[Upgrade to Pro](command:gitlens.plus.purchase)",
"media": {
"markdown": "walkthroughs/welcome/trial.md"
},
diff --git a/src/commands/quickCommand.steps.ts b/src/commands/quickCommand.steps.ts
index 5c27ffd..3af8cd2 100644
--- a/src/commands/quickCommand.steps.ts
+++ b/src/commands/quickCommand.steps.ts
@@ -2425,9 +2425,9 @@ export async function* ensureAccessStep<
} else {
if (access.subscription.required == null) return undefined;
- placeholder = '✨ Requires a trial or paid subscription for use on privately hosted repos';
+ placeholder = '✨ Requires a trial or paid plan for use on privately hosted repos';
if (isSubscriptionPaidPlan(access.subscription.required) && access.subscription.current.account != null) {
- placeholder = '✨ Requires a paid subscription for use on privately hosted repos';
+ placeholder = '✨ Requires a paid plan for use on privately hosted repos';
directives.push(createDirectiveQuickPickItem(Directive.RequiresPaidSubscription, true));
} else if (
access.subscription.current.account == null &&
diff --git a/src/errors.ts b/src/errors.ts
index 7dbbfb3..0e4f72c 100644
--- a/src/errors.ts
+++ b/src/errors.ts
@@ -12,9 +12,9 @@ export class AccessDeniedError extends Error {
if (subscription.account?.verified === false) {
message = 'Email verification required';
} else if (required != null && isSubscriptionPaidPlan(required)) {
- message = 'Paid subscription required';
+ message = 'Paid plan required';
} else {
- message = 'Subscription required';
+ message = 'Plan required';
}
super(message);
diff --git a/src/git/remotes/richRemoteProvider.ts b/src/git/remotes/richRemoteProvider.ts
index b850e3e..eed17c8 100644
--- a/src/git/remotes/richRemoteProvider.ts
+++ b/src/git/remotes/richRemoteProvider.ts
@@ -509,7 +509,7 @@ export abstract class RichRemoteProvider extends RemoteProvider {
}
export async function ensurePaidPlan(providerName: string, container: Container): Promise
- ✨ Requires a trial or paid subscription to use this on privately hosted repos.
You only have access to ✨ features on local and publicly hosted repos and ☁️ features based on
- your subscription, e.g. Free, Pro, etc.
+ your plan, e.g. Free, Pro, etc.
- You have access to ✨ features on privately hosted repos and ☁️ features based on the Pro tier
+ You have access to ✨ features on privately hosted repos and ☁️ features based on the Pro plan
during your trial.
- You have access to ✨ features on privately hosted repos and ☁️ features based on your
- subscription.
- You have access to ✨ features on privately hosted repos and ☁️ features based on your plan.
- ☁️ Requires an account and access is based on your subscription, e.g. Free, Pro, etc
+ ✨ Requires a trial or paid plan to use this on privately hosted repos.
+ ☁️ Requires an account and access is based on your plan, e.g. Free, Pro, etc
✨ A trial or paid subscription is required to use this on privately hosted repos.
+✨ A trial or paid plan is required to use this on privately hosted repos.
`; case SubscriptionState.FreePreviewTrialExpired: @@ -90,7 +90,7 @@ export class FeatureGatePlusState extends LitElement {✨ A trial or paid subscription is required to use this on privately hosted repos.
+✨ A trial or paid plan is required to use this on privately hosted repos.
`; case SubscriptionState.FreePlusTrialExpired: @@ -99,7 +99,7 @@ export class FeatureGatePlusState extends LitElement {✨ A paid subscription is required to use this on privately hosted repos.
+✨ A paid plan is required to use this on privately hosted repos.
`; } diff --git a/src/webviews/apps/settings/partials/commit-graph.html b/src/webviews/apps/settings/partials/commit-graph.html index bc6c488..8da5004 100644 --- a/src/webviews/apps/settings/partials/commit-graph.html +++ b/src/webviews/apps/settings/partials/commit-graph.html @@ -1,9 +1,7 @@✨ require a trial or paid subscriptiontrial or paid plan
for use on privately hosted repos