mirror of
https://github.com/unraid/api.git
synced 2026-05-04 22:23:16 -05:00
chore: update eligibility copy (#1376)
This commit is contained in:
@@ -28,7 +28,7 @@ const output = computed(() => {
|
||||
}
|
||||
return {
|
||||
text: regUpdatesExpired.value
|
||||
? props.t('Ineligible for feature updates released after {0}', [outputDateTimeFormatted.value])
|
||||
? `${props.t('Eligible for updates released on or before {0}.', [outputDateTimeFormatted.value])} ${props.t('Extend your license to access the latest updates.')}`
|
||||
: props.t('Eligible for free feature updates until {0}', [outputDateTimeFormatted.value]),
|
||||
title: regUpdatesExpired.value
|
||||
? props.t('Ineligible as of {0}', [outputDateTimeReadableDiff.value])
|
||||
|
||||
@@ -36,7 +36,7 @@ const output = computed(() => {
|
||||
}
|
||||
return {
|
||||
text: regUpdatesExpired.value
|
||||
? props.t('Ineligible for feature updates released after {0}', [formattedRegExp.value])
|
||||
? `${props.t('Eligible for updates released on or before {0}.', [formattedRegExp.value])} ${props.t('Extend your license to access the latest updates.')}`
|
||||
: props.t('Eligible for free feature updates until {0}', [formattedRegExp.value]),
|
||||
title: regUpdatesExpired.value
|
||||
? props.t('Ineligible as of {0}', [readableDiffRegExp.value])
|
||||
|
||||
@@ -112,7 +112,7 @@ const modalCopy = computed((): ModalCopy | null => {
|
||||
|
||||
if (availableWithRenewal.value) {
|
||||
const description = regUpdatesExpired.value
|
||||
? props.t('Ineligible for feature updates released after {0}', [formattedRegExp.value])
|
||||
? `${props.t('Eligible for updates released on or before {0}.', [formattedRegExp.value])} ${props.t('Extend your license to access the latest updates.')}`
|
||||
: props.t('Eligible for free feature updates until {0}', [formattedRegExp.value]);
|
||||
return {
|
||||
title: props.t('Unraid OS {0} Released', [availableWithRenewal.value]),
|
||||
|
||||
@@ -62,7 +62,7 @@ const regExpOutput = computed(() => {
|
||||
}
|
||||
return {
|
||||
text: regUpdatesExpired.value
|
||||
? props.t('Ineligible for feature updates released after {0}', [formattedRegExp.value])
|
||||
? `${props.t('Eligible for updates released on or before {0}.', [formattedRegExp.value])} ${props.t('Extend your license to access the latest updates.')}`
|
||||
: props.t('Eligible for free feature updates until {0}', [formattedRegExp.value]),
|
||||
title: regUpdatesExpired.value
|
||||
? props.t('Ineligible as of {0}', [readableDiffRegExp.value])
|
||||
|
||||
Reference in New Issue
Block a user