mirror of
https://github.com/unraid/api.git
synced 2025-12-31 05:29:48 -06:00
fix: missing upgrade translation for callback
This commit is contained in:
@@ -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'),
|
||||
|
||||
@@ -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();
|
||||
|
||||
Reference in New Issue
Block a user