Skip to content

Commit a0693f3

Browse files
authored
[server] Polish notification texts (#16659)
1 parent 5c90cd5 commit a0693f3

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

components/server/ee/src/workspace/gitpod-server-impl.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2598,7 +2598,7 @@ export class GitpodServerEEImpl extends GitpodServerImpl {
25982598
? `/switch-to-payg?personalSubscription=${personalSubscription.uid}`
25992599
: "https://www.gitpod.io/docs/configure/billing#configure-personal-billing";
26002600
result.unshift({
2601-
message: `Your old subscription '${plan.name}' will be deprecated end of March.`,
2601+
message: `Your personal '${plan.name}' subscription will be discontinued on March, 31st.`,
26022602
action: {
26032603
url,
26042604
label: "Switch to pay-as-you-go",
@@ -2615,7 +2615,7 @@ export class GitpodServerEEImpl extends GitpodServerImpl {
26152615
? `/switch-to-payg?teamSubscription=${ownedTeamSubscription.id}`
26162616
: "https://www.gitpod.io/docs/configure/billing/org-plans";
26172617
result.unshift({
2618-
message: `Your old Team Subscription '${plan.name}' will be deprecated soon.`,
2618+
message: `Your Team Subscription '${plan.name}' will be discontinued on March, 31st.`,
26192619
action: {
26202620
url,
26212621
label: "Switch to pay-as-you-go",
@@ -2632,7 +2632,7 @@ export class GitpodServerEEImpl extends GitpodServerImpl {
26322632
? `/switch-to-payg?teamSubscription2=${ownedTeamSubscription2.id}`
26332633
: "https://www.gitpod.io/docs/configure/billing#configure-organization-billing";
26342634
result.unshift({
2635-
message: `The subscription '${plan.name}' for team '${team.name}' will be deprecated soon.`,
2635+
message: `Your '${plan.name}' subscription for Organization '${team.name}' will be discontinued on March, 31st.`,
26362636
action: {
26372637
url,
26382638
label: "Switch to pay-as-you-go",

0 commit comments

Comments
 (0)