fix: i18n string problems (#6131)

* fix: apply non-json i18n fixes

* fix: pruning

* fix: prepr

* fix: run.mjs

* fix: lint
This commit is contained in:
Calum H.
2026-05-29 15:55:39 +00:00
committed by GitHub
parent 5c1ffd9ff2
commit 047b8c3bf7
165 changed files with 1283 additions and 5626 deletions
@@ -81,6 +81,11 @@ const messages = defineMessages({
id: 'servers.purchase.step.plan.your-current-plan',
defaultMessage: 'Your current plan',
},
billedInterval: {
id: 'servers.purchase.step.plan.billed',
defaultMessage:
'billed {interval, select, monthly {monthly} quarterly {quarterly} yearly {yearly} other {{interval}}}',
},
})
const isSameAsExistingPlan = computed(() => {
@@ -203,7 +208,8 @@ function selectCustom() {
</span>
<span class="text-sm">
/ month<template v-if="selectedInterval !== 'monthly'"
>, billed {{ selectedInterval }}</template
>,
{{ formatMessage(messages.billedInterval, { interval: selectedInterval }) }}</template
>
</span>
</div>
@@ -263,7 +269,10 @@ function selectCustom() {
</span>
<span class="text-sm">
/ month<template v-if="selectedInterval !== 'monthly'"
>, billed {{ selectedInterval }}</template
>,
{{
formatMessage(messages.billedInterval, { interval: selectedInterval })
}}</template
>
</span>
</div>
@@ -310,7 +319,8 @@ function selectCustom() {
</span>
<span class="text-sm">
/ month<template v-if="selectedInterval !== 'monthly'"
>, billed {{ selectedInterval }}</template
>,
{{ formatMessage(messages.billedInterval, { interval: selectedInterval }) }}</template
>
</span>
</div>