From 74fde66b51c64454582839c2ea6d839e1156fd03 Mon Sep 17 00:00:00 2001 From: "SPRINX0\\prochazka" Date: Fri, 28 Nov 2025 15:37:34 +0100 Subject: [PATCH] lang texts --- packages/web/src/utility/common.ts | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/packages/web/src/utility/common.ts b/packages/web/src/utility/common.ts index 2726e78a1..71bcca5c8 100644 --- a/packages/web/src/utility/common.ts +++ b/packages/web/src/utility/common.ts @@ -161,28 +161,28 @@ export function getDatabasStatusMenu(dbid) { } return [ { - text: 'Refresh DB structure (incremental)', + text: _t('command.database.refreshIncremental', { defaultMessage: 'Refresh DB structure (incremental)' }), onClick: () => { apiCall('database-connections/sync-model', dbid); callSchemalListChanged(); }, }, { - text: 'Refresh DB structure (full)', + text: _t('command.database.refreshFull', { defaultMessage: 'Refresh DB structure (full)' }), onClick: () => { apiCall('database-connections/sync-model', { ...dbid, isFullRefresh: true }); callSchemalListChanged(); }, }, { - text: 'Reopen connection', + text: _t('command.database.reopenConnection', { defaultMessage: 'Reopen connection' }), onClick: () => { apiCall('database-connections/refresh', dbid); callSchemalListChanged(); }, }, { - text: 'Disconnect', + text: _t('command.database.disconnect', { defaultMessage: 'Disconnect' }), onClick: () => { const electron = getElectron(); if (electron) apiCall('database-connections/disconnect', dbid);