From cedaceaff8cd35a73d1ec7f9fa81ea66dd3680f5 Mon Sep 17 00:00:00 2001 From: Zack Spear Date: Thu, 10 Aug 2023 17:14:07 -0700 Subject: [PATCH] fix: missing upgrade translation for callback --- .../emhttp/plugins/dynamix.my.servers/include/translations.php | 1 + web/store/unraidApi.ts | 3 --- 2 files changed, 1 insertion(+), 3 deletions(-) diff --git a/plugin/source/dynamix.unraid.net/usr/local/emhttp/plugins/dynamix.my.servers/include/translations.php b/plugin/source/dynamix.unraid.net/usr/local/emhttp/plugins/dynamix.my.servers/include/translations.php index 898eecd5a..bcd5505cf 100644 --- a/plugin/source/dynamix.unraid.net/usr/local/emhttp/plugins/dynamix.my.servers/include/translations.php +++ b/plugin/source/dynamix.unraid.net/usr/local/emhttp/plugins/dynamix.my.servers/include/translations.php @@ -74,6 +74,7 @@ $webComponentTranslations = [ 'Please keep this window open while we perform some actions' => _('Please keep this window open while we perform some actions'), 'You\'re one step closer to enhancing your Unraid experience' => _('You\'re one step closer to enhancing your Unraid experience'), 'Thank you for purchasing an Unraid {0} Key!' => sprintf(_('Thank you for purchasing an Unraid %s Key!'), '{0}'), + 'Thank you for upgrading to an Unraid {0} Key!' => sprintf(_('Thank you for upgrading to an Unraid %s Key!'), '{0}'), 'Your {0} Key has been replaced!' => sprintf(_('Your %s Key has been replaced!'), '{0}'), 'Your Trial key has been extended!' => _('Your Trial key has been extended!'), 'Copied' => _('Copied'), diff --git a/web/store/unraidApi.ts b/web/store/unraidApi.ts index 39c6652a5..e6dc7d9a8 100644 --- a/web/store/unraidApi.ts +++ b/web/store/unraidApi.ts @@ -28,9 +28,6 @@ let prioritizeCorsError = false; // Ensures we don't overwrite this specific err const httpEndpoint = GRAPHQL; const wsEndpoint = new URL(GRAPHQL.toString().replace('http', 'ws')); -console.debug('[unraidApi.ts] httpEndpoint', httpEndpoint); -console.debug('[unraidApi.ts] wsEndpoint', wsEndpoint); - export const useUnraidApiStore = defineStore('unraidApi', () => { console.debug('[useUnraidApiStore]'); const accountStore = useAccountStore();