diff --git a/packages/hoppscotch-sh-admin/locales/en.json b/packages/hoppscotch-sh-admin/locales/en.json index 5d2741111..da9e5f317 100644 --- a/packages/hoppscotch-sh-admin/locales/en.json +++ b/packages/hoppscotch-sh-admin/locales/en.json @@ -18,7 +18,7 @@ }, "confirm_changes": "Hoppscotch server must restart to reflect the new changes. Confirm changes made to the server configurations?", "input_empty": "Please fill all the fields before updating the configurations", - "data-sharing": { + "data_sharing": { "title": "Data Sharing", "description": "Help improve Hoppscotch by sharing anonymous data", "enable": "Enable Data Sharing", @@ -111,6 +111,7 @@ "copied_to_clipboard": "Copied to clipboard", "create_team_failure": "Failed to create workspace!!", "create_team_success": "Workspace created successfully!!", + "data_sharing_failure": "Failed to update data sharing settings", "delete_request_failure": "Shared Request deletion failed!!", "delete_request_success": "Shared Request deleted successfully!!", "delete_team_failure": "Workspace deletion failed!!", @@ -133,6 +134,7 @@ "magic_link_sign_in": "Click on the link to sign in.", "magic_link_success": "We sent a magic link to", "microsoft_signin_failure": "Failed to login with Microsoft", + "newsletter_failure": "Unable to update newsletter settings", "non_admin_logged_in": "Logged in as non admin user.", "non_admin_login": "You are logged in. But you're not an admin", "owner_not_present": "Atleast one owner should be present in the team!!", diff --git a/packages/hoppscotch-sh-admin/src/components.d.ts b/packages/hoppscotch-sh-admin/src/components.d.ts index 6c3f313a1..d976a8968 100644 --- a/packages/hoppscotch-sh-admin/src/components.d.ts +++ b/packages/hoppscotch-sh-admin/src/components.d.ts @@ -17,14 +17,22 @@ declare module '@vue/runtime-core' { HoppButtonPrimary: typeof import('@hoppscotch/ui')['HoppButtonPrimary'] HoppButtonSecondary: typeof import('@hoppscotch/ui')['HoppButtonSecondary'] HoppSmartAnchor: typeof import('@hoppscotch/ui')['HoppSmartAnchor'] + HoppSmartAutoComplete: typeof import('@hoppscotch/ui')['HoppSmartAutoComplete'] HoppSmartConfirmModal: typeof import('@hoppscotch/ui')['HoppSmartConfirmModal'] HoppSmartInput: typeof import('@hoppscotch/ui')['HoppSmartInput'] HoppSmartItem: typeof import('@hoppscotch/ui')['HoppSmartItem'] HoppSmartLink: typeof import('@hoppscotch/ui')['HoppSmartLink'] + HoppSmartModal: typeof import('@hoppscotch/ui')['HoppSmartModal'] HoppSmartPicture: typeof import('@hoppscotch/ui')['HoppSmartPicture'] HoppSmartSpinner: typeof import('@hoppscotch/ui')['HoppSmartSpinner'] + HoppSmartTab: typeof import('@hoppscotch/ui')['HoppSmartTab'] + HoppSmartTable: typeof import('@hoppscotch/ui')['HoppSmartTable'] + HoppSmartTabs: typeof import('@hoppscotch/ui')['HoppSmartTabs'] HoppSmartToggle: typeof import('@hoppscotch/ui')['HoppSmartToggle'] + IconLucideArrowLeft: typeof import('~icons/lucide/arrow-left')['default'] + IconLucideChevronDown: typeof import('~icons/lucide/chevron-down')['default'] IconLucideInbox: typeof import('~icons/lucide/inbox')['default'] + IconLucideUser: typeof import('~icons/lucide/user')['default'] SettingsAuthProvider: typeof import('./components/settings/AuthProvider.vue')['default'] SettingsConfigurations: typeof import('./components/settings/Configurations.vue')['default'] SettingsDataSharing: typeof import('./components/settings/DataSharing.vue')['default'] diff --git a/packages/hoppscotch-sh-admin/src/components/settings/DataSharing.vue b/packages/hoppscotch-sh-admin/src/components/settings/DataSharing.vue index f2224fce4..3fcc352be 100644 --- a/packages/hoppscotch-sh-admin/src/components/settings/DataSharing.vue +++ b/packages/hoppscotch-sh-admin/src/components/settings/DataSharing.vue @@ -1,16 +1,16 @@