mirror of https://github.com/harness/drone.git
feat: [CDE-494]: Changed the text for tooltip and made UI changes (#2999)
* Changed the text for tooltip * Changed the text for tooltippull/3590/head
parent
ab72ca9185
commit
0ce059820c
|
@ -176,9 +176,6 @@ export const DetailsCard = ({
|
||||||
<Text font="small" color={Color.WHITE}>
|
<Text font="small" color={Color.WHITE}>
|
||||||
{getString('cde.changesTooltip.description')}
|
{getString('cde.changesTooltip.description')}
|
||||||
</Text>
|
</Text>
|
||||||
<Text color={Color.PRIMARY_7} font="small" style={{ cursor: 'pointer' }}>
|
|
||||||
{getString('cde.changesTooltip.learnMore')}
|
|
||||||
</Text>
|
|
||||||
</Layout.Vertical>
|
</Layout.Vertical>
|
||||||
</Container>
|
</Container>
|
||||||
}
|
}
|
||||||
|
|
|
@ -44,10 +44,6 @@ export interface GitspaceStatusTypesListItem {
|
||||||
}
|
}
|
||||||
|
|
||||||
export const GitspaceStatusTypes = (getString: any) => [
|
export const GitspaceStatusTypes = (getString: any) => [
|
||||||
{
|
|
||||||
label: getString('cde.gitspaceStatus.error'),
|
|
||||||
value: GitspaceStatus.ERROR
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
label: getString('cde.gitspaceStatus.active'),
|
label: getString('cde.gitspaceStatus.active'),
|
||||||
value: GitspaceStatus.RUNNING
|
value: GitspaceStatus.RUNNING
|
||||||
|
@ -55,6 +51,10 @@ export const GitspaceStatusTypes = (getString: any) => [
|
||||||
{
|
{
|
||||||
label: getString('cde.gitspaceStatus.stopped'),
|
label: getString('cde.gitspaceStatus.stopped'),
|
||||||
value: GitspaceStatus.STOPPED
|
value: GitspaceStatus.STOPPED
|
||||||
|
},
|
||||||
|
{
|
||||||
|
label: getString('cde.gitspaceStatus.error'),
|
||||||
|
value: GitspaceStatus.ERROR
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
|
|
||||||
|
|
|
@ -134,12 +134,12 @@ minuteUsage: Minute Usage
|
||||||
renewsEveryMonth: Renews 1st of every month
|
renewsEveryMonth: Renews 1st of every month
|
||||||
remainingOfTotal: remaining of <strong>{{total}}</strong>
|
remainingOfTotal: remaining of <strong>{{total}}</strong>
|
||||||
renewTooltip:
|
renewTooltip:
|
||||||
line1: The amount of minutes for which a gitspace can run in the account.
|
line1: With our beta plan, you receive 2,000 free minutes of Gitspace usage each month.
|
||||||
line2: The amount is reset after every 30 days
|
line2: These minutes automatically renew every 30 days, resetting on the 1st of each month.
|
||||||
haveQuestion: Have questions ?
|
haveQuestion: Have questions ?
|
||||||
contactUs: Contact Us
|
contactUs: Contact Us
|
||||||
changesTooltip:
|
changesTooltip:
|
||||||
description: A gitspace is meant to be used just like a user might use an IDE locally in their laptop. To check if a gitspace has any changes which a user might want to save/sync with the remote repo before deleting it, the user needs to start the gitspace and check.
|
description: You can monitor updates to your Gitspaces using this flag. If there are active changes, this status updates to “Has Changes”.
|
||||||
learnMore: Learn more about Gitspace changes
|
learnMore: Learn more about Gitspace changes
|
||||||
lastUsedTooltip: Timestamp indicating when the Gitspace was last used.
|
lastUsedTooltip: Timestamp indicating when the Gitspace was last used.
|
||||||
lastStartedTooltip: Timestamp indicating when the Gitspace was most recently started.
|
lastStartedTooltip: Timestamp indicating when the Gitspace was most recently started.
|
||||||
|
|
Loading…
Reference in New Issue