Skip to content

Commit efb42e4

Browse files
gtsiolisroboquat
authored andcommitted
Rename teams to team plans
1 parent 94f054e commit efb42e4

File tree

2 files changed

+9
-9
lines changed

2 files changed

+9
-9
lines changed

components/dashboard/src/settings/Teams.tsx

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -428,7 +428,7 @@ function AllTeams() {
428428
<div className="flex flex-row">
429429
<div className="flex-grow ">
430430
<h3 className="self-center">All Teams</h3>
431-
<h2>Manage teams and team members.</h2>
431+
<h2>Manage team plan and team members.</h2>
432432
</div>
433433
<div className="flex flex-end space-x-3">
434434
{isChargebeeCustomer && (
@@ -459,9 +459,9 @@ function AllTeams() {
459459
{(getActiveSubs().length === 0 && !pendingPlanPurchase) && (
460460
<div className="w-full flex h-80 mt-2 rounded-xl bg-gray-100 dark:bg-gray-900">
461461
<div className="m-auto text-center">
462-
<h3 className="self-center text-gray-500 dark:text-gray-400 mb-4">No Active Teams</h3>
463-
<div className="text-gray-500 mb-6">Get started by creating a team<br /> and adding team members. <a href="https://www.gitpod.io/docs/teams/" target="_blank" rel="noopener" className="gp-link">Learn more</a></div>
464-
<button className="self-center" onClick={() => showCreateTeamModal()}>Create Team</button>
462+
<h3 className="self-center text-gray-500 dark:text-gray-400 mb-4">No Active Team Plans</h3>
463+
<div className="text-gray-500 mb-6">Get started by creating a team plan<br /> and adding team members. <a href="https://www.gitpod.io/docs/teams/" target="_blank" rel="noopener" className="gp-link">Learn more</a></div>
464+
<button className="self-center" onClick={() => showCreateTeamModal()}>Create Team Plan</button>
465465
</div>
466466
</div>
467467
)}
@@ -526,7 +526,7 @@ function AllTeams() {
526526
<div className="flex flex-row">
527527
<div className="flex-grow ">
528528
<h3 className="self-center">All Teams</h3>
529-
<h2>Manage teams and team members.</h2>
529+
<h2>Manage team plans and team members.</h2>
530530
</div>
531531
</div>
532532
)}
@@ -609,7 +609,7 @@ function AddMembersModal(props: {
609609
return (<Modal visible={true} onClose={props.onClose}>
610610
<h3 className="pb-2">Add Members</h3>
611611
<div className="border-t border-b border-gray-200 dark:border-gray-800 mt-2 -mx-6 px-6 py-4">
612-
<p className="pb-4 text-gray-500 text-base">Add members to the team.</p>
612+
<p className="pb-4 text-gray-500 text-base">Add members to the team plan.</p>
613613

614614
<div className="flex flex-col space-y-2 pb-4">
615615
<label htmlFor="quantity" className="font-medium">Members</label>
@@ -662,9 +662,9 @@ function NewTeamModal(props: {
662662
}
663663

664664
return (<Modal visible={true} onClose={props.onClose}>
665-
<h3 className="pb-2">New Team</h3>
665+
<h3 className="pb-2">New Team Plan</h3>
666666
<div className="border-t border-b border-gray-200 dark:border-gray-800 mt-2 -mx-6 px-6 py-4 space-y-2">
667-
<p className="pb-4 text-gray-500 text-base">Create a team and add team members.</p>
667+
<p className="pb-4 text-gray-500 text-base">Create a team plan and add team members.</p>
668668

669669
<div className="flex flex-col space-y-2">
670670
<label htmlFor="type" className="font-medium">Team</label>

components/dashboard/src/settings/settings-menu.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ export default [
1818
link: ['/plans']
1919
},
2020
{
21-
title: 'Teams',
21+
title: 'Team Plans',
2222
link: ['/teams']
2323
},
2424
{

0 commit comments

Comments
 (0)