refactor: copy Extend Key to Extend License

This commit is contained in:
Zack Spear
2024-02-01 12:11:38 -08:00
parent 666b51a28a
commit 8e6ee8b770
3 changed files with 5 additions and 6 deletions

View File

@@ -123,7 +123,7 @@ const showExtendKeyButton = computed(() => {
:icon-right="ArrowTopRightOnSquareIcon"
@click="purchaseStore.renew()"
>
{{ props.t("Extend Key to Update") }}
{{ props.t("Extend License to Update") }}
</BrandButton>
<BrandButton
v-else-if="releaseForUpdate?.sha256"

View File

@@ -162,14 +162,14 @@ const actionButtons = computed((): ButtonProps[] | null => {
});
}
// update available with renewal - open changelog and extend key options
// update available with renewal - open changelog and Extend License options
if (availableWithRenewal.value) {
buttons.push({
click: async () => await purchaseStore.renew(),
icon: KeyIcon,
iconRight: ArrowTopRightOnSquareIcon,
iconRightHoverDisplay: false,
text: props.t('Extend Key'),
text: props.t('Extend License'),
title: props.t('Pay your annual fee to continue receiving OS updates.'),
});
}

View File

@@ -341,7 +341,7 @@
"View Changelog on Docs": "View Changelog on Docs",
"Fetching & parsing changelog…": "Fetching & parsing changelog…",
"View on Docs": "View on Docs",
"Extend Key to Update": "Extend Key to Update",
"Extend License to Update": "Extend License to Update",
"Install Unraid OS {0}": "Install Unraid OS {0}",
"View Changelog to Start Update": "View Changelog to Start Update",
"Unraid OS {0} Update Available": "Unraid OS {0} Update Available",
@@ -356,6 +356,5 @@
"Update Released": "Update Released",
"Go to Tools > Update OS for more options.": "Go to Tools > Update OS for more options.",
"Go to Settings > Notifications to enable automatic OS update notifications for future releases.": "Go to Settings > Notifications to enable automatic OS update notifications for future releases.",
"More options": "More options",
"Extend Key": "Extend Key"
"More options": "More options"
}