Skip to content

Commit cbd0cc8

Browse files
committed
polish localization of select input settings webview
1 parent f6567f3 commit cbd0cc8

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

src/notebooks/deepnote/selectInputSettingsWebview.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ export class SelectInputSettingsWebviewProvider {
4747
// Create a new panel
4848
this.currentPanel = window.createWebviewPanel(
4949
'deepnoteSelectInputSettings',
50-
l10n.t('Select Input Settings'),
50+
localize.SelectInputSettings.title,
5151
column || ViewColumn.One,
5252
{
5353
enableScripts: true,
@@ -238,7 +238,7 @@ export class SelectInputSettingsWebviewProvider {
238238
)
239239
);
240240

241-
const title = l10n.t('Select Input Settings');
241+
const title = localize.SelectInputSettings.title;
242242

243243
return `<!DOCTYPE html>
244244
<html lang="en">

src/platform/common/utils/localize.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -860,7 +860,7 @@ export namespace Integrations {
860860
}
861861

862862
export namespace SelectInputSettings {
863-
export const title = l10n.t('Settings');
863+
export const title = l10n.t('Select Input Settings');
864864
export const allowMultipleValues = l10n.t('Allow to select multiple values');
865865
export const allowEmptyValue = l10n.t('Allow empty value');
866866
export const valueSourceTitle = l10n.t('Value');

0 commit comments

Comments
 (0)