diff --git a/localization/l10n/bundle.l10n.json b/localization/l10n/bundle.l10n.json index 1a9e95f861..19c5e68288 100644 --- a/localization/l10n/bundle.l10n.json +++ b/localization/l10n/bundle.l10n.json @@ -271,6 +271,7 @@ "Paste connection string from clipboard": "Paste connection string from clipboard", "Paste": "Paste", "Search settings...": "Search settings...", + "Refresh": "Refresh", "Loading execution plan...": "Loading execution plan...", "Query {0}: Query cost (relative to the script): {1}%/{0} is the query number{1} is the query cost": { "message": "Query {0}: Query cost (relative to the script): {1}%", @@ -369,7 +370,6 @@ "{0} is the number of selected tables" ] }, - "Refresh": "Refresh", "Publish Changes": "Publish Changes", "Edit Table": "Edit Table", "Open in Editor": "Open in Editor", diff --git a/src/reactviews/common/locConstants.ts b/src/reactviews/common/locConstants.ts index e1a2a4eae1..c0bd41f9cd 100644 --- a/src/reactviews/common/locConstants.ts +++ b/src/reactviews/common/locConstants.ts @@ -250,6 +250,7 @@ export class LocConstants { copy: l10n.t("Copy"), paste: l10n.t("Paste"), searchSettings: l10n.t("Search settings..."), + refresh: l10n.t("Refresh"), }; } diff --git a/src/reactviews/pages/ConnectionDialog/connectionsListContainer.tsx b/src/reactviews/pages/ConnectionDialog/connectionsListContainer.tsx index a9f4d1291a..f619f89c4c 100644 --- a/src/reactviews/pages/ConnectionDialog/connectionsListContainer.tsx +++ b/src/reactviews/pages/ConnectionDialog/connectionsListContainer.tsx @@ -79,6 +79,7 @@ export const ConnectionsListContainer = () => { icon={} appearance="subtle" onClick={context.refreshConnectionsList} + title={locConstants.connectionDialog.refresh} />
@@ -108,6 +109,7 @@ export const ConnectionsListContainer = () => { icon={} appearance="subtle" onClick={context.refreshConnectionsList} + title={locConstants.connectionDialog.refresh} />