diff --git a/site/src/i18n/en/templateSettingsPage.json b/site/src/i18n/en/templateSettingsPage.json index d1b0927b5a78a..bf624ae736938 100644 --- a/site/src/i18n/en/templateSettingsPage.json +++ b/site/src/i18n/en/templateSettingsPage.json @@ -22,12 +22,12 @@ "failureTTLHelperText_zero": "Coder will not automatically stop failed workspaces", "failureTTLHelperText_one": "Coder will attempt to stop failed workspaces after {{count}} day.", "failureTTLHelperText_other": "Coder will attempt to stop failed workspaces after {{count}} days.", - "inactivityTTLHelperText_zero": "Coder will not automatically lock inactive workspaces", - "inactivityTTLHelperText_one": "Coder will automatically lock inactive workspaces after {{count}} day.", - "inactivityTTLHelperText_other": "Coder will automatically lock inactive workspaces after {{count}} days.", - "lockedTTLHelperText_zero": "Coder will not automatically delete locked workspaces", - "lockedTTLHelperText_one": "Coder will automatically delete locked workspaces after {{count}} day.", - "lockedTTLHelperText_other": "Coder will automatically delete locked workspaces after {{count}} days.", + "inactivityTTLHelperText_zero": "Coder will not mark workspaces as inactive", + "inactivityTTLHelperText_one": "Coder will will mark workspaces as inactive after {{count}} day without user connections.", + "inactivityTTLHelperText_other": "Coder will will mark workspaces as inactive after {{count}} days without user connections", + "lockedTTLHelperText_zero": "Coder will not automatically delete inactive workspaces", + "lockedTTLHelperText_one": "Coder will automatically delete inactive workspaces after {{count}} day.", + "lockedTTLHelperText_other": "Coder will automatically delete inactive workspaces after {{count}} days.", "allowUserCancelWorkspaceJobsLabel": "Allow users to cancel in-progress workspace jobs.", "allowUserCancelWorkspaceJobsNotice": "Depending on your template, canceling builds may leave workspaces in an unhealthy state. This option isn't recommended for most use cases.", "allowUsersCancelHelperText": "If checked, users may be able to corrupt their workspace.", diff --git a/site/src/pages/TemplateSettingsPage/TemplateSchedulePage/TemplateScheduleForm/TemplateScheduleForm.tsx b/site/src/pages/TemplateSettingsPage/TemplateSchedulePage/TemplateScheduleForm/TemplateScheduleForm.tsx index 13c524d6b5d51..7751c91d343ee 100644 --- a/site/src/pages/TemplateSettingsPage/TemplateSchedulePage/TemplateScheduleForm/TemplateScheduleForm.tsx +++ b/site/src/pages/TemplateSettingsPage/TemplateSchedulePage/TemplateScheduleForm/TemplateScheduleForm.tsx @@ -359,8 +359,8 @@ export const TemplateScheduleForm: FC = ({ = ({ onChange={handleToggleInactivityCleanup} /> } - label="Enable Inactivity Soft Deletion" + label="Enable Inactivity Threshold" /> = ({ = ({ onChange={handleToggleLockedCleanup} /> } - label="Enable Deletion Retention" + label="Enable Inactivity Deletion" />